Hello Friends,
I need some help about this mapping issue.
input file :
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Header></SOAP:Header> <SOAP:Body> <Object_1> <ID>12222333444</ID> <points>50</points> </Object_1> <Object_1> <ID>12222333555</ID> <points>20</points> </Object_1> <Object_1> <ID>1222233777</ID> <points>10</points> </Object_1> </SOAP:Body> </SOAP:Envelope>
output file1 :
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Header></SOAP:Header> <SOAP:Body> <Object_1> <ID>12222333444</ID> <points>50</points> </Object_1> </SOAP:Body> </SOAP:Envelope>
output file 2 :
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Header></SOAP:Header> <SOAP:Body> <Object_1> <ID>12222333555</ID> <points>20</points> </Object_1> </SOAP:Body> </SOAP:Envelope>
output file 3 :
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Header></SOAP:Header> <SOAP:Body> <Object_1> <ID>1222233777</ID> <points>10</points> </Object_1> </SOAP:Body> </SOAP:Envelope>
Best regards,
FK