Skip to content
Snippets Groups Projects
Commit d61eff1a authored by Martin Haase's avatar Martin Haase
Browse files

Fixed getSid, empty Request instead of nothing, for CXF to work

git-svn-id: https://textgridlab.org/svn/textgrid/trunk/middleware/tgauth@6850 7c539038-3410-0410-b1ec-0f2a7bf1c452
parent fc1df8a0
No related branches found
No related tags found
No related merge requests found
......@@ -104,7 +104,13 @@
</xsd:element>
<!-- #### getSid #### //-->
<xsd:element name="getSidResponse">
<xsd:element name="getSidRequest">
<xsd:complexType>
<xsd:sequence>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="getSidResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="sid" type="xsd:string" minOccurs="1" maxOccurs="1" />
......@@ -958,6 +964,9 @@
</wsdl:message>
<!-- #### getSid #### //-->
<wsdl:message name="getSidRequest">
<wsdl:part element="tns:getSidRequest" name="getSidInput" />
</wsdl:message>
<wsdl:message name="getSidResponse">
<wsdl:part element="tns:getSidResponse" name="getSidOutput" />
</wsdl:message>
......@@ -2250,6 +2259,7 @@ with that user.
</wsdl:documentation>
<wsdl:output message="tns:getSidResponse" />
<wsdl:input message="tns:getSidRequest" />
</wsdl:operation>
</wsdl:portType>
......@@ -2534,6 +2544,9 @@ with that user.
<!-- #### getSid #### //-->
<wsdl:operation name="getSid">
<soap:operation soapAction="http://textgrid.info/namespaces/middleware/tgauth/getSid" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output><soap:body use="literal" /></wsdl:output>
</wsdl:operation>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment