Reputation: 1442
Does anyone know if I can make HTTP calls to the API endpoint of a local Service Fabric cluster using "fabric:/my-fabric-app/api-service" directly, without going through an HTTP listener?
Upvotes: 0
Views: 745
Reputation: 11470
You cannot. The fabric:/
endpoints are intended for SF Remoting calls.
For using HTTP, an HTTP Listener is required.
Upvotes: 3