Dependency Injection and Injecting Multiple Instances of an Interface in Azure Functions

Time to Read: 4 minutes This is a short and fun scenario that I tried out while playing around with the dependency injection in Azure Functions Runtime V2 (.NET Core run-time). The Dependency Injection support in Azure Functions comes with a lot of advantages. Some are We get loosely coupled code, our functions are no more tied with concrete classes We get the ability to...

Creating a FitBitAssistantBot using Microsoft Bot Framework and FitBit Web Api : Real Life Example of Authentication Using Azure Bot Service

Time to Read: 14 minutes   Introduction Any business which transacts online requires providing some kind of chat support for the issues related to their business. This can be done by developing chat applications where the consumers directly chat with the agent of the business who then solve their problems. A new alternative to answering frequently asked questions is the use of the Chat Bot...

Building Bots Using Microsoft Bot Framework and ASP.Net Core 2: Part 2- Creating a simple Weather Bot Using Yahoo Weather API

Time to Read: 12 minutes   Introduction Welcome to the part 2 of the Beginner to Advance series on building bots using Microsoft Bot Framework and ASP.NET core 2. Today we will go through some concepts and we will try to build our own bot using Bot Builder Template for v4 that we saw how to install in last blog post. The bot we will...

Tweeting Using Logic Apps: Error “media type unrecognized” when sending image with Tweets

Time to Read: 3 minutes BackGround Today while going through the Logic Apps forums , I found a question where the Original Poster had problems sending an image with the tweet text by using the twitter api. The error that the Logic App run time threw back was similar to {   “status”: 400,   “message”: “media type unrecognized.\r\nclientRequestId: 5c3cf7d0-c018-494d-bc74-f4d88edc040d\r\nserviceRequestId: 392220ba2115f611f7789f451003bdc4”,   “source”: “twitter-wi.azconn-wi.p.azurewebsites.net” } in this post...

Building Bots Using Microsoft Bot Framework and ASP.Net Core 2: Part 1- Introduction and Setting Up Bot Development Environment

Time to Read: 7 minutes Introduction This is first part of the series that I have planned on writing on creating interactive chat bots using Microsoft Bot Framework. I will try to cover all aspects of bot development in this series and later on I will try to cover the continuous integration and deployment for the bot and how we can use it to automate...

Could not load file or assembly ‘SSOSettingsFileReader, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b9585ffc9d454e4a’ or one of its dependencies. The located assembly’s manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

Time to Read: 2 minutes Today during my work schedule, I was approached by one of the Front End users and the y complained that BizTalk services were returning faults to them. Upon checking up the logs for the BizTalk application, I came across following error. “Could not load file or assembly ‘SSOSettingsFileReader, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b9585ffc9d454e4a’ or one of its dependencies. The located assembly’s manifest...