| Stephen W. Thomas 2005-12-28, 5:57 pm |
| Hello.
When you are using the Call Orchestration Shape, all the values you pass
must be Serializable. System.Xml.XmlDocument is not. You will need to pass
it as a Message or I guess you could convert it to a string or something else
that is Serializable.
Hope this helps.
Stephen W. Thomas
http://www.biztalkgurus.com
http://geekswithblogs.net/sthomas/
"AnaB" wrote:
> Hello,
> I have an orchestration that accepts as parameters two strings and a
> System.XML.XMLDocument.
> In the orchestration that this orchestration is called from, I have
> three variables of type string, string, and System.XML.XMLDocument.
> Before I call the orchestration, I set the variables in an Expression
> Shape.
> However, when I try to configure the orchestration parameters on the
> called orchestration, I get "No Variable of Type
> System.XML.XMLDocument" for the parameter of System.XML.XMLDocument
> type.
> I can set all three variables fine, but only the string variables show
> up as available in the Orchestration Call Configuration.
> What am I doing wrong?
>
> Thanks.
>
>
|