BizTalk Server Tutorials and Solutions Skip to main content

Posts

Showing posts from 2019

BizTalk Error Reason: The source was not found, but some or all event logs could not be searched. To create the source, you need permission to read all event logs to make sure that the new source name is unique. Inaccessible logs: Security.

Problem : I have received following error in my BizTalk Server Administration Console- Reason: The source was not found, but some or all event logs could not be searched.  To create the source, you need permission to read all event logs to make sure that the new source name is unique.  Inaccessible logs: Security. Cause : This issue occurs due to insufficient permission of BizTalk user account that I used to logging my custom events. When I try to call my event log method to create a custom event log then custom event log entry is created under the following server registry: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Eventlog So you must have full permission for your user account to write here. but, my user account does not have permission to write event log. So the user that runs the application must have full rights to create a new custom log. Solution : To resolve this issue you need to grant full permission to create custom event log. Please see the below fo

Implementation of JSON message in BizTalk Application

Today ! In this post I will tell you, complete solution of implementation of JSON messages in BizTalk with an example. As you all know very well that JSON (JavaScript Object Notation) is a lightweight data-interchange format and it is also language independent. These are below following prerequisites to implement JSON message in Biztalk- Visual Studio BizTalk Server 2013R2 or later version Basic knowledge of JSON Basic knowledge of programming in BizTalk and deployment.  I am going to tell you how to receive JSON message with the help of JSON decoder tool in receive pipeline and same how to send JSON message with the help of JSON encoder tool in send pipeline. Without waste your time, please follows below all steps to achieve JSON message in BizTalk. 1.  Open Microsoft visual studio and create new biztalk project name as 'BizTalkLive_JSONExample1' then right click of this biztalk project and select property and set Application name as 'BizTalkLive_J