Service


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

GetData_Pfarreiinfos

Liefert Pfarrei- und Bistumsinformationen

Test

Klicken Sie auf die Schaltfläche 'Aufrufen', um den Vorgang mit dem HTTP POST-Protokoll zu testen.
Parameter Wert
plz:
ort:
strasse:
hnr:
hnrzusatz:
strasse_anzeigen:
passwort:

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 /pfarreifinder_webservice/Service.asmx HTTP/1.1
Host: rz.bistum-mainz.de
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.bistum-mainz.de/pfarreifinder_webservice/service.asmx/GetData_Pfarreiinfos"

<?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>
    <GetData_Pfarreiinfos xmlns="http://www.bistum-mainz.de/pfarreifinder_webservice/service.asmx">
      <plz>string</plz>
      <ort>string</ort>
      <strasse>string</strasse>
      <hnr>string</hnr>
      <hnrzusatz>string</hnrzusatz>
      <strasse_anzeigen>string</strasse_anzeigen>
      <passwort>string</passwort>
    </GetData_Pfarreiinfos>
  </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>
    <GetData_PfarreiinfosResponse xmlns="http://www.bistum-mainz.de/pfarreifinder_webservice/service.asmx">
      <GetData_PfarreiinfosResult>
        <xsd:schema>schema</xsd:schema>xml</GetData_PfarreiinfosResult>
    </GetData_PfarreiinfosResponse>
  </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 /pfarreifinder_webservice/Service.asmx HTTP/1.1
Host: rz.bistum-mainz.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>
    <GetData_Pfarreiinfos xmlns="http://www.bistum-mainz.de/pfarreifinder_webservice/service.asmx">
      <plz>string</plz>
      <ort>string</ort>
      <strasse>string</strasse>
      <hnr>string</hnr>
      <hnrzusatz>string</hnrzusatz>
      <strasse_anzeigen>string</strasse_anzeigen>
      <passwort>string</passwort>
    </GetData_Pfarreiinfos>
  </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>
    <GetData_PfarreiinfosResponse xmlns="http://www.bistum-mainz.de/pfarreifinder_webservice/service.asmx">
      <GetData_PfarreiinfosResult>
        <xsd:schema>schema</xsd:schema>xml</GetData_PfarreiinfosResult>
    </GetData_PfarreiinfosResponse>
  </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 /pfarreifinder_webservice/Service.asmx/GetData_Pfarreiinfos?plz=string&ort=string&strasse=string&hnr=string&hnrzusatz=string&strasse_anzeigen=string&passwort=string HTTP/1.1
Host: rz.bistum-mainz.de
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<DataSet xmlns="http://www.bistum-mainz.de/pfarreifinder_webservice/service.asmx">
  <schema xmlns="http://www.w3.org/2001/XMLSchema">schema</schema>xml</DataSet>

HTTP POST

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

POST /pfarreifinder_webservice/Service.asmx/GetData_Pfarreiinfos HTTP/1.1
Host: rz.bistum-mainz.de
Content-Type: application/x-www-form-urlencoded
Content-Length: length

plz=string&ort=string&strasse=string&hnr=string&hnrzusatz=string&strasse_anzeigen=string&passwort=string
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<DataSet xmlns="http://www.bistum-mainz.de/pfarreifinder_webservice/service.asmx">
  <schema xmlns="http://www.w3.org/2001/XMLSchema">schema</schema>xml</DataSet>