Hello Andrei,
Thank you for your response, actually I have 5 keys (modulus, public
exponent etc). The one which you sent is for user name and password
authentication i believe and sorry if i am wrong.
Now I successfully signed and the handshake works, but once I get response
from Server In logininterceptor I am able to get the XML but at the end I am
running into below issues
Am I doing something wrong, Didn't I generate the jar properly from WSDL.
unexpected element (uri:"urn:myservice.client.messages",
local:"inquireAccountOutput"). Expected elements are
<{}inquireAccountOutput>
This is what I am getting in LogInInterceptor
*Response:*
<soap-env:Envelope
xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap-env:Body>
<s0:inquireAccountResponse xmlns:s0="urn:myservice.client.messages">
<inquireAccountOutput xmlns="urn:myservice.client.messages">
* This is what my WSDL*
<wsdl:output name="inquireAccountResponse">
<soap:body use="literal"
namespace="urn:myservice.client:document-binding"/>
</wsdl:output>
*And This is my XSD*
<xs:element name="inquireAccountResponse">
<xs:complexType>
<xs:sequence>
<xs:element name="inquireAccountOutput"
type="ns0:InquireAccountOutput"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:complexType name="InquireAccountOutput">
<xs:sequence>
<xs:element name="status" minOccurs="1" type="tns:ResponseDataOutput"/>
</xs:sequence>
</xs:complexType>
<xs:element name="inquireAccountOutput" type="tns:InquireAccountOutput"/>
--
View this message in context:
http://cxf.547215.n5.nabble.com/Modify-SoapBody-tp5769428p5769491.html
Sent from the cxf-user mailing list archive at Nabble.com.