Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

my soap web service response is as follows

    <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
   <soapenv:Body>
      <ns:getRequestDetailsResponse xmlns:ns="http://abc.cvf.com" xmlns:ax21="http://sql.java/xsd" xmlns:ax23="http://abc.cvf.com/xsd">
         <ns:return xsi:type="ax23:Request" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <ax23:created xsi:nil="true"/>
            <ax23:id>10001</ax23:id>
            <ax23:modified xsi:nil="true"/>
            <ax23:notes xsi:nil="true"/>
            <ax23:requester>Approved</ax23:requester>
            <ax23:shipTo xsi:nil="true"/>
            <ax23:status>Satya</ax23:status>
            <ax23:supplierAddress xsi:nil="true"/>
            <ax23:supplierName>sony</ax23:supplierName>
            <ax23:supplierPhone xsi:nil="true"/>
         </ns:return>
         <ns:return xsi:type="ax23:Request" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <ax23:created xsi:nil="true"/>
            <ax23:id>10020</ax23:id>
            <ax23:modified xsi:nil="true"/>
            <ax23:notes xsi:nil="true"/>
            <ax23:requester>Submitted</ax23:requester>
            <ax23:shipTo>saqdas</ax23:shipTo>
            <ax23:status>Satya</ax23:status>
            <ax23:supplierAddress xsi:nil="true"/>
            <ax23:supplierName>asdasd</ax23:supplierName>
            <ax23:supplierPhone xsi:nil="true"/>
         </ns:return>
         <ns:return xsi:type="ax23:Request" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <ax23:created xsi:nil="true"/>
            <ax23:id>10000</ax23:id>
            <ax23:modified xsi:nil="true"/>
            <ax23:notes xsi:nil="true"/>
            <ax23:requester>Submitted</ax23:requester>
            <ax23:shipTo>Hyderabad</ax23:shipTo>
            <ax23:status>Satya</ax23:status>
            <ax23:supplierAddress xsi:nil="true"/>
            <ax23:supplierName>sony</ax23:supplierName>
            <ax23:supplierPhone xsi:nil="true"/>
         </ns:return>
      </ns:getRequestDetailsResponse>
   </soapenv:Body>
</soapenv:Envelope>

This web service is returning a list of Request objects... now i want to display that my app using groovy and dom tranport..

i am using this script for that

import javax.xml.transform.dom.DOMSource;

def output = (DOMSource) response;
output.getNode().getChildNodes().item(0).getChildNodes().item(0).getChildNodes().item(0).getChildNodes().item(1).textContent

But this is not working...

Please help out me in writing this dom transport for me.

your help is appreciated.. thanks in advance..

-Sat

share|improve this question
can you provide a specific way in which it fails? partial stack trace, perhaps? – Brian Henry Nov 7 '12 at 4:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.