Search Articles
Categories
BizTalk
Blogs
C#, ASP.Net
Search
Blog Stats
- 1,032,018 hits
Recent Comments
Tag Archives: BizTalk Server
Find table from Column Name in an MSSQL Database
From the following query you can find all the tables contains the ‘FirstName’ column. SELECT table_name=sysobjects.name, column_name=syscolumns.name FROM sysobjects JOIN syscolumns ON sysobjects.id = syscolumns.id WHERE sysobjects.xtype=’U’ AND syscolumns.name like ‘FirstName’ ORDER BY sysobjects.name,syscolumns.colid Regards, Vijay Modi
Let me know your Suggessions…
Hi Friends, Its Diwali celebrations here in India. May the festival of lights be the harbinger of joy and prosperity. As the holy occasion of Diwali is here and the atmosphere is filled with the spirit of mirth and love, … Continue reading
How to Use C# code in vb project. ?
Today, I was facing a problem to how to use C# code in vb WebProject. I got the solution from the following URL: http://timheuer.com/blog/archive/2007/02/28/14002.aspx
Biztalk : tracking database doesn’t have any records about the selected service instance yet
I was getting this error while running my biztalk application. After searching on search engine, I have not received any response. Then I tried to see the host instances are working properly or not. And there I found the actual … Continue reading
Biztalk : PartUpdateDisallowedException Exception
When you are going to update any message in Construct shape which is already constructed, then you will receive this type of error. Like you are receiving msg1 and just after this receive shape, you are going to construct this … Continue reading
BizTalk: Pass an XLANG message or an XLANG message part to a .Net method call as a parameter in Orchestration. / Call .Net assembly to update the XLangMessage from Orchestration.
Today, I go through a solution to send XLangMessage to .net assembly from an Orchestration and update it. After update I need it in my Orchestration. For this I have created a project which I think it can help others. … Continue reading
Biztalk WSE Web Services Publishing Wizard Unable to load the assembly "…..\BTSTest.dll" [System.IO.FileNotFoundException] File or assembly name Microsoft.XMLANGs.BaseTypes, or one of its dependencies, was not found.
Error: Biztalk WSE Web Services Publishing Wizard Unable to load the assembly “…..\BTSTest.dll” [System.IO.FileNotFoundException] File or assembly name Microsoft.XMLANGs.BaseTypes, or one of its dependencies, was not found. Solution: To resolve this error you need to install the BtsAdpaterForWSE20-SP1 and need … Continue reading
Could not retrieve transport type data for Receive Location ‘RCVTestLoaction’ from config store. Primary SSO server ‘MYMachine’ failed. Could not contact the SSO server ‘MYMachine’. Check that SSo is configured and that the SSo service is running on that server.
Error: Could not retrieve transport type data for Receive Location ‘RCVTestLoaction’ from config store. Primary SSO server ‘MYMachine’ failed. Could not contact the SSO server ‘MYMachine’. Check that SSo is configured and that the SSo service is running on that … Continue reading
XML parsing: line 1, character 38, unable to switch the encoding
When you will create an Xml file with the Encoding type UTF-8, they it will give you this error: “XML parsing: line 1, character 38, unable to switch the encoding” To resolve this error you need to set the Encoding … Continue reading
Biztalk : Illegal attempt to update the value of part ‘part’ in XLANG/s message ‘testMsg’ after the message construction was complete.
When you are receiving a message and will go to update it in the expression shape, you will receive this type of error. To resolve this you need to construct the new message of the same type and needs to … Continue reading