| Narasimhan Padmanabhan 2004-05-14, 3:37 pm |
| Programatically initializing a correlation set is not supported.
This posting is provided "AS IS" with no warranties, and confers no rights.
EBusiness Server Team
--------------------
| >>Content-Class: urn:content-classes:message
| >>From: "JT" <anonymous@discussions.microsoft.com>
| >>Sender: "JT" <anonymous@discussions.microsoft.com>
| >>Subject: Programmatic Correlation
| >>Date: Wed, 10 Mar 2004 10:03:30 -0800
| >>Lines: 26
| >>Message-ID: <a9ca01c406c9$febcdd80$a101280a@phx.gbl>
| >>MIME-Version: 1.0
| >>Content-Type: text/plain;
| >> charset="iso-8859-1"
| >>Content-Transfer-Encoding: 7bit
| >>X-Newsreader: Microsoft CDO for Windows 2000
| >>X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
| >>Thread-Index: AcQGyf68ae/CnyKdSr2a1kz362oqTA==
| >>Newsgroups: microsoft.public.biztalk.orchestration
| >>Path: cpmsftngxa06.phx.gbl
| >>Xref: cpmsftngxa06.phx.gbl microsoft.public.biztalk.orchestration:5161
| >>NNTP-Posting-Host: tk2msftngxa09.phx.gbl 10.40.1.161
| >>X-Tomcat-NG: microsoft.public.biztalk.orchestration
| >>
| >>I'm trying to find a way to "programmatically" initialize
| >>a correlation set without using a Send or Receive Shape.
| >>After the correlation set is initialized (in an Expression
| >>Shape perhaps?) I'd like to use a Receive shape
| >>and "Follow" the initialized correlation set.
| >>
| >>I understand properties in referenced .NET classes can be
| >>used for correlation if they're properly configured:
| >>
| >>using System;
| >>using Microsoft.XLANGs.BaseTypes;
| >>namespace BizTalk.Correlation
| >>{
| >> [Serializable]
| >> public class DOTNETCorrelation
| >> {
| >> [PropertyAttribute(typeof(string))]
| >> public string TaskID;
| >> }
| >>}
| >>
| >>I then compile the project containing "DOTNETCorrelation"
| >>and add a reference to the .dll in my BizTalk2004
| >>orchestration project. Based on this, how do I A) map
| >>TaskID in my .NET Class to a property schema and B)
| >>initialize the correlation set containing TaskID?
| >>
|