I'm rather a newbie in XML, but I have a pretty good experience in VBA-access. We need create an XML file to send daily overnight actual driver information of about 1500 cars
Searched for hours always ended on a dead end. What would be the best approach? DOM?, PLAIN TEXT? Love you get some direction here.
Many thanks in advance
The receiver wants it in this format:
<?xml version="1.0" encoding="UTF-8"?>
<REGDriverInformationData xsi:schemaLocation="http://www.Provider.fr/REGDriverInformation REGDriverInformation.xsd " xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.Provider.fr/REGDriverInformation">
<Header>
<SequenceNo>1</SequenceNo>
<RsNumber>123456</RsNumber>
</Header>
<REGDriverInformation>
<LicensePlate>DE125665</LicensePlate>
<Driver>
<FirstName>Driver1_FirstName</FirstName>
<LastName>Driver1_LastName</LastName>
<BirthDate>1988-10-12</BirthDate>
<Address>
<Street>Driver1_Street</Street>
<HouseNumber>Driver1_HouseNumber</HouseNumber>
<PostalCode>Driver1_PostalCode</PostalCode>
<City>Driver1_City</City>
<CountryCode>UK</CountryCode>
</Address>
<DrivingLicenseNumber>Driver1_DrivingLicenseNumber</DrivingLicenseNumber>
</Driver>
<Start>2014-05-01T00:00:00</Start>
<End>2018-04-30T00:00:00</End>
</REGDriverInformation>
</REGDriverInformationData>