DensityMap
Click here for a complete list of operations.
DensityJpeg
Return parameters and jpeg image in attachment.
Input: Parameters (Map)
Output: Jpeg image (SOAP Attachment - Dime)
Test
The test form is only available for requests from the local machine.SOAP
The following is a sample SOAP request and response. The placeholders shown need to be replaced with actual values.
POST /devel/DensityMap/DensityMap.asmx HTTP/1.1
Host: skyservice.pha.jhu.edu
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://skyservice.pha.jhu.edu/DensityJpeg"
<?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>
<DensityJpeg xmlns="http://skyservice.pha.jhu.edu">
<map>
<query>string</query>
<xmin>float</xmin>
<xmax>float</xmax>
<ymin>float</ymin>
<ymax>float</ymax>
<xdim>int</xdim>
<ydim>int</ydim>
<fmin>float</fmin>
<fmax>float</fmax>
<zoom>float</zoom>
<ex>boolean</ex>
<func>string</func>
<proj>string</proj>
</map>
</DensityJpeg>
</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>
<DensityJpegResponse xmlns="http://skyservice.pha.jhu.edu">
<DensityJpegResult>
<query>string</query>
<xmin>float</xmin>
<xmax>float</xmax>
<ymin>float</ymin>
<ymax>float</ymax>
<xdim>int</xdim>
<ydim>int</ydim>
<fmin>float</fmin>
<fmax>float</fmax>
<zoom>float</zoom>
<ex>boolean</ex>
<func>string</func>
<proj>string</proj>
</DensityJpegResult>
</DensityJpegResponse>
</soap:Body>
</soap:Envelope>