This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Can any one please help me to know how to get the result -
I wan to fetch <m:GetStockPrice> part from the Soap Body
Expected result - <m:GetStockPrice>
<m:StockName>IBM</m:StockName>
</m:GetStockPrice>
Would any one help me to achieve this?
Thanks
Patricia
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35250
7
posted
0
If you have this XML document in a string, and if you know that you'll always want to retrieve That specific part, and if you're certain that the structure won't change substantially, then some string operations (using indexOf and substring) should do the trick.
Hi!
If you want to use SAAJ read and process the XML, then I have some examples in section 5.7 of my SCDJWS 5 Study Notes.
You can download the document in the SCDJWS Links section here or at http://www.javaforum.se/jforum/posts/list/549.page Best wishes!
M Mehta
Ranch Hand
Joined: Aug 03, 2006
Posts: 92
posted
0
I had a similar requirement of getting body from Soap. I wrote the following code which is working for me. Hope it helps you solving the problem.