web services - How to Parse SOAP Response from a third party server using Java -


i newbie soap services, want extract xml following soap response belongs corresponding soap request, xml contained in string tag. want extract xml string tag. please give me solution example

<?xml version="1.0" encoding="utf-8"?> <string xmlns="http://www.webservicex.net/">    <stockquotes>       <stock>          <symbol>string</symbol>          <last>0.00</last>          <date>n/a</date>          <time>n/a</time>          <change>n/a</change>          <open>n/a</open>          <high>n/a</high>          <low>n/a</low>          <volume>n/a</volume>          <mktcap>n/a</mktcap>          <percentagechange>n/a</percentagechange>          <annrange>n/a - n/a</annrange>          <earns>n/a</earns>          <p-e>n/a</p-e>          <name>string</name>       </stock>    </stockquotes> </string> 

take here: how read xml using xpath in java

you not need specific tool soap. need info xml.


Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -