The XML Response from 3DPartStream.NET is returned in a structured XML document via HTTP from 3DPartStream.NET. This document uses SOAP as the defining structure. The format of the document is as follows:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Header>
<interfacename>Name of Interface</interfacename>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<returnval>Return Value</returnval>
<success>Description</success>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
The bold face information will correspond according to the interface response that is returned. For specific responses, look to the samples found in each of the XML Interface topics.
Sample Response
A sample response is show below from the interface SWGetModelView3D
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Header>
<interfacename>SWGetModelView3D</interfacename>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<sessionid>0000</sessionid>
<returnval>Link to the attachment</returnval>
<success>Description</success>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>