Skip to content

Commit

Permalink
Merge pull request #19 from gematik/publishInternalRelease-18
Browse files Browse the repository at this point in the history
- Fix: add missing SOAP operations for ReadCertificate
- Fix: update Consumer SOAP actions to match correct WSDL namespace versions
  • Loading branch information
muenzerik committed Feb 27, 2024
2 parents 48dda65 + 71ffc9f commit 962fa07
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 6 deletions.
4 changes: 4 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

# Release Notes api-telematik

## Release Consumer 1.0.0-1
- Fix: add missing SOAP operations for ReadCertificate
- Fix: update Consumer SOAP actions to match correct WSDL namespace versions

## Release Consumer 1.0.0
- Extend Consumer Operations for "ePA für alle"

Expand Down
27 changes: 26 additions & 1 deletion consumer/CertificateService.wsdl
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
changed namespace CERT,CERTW
version: V3.0.0
C_11647: change namespace CERT,CERTW
version: V3.0.0-1
fix: add missing SOAP operations for ReadCertificate
End of Version History-->
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:CERT="http://ws.gematik.de/consumer/CertificateService/v3.0" xmlns:CERTW="http://ws.gematik.de/consumer/CertificateService/WSDL/v3.0" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:GERROR="http://ws.gematik.de/tel/error/v2.0" targetNamespace="http://ws.gematik.de/consumer/CertificateService/WSDL/v3.0">
<documentation>
Expand All @@ -18,6 +20,12 @@
<xs:import schemaLocation="../tel/error/TelematikError.xsd" namespace="http://ws.gematik.de/tel/error/v2.0"/>
</xs:schema>
</types>
<message name="ReadCertificateRequestMessage">
<part name="parameter" element="CERT:ReadCertificate"/>
</message>
<message name="ReadCertificateResponseMessage">
<part name="parameter" element="CERT:ReadCertificateResponse"/>
</message>
<message name="VerifyCertificateRequestMessage">
<part name="parameter" element="CERT:VerifyCertificate"/>
</message>
Expand All @@ -28,6 +36,11 @@
<part name="parameter" element="GERROR:Error"/>
</message>
<portType name="CertificateServicePortType">
<operation name="ReadCertificate">
<input message="CERTW:ReadCertificateRequestMessage"/>
<output message="CERTW:ReadCertificateResponseMessage"/>
<fault name="FaultMessage" message="CERTW:FaultMessage"/>
</operation>
<operation name="VerifyCertificate">
<input message="CERTW:VerifyCertificateRequestMessage"/>
<output message="CERTW:VerifyCertificateResponseMessage"/>
Expand All @@ -36,8 +49,20 @@
</portType>
<binding name="CertificateServiceBinding" type="CERTW:CertificateServicePortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="ReadCertificate">
<soap:operation soapAction="http://ws.gematik.de/consumer/CertificateService/v3.0#ReadCertificate"/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
<fault name="FaultMessage">
<soap:fault name="FaultMessage" use="literal"/>
</fault>
</operation>
<operation name="VerifyCertificate">
<soap:operation soapAction="http://ws.gematik.de/consumer/CertificateService/v1.0#VerifyCertificate" style="document"/>
<soap:operation soapAction="http://ws.gematik.de/consumer/CertificateService/v3.0#VerifyCertificate" style="document"/>
<input>
<soap:body use="literal"/>
</input>
Expand Down
4 changes: 2 additions & 2 deletions consumer/EncryptionService.wsdl
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<binding name="EncryptionServiceBinding" type="CRYPTW:EncryptionServicePortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="EncryptDocument">
<soap:operation soapAction="http://ws.gematik.de/consumer/EncryptionService/v1.0#EncryptDocument"/>
<soap:operation soapAction="http://ws.gematik.de/consumer/EncryptionService/v3.0#EncryptDocument"/>
<input>
<soap:body use="literal"/>
</input>
Expand All @@ -60,7 +60,7 @@
</fault>
</operation>
<operation name="DecryptDocument">
<soap:operation soapAction="http://ws.gematik.de/consumer/EncryptionService/v1.0#DecryptDocument"/>
<soap:operation soapAction="http://ws.gematik.de/consumer/EncryptionService/v3.0#DecryptDocument"/>
<input>
<soap:body use="literal"/>
</input>
Expand Down
6 changes: 3 additions & 3 deletions consumer/SignatureService.wsdl
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<binding name="SignatureServiceBinding" type="SIGW:SignatureServicePortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="VerifyDocument">
<soap:operation soapAction="http://ws.gematik.de/consumer/SignatureService/v1.0#VerifyDocument"/>
<soap:operation soapAction="http://ws.gematik.de/consumer/SignatureService/v3.0#VerifyDocument"/>
<input>
<soap:body use="literal"/>
</input>
Expand All @@ -75,7 +75,7 @@
</fault>
</operation>
<operation name="SignDocument">
<soap:operation soapAction="http://ws.gematik.de/consumer/SignatureService/v1.0#SignDocument"/>
<soap:operation soapAction="http://ws.gematik.de/consumer/SignatureService/v3.0#SignDocument"/>
<input>
<soap:body use="literal"/>
</input>
Expand All @@ -87,7 +87,7 @@
</fault>
</operation>
<operation name="ExternalAuthenticate">
<soap:operation soapAction="http://ws.gematik.de/consumer/SignatureService/v1.0#ExternalAuthenticate"/>
<soap:operation soapAction="http://ws.gematik.de/consumer/SignatureService/v3.0#ExternalAuthenticate"/>
<input>
<soap:body use="literal"/>
</input>
Expand Down

0 comments on commit 962fa07

Please sign in to comment.