Mule 3.3.0-同一域上的ajax连接器和jersey资源

Mule 3.3.0-同一域上的ajax连接器和jersey资源,ajax,http,post,jersey,mule,Ajax,Http,Post,Jersey,Mule,我在mule中设置了一个ajax服务器,该服务器承载一个网页: <ajax:connector name="ajaxServer" serverUrl="http://0.0.0.0:8090/test" resourceBase="${app.home}/docroot"> 在网页上,我希望能够使用http post将文件上载到我已设置的jersey资源: <flow name="ModuleUploadFlow"> <http:inbound-en

我在mule中设置了一个ajax服务器,该服务器承载一个网页:

<ajax:connector name="ajaxServer" serverUrl="http://0.0.0.0:8090/test" resourceBase="${app.home}/docroot">

在网页上,我希望能够使用http post将文件上载到我已设置的jersey资源:

<flow name="ModuleUploadFlow">
    <http:inbound-endpoint address="http://localhost:8090/test/jersey" connectorref="HttpConnector"/>
    <jersey:resources>
        ...
    </jersey:resources>
</flow>

...

问题是ajax服务器绑定到指定的端口,因此入站http端点需要位于不同的端口(域)。有没有办法在不同的域上发布服务?我尝试设置http代理,但得到相同的端口绑定错误。任何建议都会有帮助。谢谢。

我认为这是不可能的,但我希望被证明是错的。