|
Home > Archive > BizTalk Server General > June 2004 > Adapter Framework
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| Harrisonpf 2004-06-26, 10:51 am |
| Hi All
I have created a Database Adapter using the Beta Version of BizTalk 2004. The adapter is a a send / Receive adapter and it was working fine. I have now ported the adapter to the final release of BTS 2004 and (after making some import statement changes) ev
erything seemedto work fine. The Receive Adapter works fine (apart from a few strange info messages) but the send adapter doesn't work at all! It seems that I can't read the configuration from the PropertyBag. I was using propertyBag.Read( "Send", out va
l, 0 );
But it doesn't find anything anymore. Unfortunately there is absolutely no way to find what the ProeprtyBag contais (at least I can't find a way!).
I would be grateful for any help on this subject!
| |
| Kartik Paramasivam 2004-06-29, 8:44 pm |
|
Looks like you are unable to read the properties for the send handler.
First make sure that you indeed have properties configured in your send
handler ...
Are you using the Common base class implementation given in the SDK samples
??
If not, then you need to first
propertyBag.Read("AdapterConfig", out obj, 0 )
The output of this 'obj' will be an XML document which will have all your
listed properties.
If you dump this XML you'll see all the properties configured by the user
for your send handler.
You can look at the samples in the latest sdk to get more information on
this.
|
|
|
|
|