Mmm, software
Showing posts with label
service
.
Show all posts
Showing posts with label
service
.
Show all posts
Tuesday, June 04, 2019
Getting the ETW messages for a live running instance of a Service Fabric application
›
As our company has recently discovered, it would be very handy to have a live running stream of diagnostic from a live running Service Fabri...
Wednesday, October 18, 2017
Using Ninject in a Self-Hosted environment, e.g. a Windows Service
›
Windows Services are a great way to host WCF, typically in scenarios where on-premise services are a requirement. As Dependency Injection be...
Sunday, July 30, 2017
Unit testing Service Fabric Reliable Service and Actors with Mocks and Moqs
›
Install-Package Moq Install-Package ServiceFabric.Mocks Some key bits of code you'll need: this.mockRepository = new MockReposit...
Thursday, July 27, 2017
Adding Dependency Injection support for Service Fabric Stateful Services and Actors
›
Check this page out: https://alexmg.com/introducing-the-autofac-integration-for-service-fabric/ Right from the maker of Autofac. You'l...
Adding Dependency Injection support for Service Fabric Stateless API applications
›
Turns out that it's pretty easy (for Stateless Services anyway). In your Package Manager Console: Install-Package Autofac.WebApi2 -V...
Tuesday, July 18, 2017
Adding Azure Active Directory OAuth 2.0 authentication to a Service Fabric Web API (Stateless) service
›
... is pretty much the same as adding it to a normal Web API 2.0 application: [Authorize] public class ValuesController : ApiController...
Sunday, July 16, 2017
Getting Started with deploying your first Azure Service Fabric resource
›
I've recently started getting on the Service Fabric band wagon, running in Azure in my case. When you run Service Fabric in Azure (vs on...
Wednesday, November 09, 2016
Solving "System.Net.WebException: The remote server returned an error: (417) Expectation Failed" with a WCF service
›
I recently started getting the following error message when trying to connect to a web service we had put on an Azure VM running behind an A...
Solving "System.Net.WebException: The remote server returned an error: (417) Expectation Failed" with a WCF service
›
I recently started getting the following error message when trying to connect to a web service we had put on an Azure VM running behind an A...
Friday, September 02, 2016
Solving "Binding validation failed because the binding's MsmqAuthenticationMode property is set to WindowsDomain but MSMQ is installed with Active Directory integration disabled"
›
I've been trying to set up remote reads from an MSMQ queue to a WCF service hosted on another machine. I seem to have all my application...
Solving "Binding validation failed because the binding's MsmqAuthenticationMode property is set to WindowsDomain but MSMQ is installed with Active Directory integration disabled"
›
I've been trying to set up remote reads from an MSMQ queue to a WCF service hosted on another machine. I seem to have all my application...
Friday, August 26, 2016
Unable to add multiple listen rule keys or subscriptions to a Topic in an Azure Service Bus in an Azure Resource Group template
›
I recently ran across a problem wherein I was unable to add multiple Listen rules for my applications to my Topics in Azure Service Bus with...
Tuesday, August 16, 2016
Avoiding Windows Service startup timeouts in your code
›
check this out: https://www.devopsonwindows.com/avoid-windows-service-start-up-timeouts/
Wednesday, August 10, 2016
Finally ... how to debug the startup of a Windows Service application
›
Do what this guy says: http://einaregilsson.com/run-windows-service-as-a-console-program/ Pasted here for posterity, here's the examp...
›
Home
View web version