我在mule中设置了一个承载网页的ajax服务器:
<ajax:connector name="ajaxServer" serverUrl="http://0.0.0.0:8090/test" resourceBase="${app.home}/docroot">
在网页上,我希望能够使用http post将文件上传到我设置的球衣资源:
<flow name="ModuleUploadFlow">
<http:inbound-endpoint address="http://localhost:8090/test/jersey" connectorref="HttpConnector"/>
<jersey:resources>
...
</jersey:resources>
</flow>
问题是ajax服务器绑定到指定的端口,因此我的入站http端点需要位于不同的端口(域)上。有没有办法对不同域上的服务进行POST?我尝试设置一个http代理但我得到相同的端口绑定错误。任何建议都会有帮助。感谢。