Ask a Question related to ASP.NET Web Services, Design and Development.
-
Rolf Oosting via .NET 247 #1
Soap request with coldfusion
Hello,
I can do simple soap-request in coldfusion using cfscript and webservices. For example:
<cfscript>
ws = createObject("webservice",
"http://#Url#?wsdl");
ws.GetPngMap1("#xcor#","#ycor#","#zoom#","350","35 0");
resp = getSOAPResponse(ws);
</cfscript>
But now I have I more complicated request, the Soap-request should be sent like this:
<soap:Body>
<Convert xmlns="url">
<x>297</x>
<y>156</y>
<center xsi:type="Coordinate">
<X>171106</X>
<Y>376811</Y>
</center>
<zoomlevel>4</zoomlevel>
<bmSize>
<Width>709</Width>
<Height>469</Height>
</bmSize>
</Convert>
</soap:Body>
Do you know how I can call this in coldfusion? The problem is with the center tag that has an X and a Y and the bmSize tag that has a width and a height.
I hope you can help me out with this.
K.R.
Rolf Oosting
-----------------------
Posted by a user from .NET 247 ([url]http://www.dotnet247.com/[/url])
<Id>tvlS4p+9tE2fs3QDJOUHqw==</Id>
Rolf Oosting via .NET 247 Guest
-
Help! SOAP::Lite: How to set the namespace prefix for the request?
Hi, I have to send attributes as <urn:Foo> ... </urn:Foo> and *not* <Foo xsi:type="..."> ... </Foo> -
fails to parse the soap request
I am new to this module and unsure how to call the remote method. However, when it fails to parse the soap request and I don't know why it... -
soap request problem
I can do simple soap-request in coldfusion using cfscript and webservices. For example: <cfscript> ws = createObject('webservice',... -
Q: serve multiple request in 1 SOAP message?
Hello, I would like to know if it's possible for .NET to handle multiple requests in a single SOAP message. I am under the impression that the... -
Soap request
How to invoke a web service, using the soap request protocol, without creating a Web reference to the service.??? Thanks. Mauri.-



Reply With Quote

