Click here to Skip to main content
15,898,902 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,

I have an xml SOAPenvelope request file :
<soapenv:Body>

   <FTTPProductTypexsi:type="xsd:string">TDV</FTTPProductType>
   <applicationIdxsi:type="xsd:string">702</applicationId>
    <insideFTTPProductTypexsi:type="xsd:string">T</insideFTTPProductType>
     <masterOrderNumxsi:type="xsd:string">TESTNEWDDA</masterOrderNum>
     <numberOfCalendarDaysxsi:type="xsd:string">10</numberOfCalendarDays>
    <serviceOrderNumxsi:type="xsd:string"xsi:nil="true"/>
     <serviceOrderTypexsi:type="xsd:string">N</serviceOrderType>

     <userIdxsi:type="xsd:string">V613001</userId>
</soapenv:Body>


This soap message I am storing by the following method :
org.apache.axis.Message l_request = mCtx.getRequestMessage();//mCtx is an instance of MessageContext
org.apache.axis.message.SOAPEnvelope l_Envelope = l_request.getSOAPEnvelope();


Thus, I got the above soap file into l_Envelope.

Now the only thing is I want to store these fields (xml values ) into related variables.
Is there any jax API that can solve my issue ?
Posted
Updated 16-Mar-10 5:50am
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900