Questions tagged [service-fabric-stateless]

Use this tag for questions related to Stateless Azure Service Fabric . No state is maintained in the service.

Stateless Azure Service Fabric. No state is maintained in the service. Longer-term state is stored in an external database. This is your typical application/data layer approach to building services, and it is currently the norm in cloud applications.

References:

  1. Azure Service Fabric Documentation
  2. Service Fabric application scenarios discusses the difference between stateful and stateless Azure Service Fabric configurations and uses.
181 questions
0
votes
1 answer

Connect to Service Fabric application endpoint

I have set up a Service Fabric cluster on Azure, and have an application with 2 services running. now I want to be able to connect to the services in my browser, like I can when I run it on localhost. The application uses Owin and Swagger. Here is…
0
votes
2 answers

Problems with deploying Service Fabric project with Owin to Azure Service Fabric Cluster

I am working on a Service Fabric project with Owin, and I'm having troubles getting it deployed into the cloud. I have searched for others with the same problem, but I only found an answer telling that the error in the cluster tells where in the…
ptr
  • 1
  • 2
0
votes
1 answer

Service Fabric Package Activation Error

Getting the following error Error event: SourceId='System.Hosting', Property='CodePackageActivation:Code:EntryPoint'. There was an error during CodePackage activation.Service host failed to activate. Error:0x800700c1` If I attempt it on a linux…
0
votes
0 answers

Login.live.com Server not found Error

I'm using Microsoft Graph API to authenticate users to my web application. For SO, I have registered a test application in Registration Portal. This portal provide us application id and application secret. I have defined redirect URL which take…
0
votes
1 answer

Error while using ServiceFabric in a WinForm App

I have microservices which are made in ASP.NET MVC. I need to provide testers with a WinForm App that they are going to use to upload files via the service however, when I use a class that is from the assembly Microsoft.ServiceFabric in my WinForm…
0
votes
0 answers

Access service fabric app with different endpoints

I am having a cluster on which I want to deploy 2 version of same service fabric service and instantiate them as well. For ex - I have App1 of version 1.0 and App1 of version 2.0. Both of these are instantiated with fabric:/Instance1 and…
0
votes
1 answer

ERR_INVALID_HTTP_RESPONSE when hitting client connection endpoint

I have created a service fabric service application with a stateless service. I have deployed it in Azure service fabric cluster. Endpoint in ServiceManifest.xml is
0
votes
1 answer

Scalable workers in Azure Service Fabric

I am trying to migrate to service fabric existing solution. Part of it is the number of workers that listen queues. For example I have some queues: Task1_Queue, Task2_Queue ... TaskN_Queue For each queue there is some logic of processing messages…
0
votes
1 answer

Who should own the logic for service resolution in Service Fabric Stateful Services?

I am using Service Fabric stateful services to store state about users in the system. My partitioning strategy is to use the normalized international string format phone number to address a named service instance, and the hash of the phone number…
0
votes
1 answer

Azure Fabrics Authentication

I have stateless Web API services on Azure Fabrics + independent UI on React. UI calls services Services call each other over http I would like to authenticate user by email or/and social networks (facebook) What are my options? Examples?…
nelly2k
  • 781
  • 1
  • 10
  • 28
0
votes
1 answer

Define endpoint for Reliable Actor in Service Fabric(on premise setup)

I am setting up a Service fabric cluster on premise and Have a Reliable Actor defined. I have published the application to the cluster. I am facing difficulty in exposing an Endpoint so that the client can consume. I tried adding endpoint in…
0
votes
1 answer

Azure service fabric, can a stateful service only ever have a single primary?

I want to create a service that is hosted using Azure Service Fabric with ASP.NET Core as the frontend. If I have read the documentation correctly then there seem to be only two real options here for handling my session data... 1 - Create a…
-1
votes
1 answer

Why do service fabric templates use Thread.Sleep instead of Task.Delay?

When I create a new service fabric application with a stateless aps.net core service, why is this line of code in the main method of the service? // prevents this host process from terminating so services keep…
-1
votes
1 answer

.Net Service Fabric - An unhandled exception of type 'System.BadImageFormatException' occurred in Unknown Module

For debugging purposes, I have created a new C# console project and I have referenced an existing service in the console project so that i call a async Task method from the service and debug it. But when i run the Console Project, I am running into…
-1
votes
1 answer

Services hosted using HttpSysCommunicationListener throwing error

I am getting, "Exception has been thrown by the target of an invocation" when trying to run Service created using Service Fabric template with ASP.NET core Stateless Service. Below is complete stack trace, please let me know what I am doing…
1 2 3
12
13