MolEngineWS
Click here for a complete list of operations.
GetImage
Get structure image. Parameter:
- input - input structure
- inputmimetype - input fileformat
- outputformat - output image format: png, gif or jpg
- width - specify image width
- height - specify image height
- margin - specify image margin
Test
The test form is only available for requests from the local machine.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /jsdrawapp/jsdraw/MolEngineWS.asmx HTTP/1.1
Host: www.elncloud.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.molengine.com/GetImage"
<?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>
<GetImage xmlns="http://www.molengine.com/">
<input>string</input>
<inputmimetype>string</inputmimetype>
<outformat>string</outformat>
<width>int</width>
<height>int</height>
<margin>int</margin>
</GetImage>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?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>
<GetImageResponse xmlns="http://www.molengine.com/">
<GetImageResult>base64Binary</GetImageResult>
</GetImageResponse>
</soap:Body>
</soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /jsdrawapp/jsdraw/MolEngineWS.asmx HTTP/1.1
Host: www.elncloud.com
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>
<GetImage xmlns="http://www.molengine.com/">
<input>string</input>
<inputmimetype>string</inputmimetype>
<outformat>string</outformat>
<width>int</width>
<height>int</height>
<margin>int</margin>
</GetImage>
</soap12:Body>
</soap12:Envelope>
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>
<GetImageResponse xmlns="http://www.molengine.com/">
<GetImageResult>base64Binary</GetImageResult>
</GetImageResponse>
</soap12:Body>
</soap12:Envelope>