Hi All ,
I have a xml file in the Unix server and the file get changed daily . I have to catch one tag value in the xml file and store it in the table .
And the sample.xml file looks like
<ns:Data>
/ <Request> <CreatedDateTime>2018-05-11</CreatedDateTime><Person> <ID>XX11</ID>
<Name>
<FName>Rama</FName>
</Name>
<Gender> <GenderCode>Male</GenderCode> </Gender>
</Person>
</Request>
<Request>
<CreatedDateTime>2018-05-11</CreatedDateTime>
<Person> <ID>YY11</ID><Name>
<FName>Sita</FName> </Name>
<Gender>
<GenderCode>Female</GenderCode>
</Gender>
</Person>
</Request>
</ns:Data>
Here I have to read the value of tag <ID> .
Thanks
Sai
Message was edited by: 863516