Re: Help with XML and ASP .NET Web Service

2006-04-12 Thread Phillip Duba
Dave, I can't do that because they are not expecting a full XML document but an XML node and the ToString()/XmlParse() puts the tag at the beginning. Here's the example VB code from the auto-generated help for their service: Dim document As XmlDocument = New XmlDocument Dim element As XmlEleme

RE: Help with XML and ASP .NET Web Service

2006-04-12 Thread Dave Watts
> The error I get is: > > Web service operation "RequestOrder" with parameters {... > ,[EMAIL PROTECTED], ...} could > not be found. This looks to me like you need to convert your XML object to a string before sending it elsewhere. Use the ToString function on the CF XML object in question. Da

Re: Help with XML and ASP .NET Web Service

2006-04-12 Thread Phillip Duba
I should also point out I'm running 6.1 as of right now. CFMX7 is coming, but this integration will go before we're on it. > I am trying to invoke a partners web service. It is an ASP .NET web > service that requires a number of paramters, one being an "object". > I've gotten the minimum requir

Re: Help with XML and ASP .NET Web Service

2006-04-12 Thread Phillip Duba
Jacob, thanks for the suggestion. I did try it using the following code: xmlUA = XmlNew(); xmlUA = XmlElemNew(xmlUA,"","AdditionalInfo"); xmlUA.XmlText = "1116"; stOrderRequest.UserArea = StructNew(); stOrderRequest.UserArea.value = xmlUA; // stOrderRequest.UserArea = xmlUA; (I've done both here)

RE: Help with XML and ASP .NET Web Service

2006-04-12 Thread Munson, Jacob
Have you tried using the XmlElemNew function? The docs say this: "Creates an XML document object element." Typically I use this for creating an object that I intend to save to an XML file, but it might work for a webservice as well. > -Original Message- > From: Phillip Duba [mailto:[EMAI