MBCS_Cloud_Extern


Klicken Sie hier, um die vollständige Vorgangsliste anzuzeigen.

Upload_File

Legt die in Bytes übergebene Datei auf dem Server ab und legt einen Verweis für die entsprechende Beobachtung an.

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 /MBCS_Cloud_Extern.asmx HTTP/1.1
Host: service.34u.de
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "https://service.34u.de/MBCS_Cloud_Extern.asmx/Upload_File"

<?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>
    <Upload_File xmlns="https://service.34u.de/MBCS_Cloud_Extern.asmx">
      <GUID_Application>string</GUID_Application>
      <Username>string</Username>
      <PasswordMD5>string</PasswordMD5>
      <GUID_Daten>string</GUID_Daten>
      <GUID_File>string</GUID_File>
      <FileName>string</FileName>
      <Bytes>base64Binary</Bytes>
    </Upload_File>
  </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>
    <Upload_FileResponse xmlns="https://service.34u.de/MBCS_Cloud_Extern.asmx">
      <Upload_FileResult>int</Upload_FileResult>
    </Upload_FileResponse>
  </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 /MBCS_Cloud_Extern.asmx HTTP/1.1
Host: service.34u.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>
    <Upload_File xmlns="https://service.34u.de/MBCS_Cloud_Extern.asmx">
      <GUID_Application>string</GUID_Application>
      <Username>string</Username>
      <PasswordMD5>string</PasswordMD5>
      <GUID_Daten>string</GUID_Daten>
      <GUID_File>string</GUID_File>
      <FileName>string</FileName>
      <Bytes>base64Binary</Bytes>
    </Upload_File>
  </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>
    <Upload_FileResponse xmlns="https://service.34u.de/MBCS_Cloud_Extern.asmx">
      <Upload_FileResult>int</Upload_FileResult>
    </Upload_FileResponse>
  </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 /MBCS_Cloud_Extern.asmx/Upload_File?GUID_Application=string&Username=string&PasswordMD5=string&GUID_Daten=string&GUID_File=string&FileName=string&Bytes=string&Bytes=string HTTP/1.1
Host: service.34u.de
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<int xmlns="https://service.34u.de/MBCS_Cloud_Extern.asmx">int</int>

HTTP POST

Folgendes ist eine Beispielanforderung und -antwort für HTTP POST. Die angezeigten Platzhalter müssen durch richtige Werte ersetzt werden.

POST /MBCS_Cloud_Extern.asmx/Upload_File HTTP/1.1
Host: service.34u.de
Content-Type: application/x-www-form-urlencoded
Content-Length: length

GUID_Application=string&Username=string&PasswordMD5=string&GUID_Daten=string&GUID_File=string&FileName=string&Bytes=string&Bytes=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<int xmlns="https://service.34u.de/MBCS_Cloud_Extern.asmx">int</int>