Service1
Klicken Sie hier, um die vollständige Vorgangsliste anzuzeigen.
SchreibenArtikel
Test
Das Testformular ist nur für Anforderungen vom lokalen Computer 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 /Service.asmx HTTP/1.1
Host: webservice.krahn-gmbh.de
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://apios.de/SchreibenArtikel"
<?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>
<SchreibenArtikel xmlns="http://apios.de/">
<Modus>string</Modus>
<oArtikel>
<ANR>string</ANR>
<BEZ>string</BEZ>
<LBEZ>string</LBEZ>
<PGRU>int</PGRU>
<GEBGEW>decimal</GEBGEW>
<GEBMGE>decimal</GEBMGE>
<GEBME>string</GEBME>
<VKME>string</VKME>
<VKPE>int</VKPE>
<KATNR>string</KATNR>
<NEU_MA>string</NEU_MA>
<NEU_ZP>dateTime</NEU_ZP>
<MOD_MA>string</MOD_MA>
<MOD_ZP>dateTime</MOD_ZP>
<BEM>string</BEM>
</oArtikel>
</SchreibenArtikel>
</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>
<SchreibenArtikelResponse xmlns="http://apios.de/">
<SchreibenArtikelResult>string</SchreibenArtikelResult>
</SchreibenArtikelResponse>
</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 /Service.asmx HTTP/1.1
Host: webservice.krahn-gmbh.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:Body>
<SchreibenArtikel xmlns="http://apios.de/">
<Modus>string</Modus>
<oArtikel>
<ANR>string</ANR>
<BEZ>string</BEZ>
<LBEZ>string</LBEZ>
<PGRU>int</PGRU>
<GEBGEW>decimal</GEBGEW>
<GEBMGE>decimal</GEBMGE>
<GEBME>string</GEBME>
<VKME>string</VKME>
<VKPE>int</VKPE>
<KATNR>string</KATNR>
<NEU_MA>string</NEU_MA>
<NEU_ZP>dateTime</NEU_ZP>
<MOD_MA>string</MOD_MA>
<MOD_ZP>dateTime</MOD_ZP>
<BEM>string</BEM>
</oArtikel>
</SchreibenArtikel>
</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>
<SchreibenArtikelResponse xmlns="http://apios.de/">
<SchreibenArtikelResult>string</SchreibenArtikelResult>
</SchreibenArtikelResponse>
</soap12:Body>
</soap12:Envelope>