Mule ESB:基于HTTP方法的过滤器

时间:2013-05-15 08:32:55

标签: mule

我想知道是否有基于HTTP方法过滤/路由消息的方法。我想要做的是不处理使用OPTIONS方法发布的传入请求。 (这是用于跨源资源共享处理)

2 个答案:

答案 0 :(得分:5)

如果您想对OPTIONS请求执行某些操作,可以使用MEL(Mule Exression Language - http://www.mulesoft.org/documentation/display/current/Mule+Expression+Language+MEL)查询http.method参数和选择路由器,例如发回允许的方法,如下所示:

<choice doc:name="Choice">
    <when expression="#[message.inboundProperties['http.method'] == 'OPTIONS']">
        <http:response-builder status="200"
            doc:name="HTTP Response Builder(200 - OPTIONS)">
            <http:header name="Allow" value="GET" />
            <http:header name="Content-Type" value="#[null]" />
            <set-payload value="#[null]" />
        </http:response-builder>
    </when>
    <otherwise>
        <!-- Do something else -->

    </oherwise>
</choice>

如果您只是想删除消息而不是OPTIONS:

,您可以使用表达式过滤器
<expression-filter
expression="#[message.inboundProperties['http.method'] != 'OPTIONS']" />

有关路由和过滤的更多信息:

http://www.mulesoft.org/documentation/display/current/Routing+Message+Processors

http://www.mulesoft.org/documentation/display/current/Using+Filters

答案 1 :(得分:0)

另一个解决方案是,您可以将message-filternot-filtermessage-property-filter一起使用,并在HTTP OPTIONS请求上返回405 method not allowed,过滤器无法接受。

以下是示例流程

<flow name="filterOptionsMethod">
    <http:listener config-ref="httpListener" path="/test" doc:name="receiveReq" />
    <message-filter onUnaccepted="set405" doc:name="filterOptionsMethod">
        <not-filter>
            <message-property-filter pattern="http.method=options" caseSensitive="false" scope="inbound" />
        </not-filter>
    </message-filter>
</flow>

onUnaccepted

<sub-flow name="set405">
    <set-property propertyName="http.status" value="405" doc:name="405" />
    <set-payload value="HTTP method OPTIONS not allowed" doc:name="setRes" />
</sub-flow>