Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
plange #1
SOAP/Web Service and Parsing Results - HELP
I'm able to successfully use some web services using this technique: <cfinvoke
webservice='http://www.webservicex.com/isbn.asmx?WSDL'
method='GetISBNInformation' returnvariable='isbninfo'> <cfinvokeargument
name='code' value='0672319225'/> </cfinvoke> <cfoutput> <cfset isbninfo =
XmlParse(isbninfo)> = #isbninfo.ISBNORG.RECORD.AUTHOR.XmlText# </cfoutput>
However, if I try the same method with this, I get a 'Document root element is
missing' error for the line that performs the XMLParse(): <cfinvoke
webservice='http://webservices.geomonster.com/GeoServe.asmx?wsdl'
method='ValidateEmailAddress' returnvariable='ReturnResp'> <cfinvokeargument
name='emailAddress' value='test@verizon.net'/> <cfinvokeargument
name='licenseKey' value='4E43B867-A2C6-927D-B8BB-EEC6C836D66E'/> </cfinvoke>
<cfoutput> <br> <br> <cfdump var='#ReturnResp#'> <cfset ReturnResp =
XmlParse(Trim(ReturnResp))> </cfoutput> What am I missing here?
plange Guest
-
Flash - C# Web Service parsing complex result
Hi, I have C# web service which returns return new object { int , string} for example return new object {55,"some text"} -
Parsing results of HTTPService as xml
I have an xml file that looks like this: <grandparent label="GrandPa"> <parent label="Mom"> <child label="Jane">Jane digs Tarzan</child> <child... -
Soap::Lite Cant get array of results?
I have a web service that returns <soap:Envelope ...> <soap:Body> <myOperationResponse xmlns="nyService"> <myOperationResult> <Wrapper>... -
ASP.NET Web Service (non-standard SOAP)
Hi, I'm working with a SOAP client which uses non-standard headers and a non-standard doc... It uses the "SOAPAction" header to supply an... -
Using .NET web service with SOAP Toolkit 3
I have written a .NET web service and would like to consume it using a SOAP client. To handle complex types I need to create a WSML file. I...



Reply With Quote

