Hi
Can some one help me on this issue
My source file out put is like this :
http://www.w3.org/2003/05/soap-envelope" xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd=" http://www.w3.org/2001/XMLSchema">
<soap:Body>
<DownloadDataByUserResult>
<results xmlns="">
<data>
<Report.Agent.Status.Summary rows="268">
<row DateTime="01/04/2010" UserId="104" UserName="test" StateDescription="connected" Duration="22"/>
</Report.Agent.Status.Summary>
</data>
</results>
</DownloadDataByUserResult>
</DownloadDataByUserResponse>
</soap:Body>
</soap:Envelope>
Target file out put should be like this:
<?xml version="1.0" encoding="UTF-8"?>
<ns0:Ultra_BW_Response xmlns:ns0="urn:com.vangent.ultra.agentactivity">
<DateTime>01/04/2010</DateTime>
<UserId>104</UserId>
<UserName>test</UserName>
<StateDescription>allocated</StateDescription>
<Duration>22</Duration>
</ns0:Ultra_BW_Response>
How can i do mapping?
I am gussing XSLT mapping , If yes can some one tell me how to do ( Steps )
Thanks
Babu