Click here to Skip to main content
Licence CPOL
First Posted 26 Jun 2008
Views 27,702
Bookmarked 16 times

Call a custom .NET component from BizTalk 2006

By | 26 Jun 2008 | Article
This article describes how to consume a .NET component from an Expression Shape of BizTalk 2006.

Introduction

Lately, I have had to add some external logic to one of my BizTalk applications. I searched all over the web and didn't find a step by step guide to consume a custom .NET component from BizTalk 2006. So, I'm going to enumerate the steps to make a custom .NET component to be implemented from an Expression Shape of BizTalk 2006.

Making the component

  1. Open a new Visual Studio 2005 project. It must be a Class Library.
  2. Input a project name and rename the class name as desired.
  3. Now, it's necessary to add some BizTalk 2006 references in order for both applications to communicate. So, right click in References-->Add Reference, and search in the default installation folder of BizTalk (by default, C:\Program Files\Microsoft BizTalk Server 2006). Add the “Microsoft.XLANGs.BaseTypes.dll” assembly.
  4. basetypes.JPG

  5. Add the following lines on the top of the code of the class:
  6. using Microsoft.XLANGs.BaseTypes;
    using System.Xml;
  7. Define the class as [Serializable].
  8. Add two methods, one to receive a string, and the other to receive the whole XML message. Both of the methods are going to write the received values to a text file. These methods aren't useful in real world, but are good examples.
  9. using System;
    using System.Collections.Generic;
    using System.Text;
    using Microsoft.XLANGs.BaseTypes;
    using System.Xml;
    using System.IO;
    
    
    namespace BizLog
        {
        [Serializable]
        public class Trace
        {
            public void WriteValue(string value)
            {
                File.AppendAllText("C:\\Log.txt", value);
                System.Diagnostics.EventLog.WriteEntry("BizLog", value);
            }
    
            public void WriteMessage(XLANGMessage msg)
            {
                XmlDocument doc = (XmlDocument)msg[0].RetrieveAs(typeof(XmlDocument));
                
                string mystring = doc.InnerXml;
                File.WriteAllText("C:\\content.txt", mystring);
            }
        }
    }
  10. Sign the assembly. First of all, it's necessary to make a file with keys: In the VS2005 Command Prompt, input “Sn –k keyfile.snk”. A new file with keys will be generated. Now, it's necessary to inculcate the project with the new key file. Go to project's Properties-->Signing-->Sign the assembly-->Browse-->keyfile.snk.
  11. In the Solutions Configuration, select “Release” and build the assembly.
  12. Add the component to the GAC (Global Assembly Cache) Start-->Settings-->Control Panel-->Administrative Tools-->Microsoft .NET Framework 2.0 Configuration-->Manage the Assembly Cache-->Add an assembly to the GAC-->Select the assembly.

Calling the component from a BizTalk 2006 orchestration

Let's assume that you have defined a schema project, a message, send port, receive port and all the necessary stuff.

orquestacion.JPG

  1. From the orchestration project, it's necessary to add a reference to the assembly that contains the serializable class we have defined previously.
  2. It's time to create an instance of the new class. Go to “Orchestration View”. Click on Variables. Input the name of the instance and select the type and class, and select the referenced assembly.
  3. type.JPG

  4. Add an Expression Shape to your orchestration and edit the code inside (double click over it). Tip: You can use Ctrl+j or Ctrl+Space to display all the elements you can use as messages, variables, and components.
  5. Add the following code to your Expression Shape:

    expressionshape.JPG

  6. Now, compile the assembly and deploy it. Don't forget to stop the BizTalk application before deploying the assembly, and it's recommended to stop and start the BizTalk Service from Control Panel-->Administrative Tools-->Services.

  7. Start the BizTalk application and send a message to your Receive location. Soon, you will see that two new files have appeared in your hard disk.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Santiago Sanchez

Software Developer

Spain Spain

Member

I´ve been working with Oracle, Sql Server and Visual Basic 6 since 2003 and with C# since 2006. Now I´m fighting with Biztalk 2006 too...
 
MCTS .NET Framework 4, Windows Applications

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionError Pinmemberprasad2007code17:05 15 Mar '12  
AnswerRe: Error PinmemberSantiago Sanchez21:21 15 Mar '12  
GeneralObject Reference 'Persona' in Expression PinmemberMarvPerk311:05 1 Mar '11  
GeneralRe: Object Reference 'Persona' in Expression PinmemberSantiago Sanchez23:10 2 Mar '11  
GeneralRe: Object Reference 'Persona' in Expression PinmemberMarvPerk316:39 3 Mar '11  
GeneralRe: Object Reference 'Persona' in Expression PinmemberSantiago Sanchez4:48 4 Mar '11  
GeneralRe: Object Reference 'Persona' in Expression PinmemberMarvPerk37:24 4 Mar '11  
GeneralRe: Object Reference 'Persona' in Expression PinmemberSantiago Sanchez7:37 4 Mar '11  
GeneralRe: Object Reference 'Persona' in Expression PinmemberMarvPerk38:11 4 Mar '11  
GeneralCannot get file output to C Drive PinmemberHorng Woei Por20:26 30 Mar '09  
GeneralRe: Cannot get file output to C Drive PinmemberSantiago Sanchez23:32 30 Mar '09  
GeneralRe: Cannot get file output to C Drive PinmemberMarvPerk311:09 1 Mar '11  
GeneralException Handling PinmemberAunalisiraj18:04 9 Jul '08  
GeneralRe: Exception Handling PinmemberSantiago Sanchez5:41 10 Jul '08  
GeneralSpecial point about properties with only get accessors PinmemberHector Contreras11:35 2 Jul '08  
GeneralPlease Confirm Necessity of Adding Reference to Microsoft.XLANGs.BaseTypes PinmemberHector Contreras3:03 30 Jun '08  
GeneralRe: Please Confirm Necessity of Adding Reference to Microsoft.XLANGs.BaseTypes PinmemberSantiago Sanchez3:11 30 Jun '08  
GeneralRe: Please Confirm Necessity of Adding Reference to Microsoft.XLANGs.BaseTypes Pinmemberbrett.net18:58 30 Jun '08  
GeneralRe: Please Confirm Necessity of Adding Reference to Microsoft.XLANGs.BaseTypes PinmemberSantiago Sanchez9:34 1 Jul '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 26 Jun 2008
Article Copyright 2008 by Santiago Sanchez
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid