[Gug-cvs] gug/gug/wsdl gug.jar, NONE, 1.1 sum.wsdl, NONE, 1.1 count.wsdl, 1.2, 1.3
Status: Planning
Brought to you by:
szferi
From: Roczei G. <ro...@us...> - 2007-06-06 15:11:10
|
Update of /cvsroot/gug/gug/gug/wsdl In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6766 Modified Files: count.wsdl Added Files: gug.jar sum.wsdl Log Message: WSDL testing Binding style (WS-I and GUG compatible): rpc literal --- NEW FILE: sum.wsdl --- <?xml version="1.0" encoding="UTF-8" standalone="no"?> <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://gug.grid.niif.hu/sum" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="sum" targetNamespace="http://gug.grid.niif.hu/sum"> <wsdl:message name="NewOperationRequest"> <wsdl:part name="a" type="xsd:string"/> <wsdl:part name="b" type="xsd:string"/> </wsdl:message> <wsdl:message name="NewOperationResponse"> <wsdl:part name="Response" type="xsd:string"/> </wsdl:message> <wsdl:portType name="SumPortType"> <wsdl:operation name="sum"> <wsdl:input message="tns:NewOperationRequest"/> <wsdl:output message="tns:NewOperationResponse"/> </wsdl:operation> </wsdl:portType> <wsdl:binding name="SumSOAPBinding" type="tns:SumPortType"> <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> <wsdl:operation name="sum"> <soap:operation soapAction="http://gug.grid.niif.hu/sum/NewOperation"/> <wsdl:input> <soap:body namespace="http://gug.grid.niif.hu/sum" use="literal"/> </wsdl:input> <wsdl:output> <soap:body namespace="http://gug.grid.niif.hu/sum" use="literal"/> </wsdl:output> </wsdl:operation> </wsdl:binding> <wsdl:service name="Sum"> <wsdl:port binding="tns:SumSOAPBinding" name="SumSOAPService"> <soap:address location="http://localhost:21111/Sum"/> </wsdl:port> </wsdl:service> </wsdl:definitions> --- NEW FILE: gug.jar --- (This appears to be a binary file; contents omitted.) Index: count.wsdl =================================================================== RCS file: /cvsroot/gug/gug/gug/wsdl/count.wsdl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** count.wsdl 4 Jun 2007 21:50:44 -0000 1.2 --- count.wsdl 6 Jun 2007 15:11:06 -0000 1.3 *************** *** 55,59 **** <wsdl:service name="Count"> ! <wsdl:port binding="tns:CountSOAPBinding" name="Count"> <soap:address location="http://localhost:21111/Count"/> </wsdl:port> --- 55,59 ---- <wsdl:service name="Count"> ! <wsdl:port binding="tns:CountSOAPBinding" name="CountSOAPBinding"> <soap:address location="http://localhost:21111/Count"/> </wsdl:port> |