You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When trying to call stateless service with V2_1 Listener from WebApi (http endpoint) to the service it works, with the exclusive V2 I get the error: "NamedEndpoint V2Listener not found in the address ..."
Create new Service Fabric Project in Visual Studio (FabricApplicationCommunicationTest)
Add ASP.NET Core Web Api Stateless Service to Fabric application (Web)
Add new Service Fabric Application (Fabric Application containing Services)
Add Stateless .NET Core service & setup for V2 remoting: Add assembly attribute to stateless service (V2 exclusive) & Change endpoint listener of stateless service to: "ServiceEndpointV2"
Add Class Library containing Service interface for communication (IStateless1)
Add API in Web API an build service proxy call to Stateless1
Call API from Browser for example
Expected behavior
I expect clarification on how the V2 stack should be used.
What requirements does the caller who wants to call V2 remoting interface need to have?
Working example would be greatly appreciated
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
ServiceFramework checks for the *ServiceRemotingProviderAttribute in the interface assembly and Entry assembly in order.
You need to either move FabricTransportServiceRemotingProviderAttribute to Communication project(interfaces) or have it defined in Web project as well inorder to be able to read by ServiceFramework.
Describe the bug
When trying to call stateless service with V2_1 Listener from WebApi (http endpoint) to the service it works, with the exclusive V2 I get the error: "NamedEndpoint V2Listener not found in the address ..."
To Reproduce
Minimal reproduceable example: https://github.com/Gerrilicious/FabricApplicationCommunicationTest
Steps I have done:
Expected behavior
I expect clarification on how the V2 stack should be used.
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: