Feeds:
Posts
Comments

Archive for August, 2008

This is one of the most frequent errors you’d see when logging with the Event Log.
Error: Writing to the event log FAILED .. Requested registry access is not allowed. at System.ThrowHelper.ThrowSecurityException(ExceptionResource resource)
at Microsoft.Win32.RegistryKey.OpenSubKey(String name, Boolean writable)
Most of the time this error goes unnoticed because of the account privileges your application is running under. However, once [...]

Read Full Post »

Here is a simple one. Although, I see it more under the .Net category rather than BizTalk one – but, I’ll log it under BizTalk simply my expression shape called a .Net component.
 
I’m calling a .Net component from an expression shape with three parameters 

objManager.Calculate(nId, strContext, strMessage);
where, strMessage is an out variable returned by my .Net function.
Error: [...]

Read Full Post »

 Often, you would be “greeted” with customers who would hand you over XML test files – that your system should be expecting. As BizTalk coders / developers (or consultants ) we would ideally be looking for XSD files – but not all wishes are granted.
Here is how to generate an XSD file from your [...]

Read Full Post »

Receiving xml (data types) from SQL server isn’t straight forward as is the case with any other primitive type. I’ve described in another post how to update an XML data type using the SQL Adapter. Today, I’ll be telling you about the receive side of things.

While configuring your solution, to receive data from SQL adapter (Add Generated [...]

Read Full Post »

This is a simple one – but quite handy. Generally, while debugging BizTalk application it is of apparent interest to know about the subscriptions. Here is how to do it..
 
Right click “BizTalk Group” à “Query Tasks” à “New Query”

 
 

 

Then,
 

 
 
You would get a list of all active subscriptions
 
 
 

 
 

Let us follow the above steps with an [...]

Read Full Post »