Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   XML (http://www.velocityreviews.com/forums/f32-xml.html)
-   -   Is this SOAP Envelope valid? (http://www.velocityreviews.com/forums/t169251-is-this-soap-envelope-valid.html)

circuit_breaker@canada.com 05-02-2005 01:27 PM

Is this SOAP Envelope valid?
 
Hi,

I have a .NET WebService that accepts 3 parameters. Using the same
request below but with only 2 parameters, it works, but not with one,
three and so on...

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<SayHello xmlns="http://tempuri.org/">
<one>Linux Rulez!!!!!!!</one>
<two>Structure 2</two>
<three>Structure 3</three>
</SayHello>
</soap:Body>
</soap:Envelope>

Here's the answer I'm getting back from IIS when I try to send
something else than 2 parameters. And yes, I did recompile the thing
on the .NET :)

inputline: Server: Microsoft-IIS/5.0
inputline: X-Powered-By: ASP.NET
inputline: HTTP/1.1 500 Internal Server Error.
inputline: Date: Mon, 02 May 2005 13:13:52 GMT
inputline: Connection: close
inputline: Cache-Control: private
inputline: Content-Length: 533
inputline: <?xml version="1.0" encoding="utf-8"?>
inputline: <soap:Body>
inputline: <faultcode>soap:Client</faultcode>
inputline: <detail />
inputline: </soap:Body>
inputline: null


Your help would be very much appreciated. Thanks.



All times are GMT. The time now is 01:40 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57