Image service

This service returns informations about given image.

Input

URL (string)

URL address of image.

Output

Image info (string)

String containing information about analysed image.

Description

This service takes given URL and downloads specified image. After that is set of analytical methods applied to acquired image and resulting information about image is returned by service as string.

WSDL

WSDL: http://rainbow.vse.cz/services/ImageService

There will be nicely formatted WSDL listing in a future. For now just plain listing.

<?xml version="1.0" encoding="utf-8"?>
<definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="urn:cz.vse.rainbow.services.ImageService1" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="urn:cz.vse.rainbow.services.ImageService1" xmlns="http://schemas.xmlsoap.org/wsdl/">
  <types>
    <s:schema elementFormDefault="qualified" targetNamespace="urn:cz.vse.rainbow.services.ImageService1">
      <s:element name="ImageAnalysis">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="strMyUrl" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="ImageAnalysisResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="ImageAnalysisResult" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
    </s:schema>
  </types>
  <message name="ImageAnalysisSoapIn">
    <part name="parameters" element="s0:ImageAnalysis" />
  </message>
  <message name="ImageAnalysisSoapOut">
    <part name="parameters" element="s0:ImageAnalysisResponse" />
  </message>
  <portType name="imageSoap">
    <operation name="ImageAnalysis">
      <input message="s0:ImageAnalysisSoapIn" />
      <output message="s0:ImageAnalysisSoapOut" />
    </operation>
  </portType>
  <binding name="imageSoap" type="s0:imageSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
    <operation name="ImageAnalysis">
      <soap:operation soapAction="urn:cz.vse.rainbow.services.ImageService1/ImageAnalysis" style="document" />
      <input>
        <soap:body use="literal" />
      </input>
      <output>
        <soap:body use="literal" />
      </output>
    </operation>
  </binding>
  <service name="image">
    <port name="imageSoap" binding="s0:imageSoap">
      <soap:address location="http://80.188.33.35:86/Rainbow/image.asmx" />
    </port>
  </service>
</definitions>