Gurpreet
Gurpreet

Reputation: 1442

Calling a local Service Fabric stateless API using the Service Fabric url

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

Answers (1)

LoekD
LoekD

Reputation: 11470

You cannot. The fabric:/ endpoints are intended for SF Remoting calls. For using HTTP, an HTTP Listener is required.

Upvotes: 3

Related Questions