scoop
Klicken Sie hier, um die vollständige Vorgangsliste anzuzeigen.
getBild
Gibt ein Bild zurück
Test
Das Testformular ist nur für Methoden mit primitiven Typen wie Parametern verfügbar.SOAP 1.1
Es folgt ein Beispiel für eine SOAP 1.1-Anforderung und -Antwort. Die angezeigten Platzhalter müssen durch tatsächliche Werte ersetzt werden.
POST /scoop/api/v5/scoop.asmx HTTP/1.1 Host: secure.gelsenkirchen.de Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://www.gkd-el.de/webservices/scoop/getBild" <?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:Header> <wsAuthHeader xmlns="http://www.gkd-el.de/webservices/scoop"> <token>guid</token> </wsAuthHeader> </soap:Header> <soap:Body> <getBild xmlns="http://www.gkd-el.de/webservices/scoop"> <bildID>int</bildID> <width>int</width> <height>int</height> <resizeModes> <resizeMode>standard or crop or fit or stretch or background</resizeMode> <resizeMode>standard or crop or fit or stretch or background</resizeMode> </resizeModes> </getBild> </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> <getBildResponse xmlns="http://www.gkd-el.de/webservices/scoop"> <getBildResult> <bild> <bildID>int</bildID> <filename>string</filename> <bildunterschrift>string</bildunterschrift> <bildrechte>string</bildrechte> <size>int</size> <mimetype>string</mimetype> <data>base64Binary</data> <istTeaserbild>boolean</istTeaserbild> <sort>int</sort> </bild> </getBildResult> </getBildResponse> </soap:Body> </soap:Envelope>
SOAP 1.2
Es folgt ein Beispiel für eine SOAP 1.2-Anforderung und -Antwort. Die angezeigten Platzhalter müssen durch tatsächliche Werte ersetzt werden.
POST /scoop/api/v5/scoop.asmx HTTP/1.1 Host: secure.gelsenkirchen.de 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:Header> <wsAuthHeader xmlns="http://www.gkd-el.de/webservices/scoop"> <token>guid</token> </wsAuthHeader> </soap12:Header> <soap12:Body> <getBild xmlns="http://www.gkd-el.de/webservices/scoop"> <bildID>int</bildID> <width>int</width> <height>int</height> <resizeModes> <resizeMode>standard or crop or fit or stretch or background</resizeMode> <resizeMode>standard or crop or fit or stretch or background</resizeMode> </resizeModes> </getBild> </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> <getBildResponse xmlns="http://www.gkd-el.de/webservices/scoop"> <getBildResult> <bild> <bildID>int</bildID> <filename>string</filename> <bildunterschrift>string</bildunterschrift> <bildrechte>string</bildrechte> <size>int</size> <mimetype>string</mimetype> <data>base64Binary</data> <istTeaserbild>boolean</istTeaserbild> <sort>int</sort> </bild> </getBildResult> </getBildResponse> </soap12:Body> </soap12:Envelope>
HTTP GET
Folgendes ist eine Beispielanforderung und -antwort für HTTP GET. Die angezeigten Platzhalter müssen durch richtige Werte ersetzt werden.
GET /scoop/api/v5/scoop.asmx/getBild?bildID=string&width=string&height=string&resizeModes=string&resizeModes=string HTTP/1.1 Host: secure.gelsenkirchen.de
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <wsGetBildResponse xmlns="http://www.gkd-el.de/webservices/scoop"> <bild> <bildID>int</bildID> <filename>string</filename> <bildunterschrift>string</bildunterschrift> <bildrechte>string</bildrechte> <size>int</size> <mimetype>string</mimetype> <data>base64Binary</data> <istTeaserbild>boolean</istTeaserbild> <sort>int</sort> </bild> </wsGetBildResponse>
HTTP POST
Folgendes ist eine Beispielanforderung und -antwort für HTTP POST. Die angezeigten Platzhalter müssen durch richtige Werte ersetzt werden.
POST /scoop/api/v5/scoop.asmx/getBild HTTP/1.1 Host: secure.gelsenkirchen.de Content-Type: application/x-www-form-urlencoded Content-Length: length bildID=string&width=string&height=string&resizeModes=string&resizeModes=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <wsGetBildResponse xmlns="http://www.gkd-el.de/webservices/scoop"> <bild> <bildID>int</bildID> <filename>string</filename> <bildunterschrift>string</bildunterschrift> <bildrechte>string</bildrechte> <size>int</size> <mimetype>string</mimetype> <data>base64Binary</data> <istTeaserbild>boolean</istTeaserbild> <sort>int</sort> </bild> </wsGetBildResponse>