I’m not a 100% sure why this happened ? . But I’ll post this error in case any one can point out the reasons behind this one.
Here is the situation:
I was debugging my BizTalk 06 pipeline using VS 2005. And while doing so, I came across a situation where my file wasn’t being picked by [...]
Archive for July, 2008
BizTalk 2006: System Error 230 – Pipe state is invalid ?
Posted in BizTalk 2006 R2, tagged BizTalk 2006, Pipe state is invalid, System Error 230, Zeeshan on July 28, 2008 | Leave a Comment »
BizTalk 2006: SQL Adapter – Address should be unique
Posted in BizTalk 2006 R2, tagged Address should be unique for Receive Location, SQL Adapter, Zeeshan Shah on July 25, 2008 | 1 Comment »
While using a SQL adapter to receive data from your DB, one of the most common error that pops up is as follows:
Error:Address should be unique for Receive Location ‘Receive Location1′.
Address ‘SQL://<machineName>/<database>/’ is already present for Receive Location ‘RcvSQL’. (Microsoft.BizTalk.ExplorerOM)
This error simply states that there is another listener (SQL receive location) that is registered with [...]
BizTalk 2006: Primary Receive Location cannot be deleted
Posted in BizTalk 2006 R2, tagged BizTalk 2006, Delete port biztalk 2006, Primary Receive Location cannot be deleted. (Microsoft., Zeeshan Shah on July 24, 2008 | 4 Comments »
One of the common “error” dialog boxes we see while deleting a receive location.
Error: Primary Receive Location cannot be deleted. (Microsoft.BizTalk.ExplorerOM)
The obvious thought here is that perhaps the location is being used by another BizTalk artefact. Well, after making sure that is not the case – still the above error persists ! Solution:
A simple trick to delete the recieve [...]
BizTalk 2006: BizTalkAssemblyResourceManager failed to complete
Posted in BizTalk 2006 R2, tagged BizTalk 2006, BizTalk 2006: BizTalkAssemblyResourceManager failed to, Zeeshan on July 14, 2008 | 3 Comments »
While deploying my BizTalk solution using Visual Studio 2005, the following error was produced.
Error DEPLOY: Failed to add resource(s). Change requests failed for some resources. BizTalkAssemblyResourceManager failed to complete end type change request. Access is denied. (Exception from HRESULT: 0×80070005 (E_ACCESSDENIED))
After insepecting my GAC folder, I found the folder empty. I’ve seen similar errors while [...]
Item templates in csproj
Posted in Visual Studio, tagged BizTalk, C#, Item templates in csproj, Zeeshan on July 11, 2008 | Leave a Comment »
Often while creating projects in your dev enviornment, I find the use of Item templates very helpful. The idea is to create a general template that includes all your common code – e.g Header info for class, regions in terms of class structure. Every dev member in your team would use this template to create [...]
Asia Cup n Wimbledon
Posted in Uncategorized on July 7, 2008 | Leave a Comment »
Hmm.. A happening day today..
1) Srilanka beats India in the final of a thrilling Asia cup (guys we are talking about cricket ). The Indians restricted Srilanka to under 280 runs (with Jaysuriya in blistering form even at 39 years of age). I was still betting on the Lankans simply because of playing [...]
SQL: View locks on your database
Posted in SQL, tagged BizTalk, locks, SQL: View locks on your database, Zeeshan Shah on July 4, 2008 | Leave a Comment »
It is generally a good practice -during dev work to view the impact that your components could have your application database. Of the many analysis that could be done in this regard , one such metrics is the monitoring of locks. SQL provides one such stored proc called the sp_lock. In using this, I have to filter [...]
Generate .cs files for your BizTalk Artifacts
Posted in BizTalk 2006 R2, tagged BizTalk, C# file BizTalk, code file, Generate a .cs file for your BizTalk Artifacts, Zeeshan Shah on July 3, 2008 | 3 Comments »
To generate a cs file for your artifacts in BizTalk add the following to your registry
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\7.1\BizTalkProject with a DWORD value named GenerateCSFiles – set the value to 1
Restart your IDE and that should be it ..