I have a service fabric actor which does something and at the end, it calls another WCF service in an async way. The real question is how do I pass the endpoint information as well as binding information to the actor?
Asked
Active
Viewed 51 times
0
-
You can use the settings model. Did you see this answer? https://stackoverflow.com/a/33944415/5946937 – LoekD Aug 14 '18 at 07:39
-
Is the WCF service is also hosted in same service fabric cluster as well? If so, then you can query to fabric\NamingService for endpoint, binding and protocol. – Jean Aug 15 '18 at 13:29