Mule实现API网关

时间:2015-01-23 08:54:55

标签: cloud mule esb mule-component

您正在运行应用程序

  

example.cloudhub.io

现在,我在云集线器上创建了一个API并将实现URI作为

  

example.cloudhub.io

现在我如何使用soap UI点击云API网关

这个API网关的URL在哪里可以找到它

2 个答案:

答案 0 :(得分:0)

假设您的应用中有一个入站http端点,地址为:&#34; http://localhost:8081/order&#34;,则CH URL为:&#34; http://example.cloudhub.io/order&#34; < / p>

HTH

答案 1 :(得分:0)

如果您的应用中有http / https入站端点。然后,URL将是您使用的方案(http / https)加上域(example.cloudhub.io)加上端点路径属性或地址属性中的路径的串联。

这样:

<http:inbound:endpoint host="localhost" port=${http.port} path="/mypath" >

将是

http://example.cloudhub.io/mypath

注意分别使用$ {http.port}和$ {https.port},这些会自动分配到80和443,Cloudhub仅支持这些端口上的传入流量。

http://www.mulesoft.org/documentation/display/current/Developing+a+CloudHub+Application