<OUTPUT | Attribute Description Table |
When parent element is EXTRACT: (r)url="string" file="string" When parent element is IMAGE: (r)url="string" file="string" height="integer" type="gif | jpg | png | png8" width="integer" When parent element is METADATA_CONFIG and using the Metadata Server: baseurl="string" path="string" When parent element is PROPERTIES in a map configuration file using in an Image Service: method="stream" When parent element is PROPERTIES in GET_EXTRACT: baseurl="string" name="string" path="string" url="string" When parent element is PROPERTIES in GET_IMAGE: baseurl="string" legendbaseurl="string" legendname="string" legendpath="string" legendurl="string" name="string" path="string" type="gif | jpg | png | png8" [jpg] url="string" > No Child Elements </OUTPUT > | |
(r): Attribute or child element is required. |
Attribute | Paired Attribute | Filename Assignment |
---|---|---|
path | baseurl | ArcIMS assigns random filename. |
name | url | User assigns a filename. |
legendpath | legendbaseurl | ArcIMS assigns random filename. |
legendname | legendurl | User assigns a filename. |
Attribute | Usage |
---|---|
file | Full pathname and filename for location of ZIP file generated by the ArcIMS Spatial Server. UNC pathnames are valid (\\myComputer\arcims\output). |
url | URL used by client to retrieve ZIP file. |
Attribute | Usage |
---|---|
file | Full pathname and filename for location of map image generated by the ArcIMS Spatial Server. UNC pathnames are valid (\\myComputer\arcims\output). |
height | Height in pixels. If autoresize is used in a GET_IMAGE request, and the requested map is larger than the image memory limit, then the generated map is resized to fit within the image memory limit. In this case, the height of the output image is included in the IMAGE response. |
type | Returned when OUTPUT method="stream" in a map configuration file for Image Services. Valid only when the Java Connector, the Web ADF for the Microsoft .NET Framework, or the Web ADF for the Java Platform is used. |
url | URL used by client to retrieve map image. |
width | Width in pixels. If autoresize is used in a GET_IMAGE request, and the requested map is larger than the image memory limit, then the generated map is resized to fit within the image memory limit. In this case, the width of the image is included in the IMAGE response. |
Attribute | Usage |
---|---|
baseurl | Paired with path. URL of output directory if default filename is generated by ArcIMS. Do not include a filename. |
path | Paired with baseurl. Directory to output file generated by the Metadata Server. Do not include the filename. UNC pathnames are valid (\\myComputer\arcims\output). |
Attribute | Usage |
---|---|
method | Specifies that image output for an Image Service should be streamed in Base64 encoded format. Valid only with Image Services used with the Java Connector or Web ADF. |
Attribute | Usage |
---|---|
baseurl | Paired with path. URL of output directory if default filename is generated by ArcIMS. Do not include a filename. |
name | Paired with url. User assigns an output ZIP filename. Use full pathname along with the filename. The filename must match the filename used in url. UNC pathnames are valid (\\myComputer\arcims\output\myfile.zip). |
path | Paired with baseurl. Directory to output ZIP file generated by Extract Server. Do not include the filename. UNC pathnames are valid (\\myComputer\arcims\output). |
url | Paired with name. URL of output ZIP file. Include filename as part of URL. The filename must match the filename used in name. |
Attribute | Usage |
---|---|
baseurl | Paired with path. URL of output directory if default filename is generated by ArcIMS. Do not include a filename. |
legendbaseurl | Paired with legendpath. URL of output directory if default legend filename is generated by ArcIMS. Do not include a filename. |
legendname | Paired with legendurl. User assigns an output legend filename. Use full pathname along with the filename. The filename must match the filename used in legendurl. UNC pathnames are valid (\\myComputer\arcims\output\mylegend.jpg). |
legendpath | Paired with legendbaseurl. Directory to output legend file generated by Image Server. Do not include the filename. UNC pathnames are valid (\\myComputer\arcims\output). |
legendurl | Paired with legendname. URL of output legend file. Include filename as part of URL. The filename must match the filename used in legendname. |
name | Paired with url. User assigns an output filename. Use full pathname along with the filename. Only filenames with a *.jpg, *.png, or *.gif extension are valid. The filename must match the filename used in url. UNC pathnames are valid (\\myComputer\arcims\output\myfile.jpg). |
path | Paired with baseurl. Directory to output file generated by the Image Server. Do not include the filename. UNC pathnames are valid (\\myComputer\arcims\output). |
type | Output image file type. Can be gif, jpg, png8 (8 bit), png (24 bit). |
url | Paired with name. URL of output file. Include filename as part of URL. The filename must match the filename used in name. |
<?xml version="1.0" encoding="UTF8"?> <ARCXML version="1.1"> <RESPONSE> <IMAGE> <ENVELOPE minx="-80.00000000" miny="-56.00000000" maxx="80.00000000" maxy="56.00000000" /> <OUTPUT url="http://mymachine.domain.com/maps/WorldMap_MYMACHINE16114829.jpg" /> </IMAGE> </RESPONSE> </ARCXML> |
<?xml version="1.0" encoding="UTF8"?> <ARCXML version="1.1"> <RESPONSE> <IMAGE> <ENVELOPE minx="-80.00000000" miny="-56.00000000" maxx="80.00000000" maxy="56.00000000" /> <OUTPUT file="F:\WorldMap_MYMACHINE16114829.jpg" url="http://mymachine.domain.com/maps/WorldMap_MYMACHINE16114829.jpg" /> </IMAGE> </RESPONSE> </ARCXML> |
<?xml version="1.0" encoding="UTF8"?> <ARCXML version="1.1"> <RESPONSE> <IMAGE> <ENVELOPE minx="-180" miny="-135" maxx="180" maxy="135" /> <OUTPUT file="c:\arcims\output\world_MYMACHINE8236420.png" url="http://mymachine.domain.com/output/world_MYMACHINE8236420.png" width="591" height="443"/> </IMAGE> </RESPONSE> </ARCXML> |
<?xml version="1.0" encoding="UTF-8"?> <ARCXML version="1.1"> <REQUEST> <GET_IMAGE> <PROPERTIES> <ENVELOPE minx="-180" miny="-90" maxx="180" maxy="90" /> <IMAGESIZE width="643" height="502" /> <OUTPUT name="c:\arcims\myfile.jpg" url="http://mymachine.domain.com/myfile.jpg" /> </PROPERTIES> </GET_IMAGE> </REQUEST> </ARCXML> |
<?xml version="1.0" encoding="UTF-8"?> <ARCXML version="1.1"> <REQUEST> <GET_IMAGE> <PROPERTIES> <ENVELOPE minx="-180" miny="-90" maxx="180" maxy="90" /> <IMAGESIZE width="643" height="502" /> <OUTPUT legendname="c:\arcims\website\legend.jpg" legendurl="http://mymachine.domain.com/website/legend.jpg" name="c:\arcims\website\map.jpg" url="http://mymachine.domain.com/website/map.jpg" /> <LEGEND title="Legend" font="Arial" columns="1" width="170" height="300" backgroundcolor="255,255,0" /> </PROPERTIES> </GET_IMAGE> </REQUEST> </ARCXML> |
<?xml version="1.0" encoding="UTF-8"?> <ARCXML version="1.1"> <RESPONSE> <IMAGE> <ENVELOPE minx="-180" miny="-135" maxx="180" maxy="135" /> <OUTPUT type="jpg">/9j/4AAQSk ... ZJRgABZ</OUTPUT> <LEGEND type="jpg" >/9j/4AAQSkZJRgABAQA ... UDBAQEAZ</LEGEND> </IMAGE> </RESPONSE> </ARCXML> |