| LANE CAMPBELL 2004-04-28, 6:36 pm |
| In my xsd file in biztalk, I have an elemen defined as below:
<xs:element name="managerApp" type="xs:int" />
Below is the code in my C# application that creates the xml that is sent to biztalk. For some reason this does not work. Do I need to specify the datatype in C# when creating the xml file or ? I don't get a biztalk error when I run this, but Decide point in my orchestration based on the "managerApp" do not seem to work regardless of what I do. Please Help!
// create the managerApp element
tempXmlNode = xmlDocument.CreateNode(XmlNodeType.Element, "managerApp", "");
tempXmlNode.InnerText = managerApp.Checked.ToString() ;
xmlDocument.DocumentElement.AppendChild(tempXmlNode);
--
LANE CAMPBELL
|