Hi All, I am below wsdl : -------------------------------------------------------------------------- <?xml version="1.0" encoding="utf-8"?> <wsdl:definitions xmlns:s1="http://www.amla.com/schemas/basetypes/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://www.amla.com.com/schemas/webservices/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://www.amla.com.com/schemas/webservices/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> <wsdl:types> <s:schema elementFormDefault="qualified" targetNamespace="http://www.amla.com.com/schemas/webservices/"> <s:import namespace="http://www.amla.com/schemas/basetypes/" /> <s:element name="GetStock"> <s:complexType> <s:sequence> <s:element name="objRequest" type="s1:GetStockDataReq" /> </s:sequence> </s:complexType> </s:element> <s:element name="GetStockResponse"> <s:complexType> <s:sequence> <s:element name="GetStockResult" type="s1:GetStockDataResp" /> </s:sequence> </s:complexType> </s:element> </s:schema> <s:schema elementFormDefault="qualified" targetNamespace="http://www.amla.com/schemas/basetypes/"> <s:complexType name="GetStockDataReq"> <s:sequence> <s:element name="ID" type="s:string" /> </s:sequence> </s:complexType> <s:complexType name="GetStockDataResp"> <s:sequence> <s:element name="Info" type="s1:Result" /> </s:sequence> </s:complexType> <s:complexType name="Result"> <s:sequence> <s:element name="ReturnMark" type="s:string" /> </s:sequence> </s:complexType> </s:schema> </wsdl:types> <wsdl:message name="GetStockSoapIn"> <wsdl:part name="parameters" element="tns:GetStock" /> </wsdl:message> <wsdl:message name="GetStockSoapOut"> <wsdl:part name="parameters" element="tns:GetStockResponse" /> </wsdl:message> <wsdl:portType name="StockWSSoap"> <wsdl:operation name="GetStock"> <wsdl:input message="tns:GetStockSoapIn" /> <wsdl:output message="tns:GetStockSoapOut" /> </wsdl:operation> </wsdl:portType> <wsdl:binding name="StockWSSoap" type="tns:StockWSSoap"> <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" /> <wsdl:operation name="GetStock"> <soap:operation soapAction="http://www.amla.com.com/schemas/webservices/GetStock" style="document" /> <wsdl:input> <soap:body use="literal" /> </wsdl:input> <wsdl:output> <soap:body use="literal" /> </wsdl:output> </wsdl:operation> </wsdl:binding> <wsdl:service name="StockWS"> <wsdl:port name="StockWSSoap" binding="tns:StockWSSoap"> <soap:address location="http://localhost:888/axis/services/StockService" /> </wsdl:port> </wsdl:service> </wsdl:definitions> --------------------------------------------------------------------------
I am using JiBX, AXIS 1.2 Final on the client side to consume this wsdl. Now can anyone please tell me how the complete binding.xml looks on the client side so that I can deserialize the response from the service. Thanks & Regards, Kumar. ------------------------------------------------------- This SF.Net email is sponsored by Oracle Space Sweepstakes Want to be the first software developer in space? Enter now for the Oracle Space Sweepstakes! http://ads.osdn.com/?ad_ids93&alloc_id281&op=click _______________________________________________ jibx-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jibx-users
