Azure Service Fabric:我的集群的端口在哪里?
Azure Service Fabric: Where is the port for my cluster?
我使用 SoapUI 来访问 Azure Service Fabric 服务,但我使用的是集群的客户端连接端点。由于这个错误,我怀疑我打错了端口:
Error getting response; org.apache.http.NoHttpResponseException: The target server failed to respond
在哪里可以找到集群的端口?
Where do I find the port for my cluster?
1) 端口可以在 ServiceManifest.xml
文件中找到:
<Endpoint Protocol="http" Name="ServiceEndpoint" Type="Input" Port="1234" />
2) 也可以在 Azure 门户中找到该端口:负载均衡器 > 前端 IP 配置 > LBAppRule > 端口
我使用 SoapUI 来访问 Azure Service Fabric 服务,但我使用的是集群的客户端连接端点。由于这个错误,我怀疑我打错了端口:
Error getting response; org.apache.http.NoHttpResponseException: The target server failed to respond
在哪里可以找到集群的端口?
Where do I find the port for my cluster?
1) 端口可以在 ServiceManifest.xml
文件中找到:
<Endpoint Protocol="http" Name="ServiceEndpoint" Type="Input" Port="1234" />
2) 也可以在 Azure 门户中找到该端口:负载均衡器 > 前端 IP 配置 > LBAppRule > 端口