Questions tagged [service-fabric-remoting]
10 questions
3
votes
1 answer
Unexpected downgrade? Nuget Package Manager doesn't show latest version for Microsoft.ServiceFabric.Services.Remoting
I don't see Microsoft.ServiceFabric.Services.Remoting version 3.3.624 anymore:
My existing projects refer to 3.3.624:
I get an NU1605 error Detected package downgrade.
Should I follow this approach for this NU1605 Detected package downgrade…

Harshith Reddy
- 124
- 2
- 11
2
votes
2 answers
DI in Service Fabric Service Remoting
I have a Service Fabric application with one service which is exposed to Internet (GatewayService) through an ASP.NET Web API and a couple of internal services not exposed to the Internet (let's call one of them InternalService). So far,…

ShamPooSham
- 2,301
- 2
- 19
- 28
2
votes
3 answers
How to call Azure service fabric remoting proxy with CancellationToken?
Based on the documentation sample, the proxy is created like this:
IMyService helloWorldClient = ServiceProxy.Create(new
Uri("fabric:/MyApplication/MyHelloWorldService"));
string message = await helloWorldClient.HelloWorldAsync();
But…

eXavier
- 4,821
- 4
- 35
- 57
2
votes
1 answer
Fabric Message is too large even after setting MaxMessageSize for Assembly
In some cases we require a large-ish amount of data to be passed between two Service Fabric services.
Let's call the first service Monitor and the second Search.
Monitor implements an Actor which calls Search periodically and does something with…

Electric_Wizard
- 177
- 10
1
vote
1 answer
The right way to call fire-and-forget method on a service-fabric service
I have a method on ServiceA that I need to call from ServiceB. The method takes upwards of 5 minutes to execute and I don't care about its return value. (Output from the method is handled another way)
I have setup my method in IServiceA like…

TomTichy
- 547
- 5
- 15
1
vote
0 answers
Service Fabric V2 remoting Custom Headers
I am using Service Fabric with .net core with Service Fabric Remoting V2. and I am building a multi-tenant app and I want to add custom header to send the tenant ID automatically.
I have started with the solution for this question which uses normal…

Walid Hanafy
- 1,429
- 2
- 14
- 26
1
vote
0 answers
Multiple v2 Service Remoting Endpoints in Service Fabric
I'm using Service Fabric v6.1.472. We're trying to switch to using Service Fabric Remoting (https://learn.microsoft.com/en-us/azure/service-fabric/service-fabric-reliable-services-communication-remoting), specifically to use the v2 listeners.
The…

Michael Meadows
- 27,796
- 4
- 47
- 63
0
votes
1 answer
System.Runtime.Serialization.InvalidDataContractException 'System.Security.Cryptography.X509Certificates.X509Certificate2'
I have three stateless applications Application-A, Application-B, and Application-C. Application-B and Application-C were communicating with Application-A with remoting V1.
Recently I migrated Application-C to .Net 5.0. As V1 Remoting is not…

user3771120
- 85
- 10
0
votes
1 answer
Convert Service Fabric remoting call to REST
Currently in our project, we have few Stateless and Stateful services and then we have an API (which is again a Stateless service). Our API service is exposed over http and run of frontEnd Nodes in cluster. Any client from outside hits the WebAPi…

Vivek Khare
- 21
- 2
0
votes
1 answer
Call service via remoting V1 with Microsoft.ServiceFabric.Services.Remoting 3.2.162
I've multiple services using remoting V1 and new services with V2_1.
Calling the V2_1 services from a asp.net core 2.1 application using Microsoft.ServiceFabric.Services.Remoting version 3.2.162 is no problem.
But I cannot call the "old" V1…

Thieme
- 294
- 1
- 13