Thanks for your responses!
Trying to create the Intermediate structure(DT/MT) according to WS response like above, but in PI name space is additional tag which is not matched exact to structure of WS response. That is the issue now, so how to avoid/trim this name space in PI or do I need to add this name space along with output structure in java map/ code? There are some trail and errors trying at this time, but pls. let me know which way is better and easy to handle?
WS response structure like below :
----------------------
<?xml version="1.0" encoding="utf-8"?>
<PersonDetails>
<Person ID="19">
<USER>20000</USER>
<Group>sdfsdfsfsdfsd</Group>
</Person>
</PersonDetails>
PI DT/MT structure for above structure:
----------------
<?xml version="1.0" encoding="UTF-8"?>
<ns0:PersonDetails xmlns:ns0="http://xxxxxxx.com/javamap/restservice">
<Person ID="19">
<USER></USER>
<Group></Group>
</Person>
</ns0:PersonDetails>
Thanks,
Gayatri