View Single Post
  #3 (permalink)  
Old 11-05-2005, 03:33 PM
smies smies is offline
Senior Member
 
Posts: 51
Default

No, I use my own server. I am planning to use JSON but I need to rewrite parts of the current SOAP service that I use (Ruby On Rails). Till then I wanted to use xml as response. But the whitespaces in the response wreak havoc in my test code.

This is a response:
Code:
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <env:Body>
    <n1:FindAllProductsResponse xmlns:n1="urn:ActionWebService" env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
      <return n2:arrayType="xsd:int[4]" xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="n2:Array">
        <item>
          1
        </item>
        <item>
          2
        </item>
        <item>
          3
        </item>
        <item>
          4
        </item>
      </return>
    </n1:FindAllProductsResponse>
  </env:Body>
</env:Envelope>
Reply With Quote