Adding New Microsoft Extensions to Legacy WCF and ASMX Web Services
In this article, We'll look at how to use new Microsoft.Extensions.* in a legacy WCF and ASP.Net Web Services (ASMX) applications.
I'm a Cloud Solution Architect, Speaker, Teacher, Learner, Engineer, Craftsman, Whovian with his head in the Cloud.
In this article, We'll look at how to use new Microsoft.Extensions.* in a legacy WCF and ASP.Net Web Services (ASMX) applications.
We've been building microservices here for a while, so I thought I'd share how we do it.
I'll start by saying, you should ALWAYS avoid async/void. Now, I'm sure there are edge cases, but the reality is you can get into a lot of trouble with async/void.
We had an interesting problem after upgrading an ASP.Net Core project from project.json to VS 2017 csproj. The build broke. A little background...
In a recent project we came across in issue where ADAL would go into an infinite loop when renewing a token. It's a known issue with many causes/fixes, some of which were bugs fixed in the 1.11 release...
On a recent project, there was some debate about the behavior of OneWay OperationContracts, so I thought I'd put together a little example. Specifically, the debate centered around when control is returned back to the calling routine. Let's take a look at the MSDN docs...
http://msdn.microsoft.com/en-us/library/system.servicemodel.operationcontractat...
I came across the error in this article when trying to configure the CRM client for Outlook...
Error connecting to URL: https://myogranization.crm.dynamics.com/XRMServices/2011/Discovery.svc Exception: System.ArgumentNullException: Value cannot be null.
See this kb article... http://support.microsoft.com/kb/2498892
For me, the installation was fine....
I Googled, Binged, and scoured internet and various documentation and could not find this setting. I was able to reverse engineer the declarative markup based on the properties in the classes and code samples.
If you want to use the shared access signature authentication with the netMessagingBinding in WCF declaratively in your web.config or...
I've been having some fun lately on an integration project involving and on-premises BizTalk 2010 implementation and the Windows Azure Service Bus. We've run across some interesting challenges that aren't well documented, if at all, so I wanted to share with you all. I'll take a tutorial approach through real world scenarios as well as...