I have created a service fabric service application with a stateless service. I have deployed it in Azure service fabric cluster.
Endpoint in ServiceManifest.xml is
<Endpoint Name="WebEndpoint" Protocol="http" Port="80" Type="Input"/>
When I check service fabric explorer, it shows everything working properly. But when I hit client connection endpoint cluster_name.southeastasia.cloudapp.azure.com:19000
from browser, it returns ERR_INVALID_HTTP_RESPONSE
.
When checked in fiddler it shows HTTP/1.0 200 This buggy server did not return headers
.
I have followed this article throughout except step 3 & 4.
How do I get valid response on client connection endpoint when hit through browser?
Update:
I have published https://github.com/Azure-Samples/service-fabric-dotnet-getting-started/tree/vs2015 on localhost as well as Azure Service Fabric Cluster.
Endpoint on localhost service fabric cluster : http://localhost:8081/
Endpoint on Azure service fabric cluster : http://10.0.0.4:8081/
I get the above shown screen on localhost endpoint but ERR_CONNECTION_TIMED_OUT
for the other one. What settings am I missing?