NuSphere Forums Forum Index
NuSphere Forums
Reply to topic
Client code for reading list?


Joined: 04 May 2015
Posts: 1
Reply with quote
I can read individual points using NuSOAP but when I want to read a list of all the points my skills run out.

How would I do the querry when I have this:

REQUEST
Code:
POST /webservices/demo.asmx HTTP/1.1
Host: 0.0.0.0
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <getPointDataList xmlns="http://demo.com/webVision/">
      <point_ids>
        <string>string</string>
        <string>string</string>
      </point_ids>
    </getPointDataList>
  </soap12:Body>
</soap12:Envelope>


RESPONSE
Code:
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <getPointDataListResponse xmlns="http://demo.com/webVision/">
      <getPointDataListResult>
        <PointData>
          <Id>string</Id>
          <Value>double</Value>
        </PointData>
        <PointData>
          <Id>string</Id>
          <Value>double</Value>
        </PointData>
      </getPointDataListResult>
    </getPointDataListResponse>
  </soap12:Body>
</soap12:Envelope>
View user's profileFind all posts by sjobbeSend private message
Client code for reading list?
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT - 5 Hours  
Page 1 of 1  

  
  
 Reply to topic