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
Hi @thakursagar, there doesn't seem to be a problem with ServiceProxy.Create
I tried to send a similar serialized message using it and it worked. Could you confirm that your Service is all correct and HandleBroadcast() works correctly.
You could also try and create the proxy using ServiceProxyFactory() if you'd want to.
var proxyFactory = new ServiceProxyFactory(c =>new FabricTransportServiceRemotingClientFactory());
var proxy= proxyFactory.CreateServiceProxy<ISimpleInterface>(new Uri("fabric:/SimpleListener/Stateless1"));
var response = await proxy.SomeFunction(message);
@ameyanator yes the HandleBroadcast() works correctly and the service is also fine. This has been happening intermittently in our environment. So you don't think this is a Service Fabric issue and it is coming from the HandleBroadcast() ?
Could you also give a bit more insight into when you are facing this in your environment. I'll try and look more into it if its a Service Fabric issue.
Could you also specify which remoting framework you're using? V1 or V2
Hi,
Trying to send a message using Service Fabric Remoting Services (ServiceProxy.Create) and getting the following error:
Service Proxy code:
The text was updated successfully, but these errors were encountered: