嗨,我在运行一个应用程序
example.cloudhub.io
在云集线器上,我现在创建了一个API,并将实现URI作为
example.cloudhub.io
现在,如何使用soap UI访问云API网关?
这个API网关的URL在哪里可以找到?
发布于 2015-01-23 12:22:55
假设您的应用程序中有一个地址为"http://localhost:8081/order“的入站http端点,则CH为:"http://example.cloudhub.io/order”
HTH
发布于 2015-01-23 12:47:15
如果您的应用程序中有一个http/https入站端点。然后,URL将是您使用的方案(http/https)加上域(example.cloudhub.io)加上端点路径属性或address属性中的路径的连接。
因此:
<http:inbound:endpoint host="localhost" port=${http.port} path="/mypath" >将会是
http://example.cloudhub.io/mypath
Note分别使用${http.port}和${https.port},这些自动分配给80和443,Cloudhub只支持这些端口上的传入通信。
http://www.mulesoft.org/documentation/display/current/Developing+a+CloudHub+Application
https://stackoverflow.com/questions/28106165
复制相似问题