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
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
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> |