Thanks for your reply.
I have tried to use iterator to loop the data and display but still have problem. What can I do in the iterator loop to get the real value instead of null value?
Below is the code I have tried.
[color=“green”]TXQuery xquery = TXQuery.newInstance(“for $x in input()//client return $x”);
TResponse response = xmlObjectAccessor.xquery(xquery);
TXMLObjectIterator iterator = response.getXMLObjectIterator();
TXMLObject xmlObject = null;
while (iterator.hasNext()) {
xmlObject = iterator.next();
System.out.println(xmlObject.getElement())
}[/color]
Output:
[client:null]
[client:null]
[client:null]
#API-Management#webMethods-Tamino-XML-Server-APIs#webMethods