Hello,

            OMElement result = stub.getDeviceData(omelement);
           
            
            String xpathString = "/result/data";
            AXIOMXPath xpathExpression = new AXIOMXPath (xpathString);

            // Step 3
            List listOfNodes =  xpathExpression.selectNodes(result);

            // Let's see what we have got
            for (int i = 0; i < listOfNodes.size(); i++) {
                OMElement omElement = (OMElement) listOfNodes.get(i);
                System.out.println("omElement = " + omElement);
            }  

In my client i have written this code.. but the selectnodes is not
working . When i directly read teh xml on the client side it is
working...the result object contains all the data. am able to print it
to console.

can anyone help?

Regards
lakshmi

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to