BizTalk Server Tutorials and Solutions Skip to main content

Posts

Showing posts from January, 2018

Key and Value are not working in BizTalk SSO Application Configuration

Problem:  Some time when you add a key and value inside SSO Application Configuration its not showing right side panel and also we are not able to store key and value into biztalk SSO database. Solution:  Go to "C:\Program Files (x86)\Microsoft Services\SSO Application Configuration" and open "SSOMMCSnapIn.dll.config" file in notepad then add following config details just below the <configuration> tag. <runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" appliesTo="v4.0.30319"> <dependentAssembly> <assemblyIdentity name="Microsoft.EnterpriseSingleSignOn.Interop" publicKeyToken="31bf3856ad364e35" culture="neutral" /> <bindingRedirect oldVersion="5.0.1.0" newVersion="10.0.1000.0"/> </dependentAssembly> </assemblyBinding> </runtime> See the below following figure- Now open again SSO Application Configurat

Zip File in a Custom Send Pipeline Component

Hello everyone !! I am going to write BizTalk custom send pipeline code to zip a file. What will you achieve after read out complete content of this post, you can create a custom send pipeline code and how add it in biztalk project with an project example so that you can easily able to convert any file into zip file by using send pipeline. In the last of this post you can download complete source code with an example. Kindly follows all below following steps to achieve to send a zip file by using custom send pipeline component- Before follows all steps, please read- BizTalk Pipeline 1. Open Microsoft Visual Studio as Administrator user and Click File>New>Project… In Installed Templates click BizTalk Projects then Empty BizTalk Server Project and Name as “BizTalkLive.Zip.Encode” and click OK. 2. Now leave every thing as it, we will do later, Now right click on your solution and a new C# class library project name as "BizTalkLive.Zip" then rename class1 as &