Hi Erel,
Sure, below is a sample of what I want
<UploadEntry ID="43">
<ActionXML>
<ReactiveTask ID="8700">
<Notes>Here are some
notes that need to
be saved against the task
</Notes>
</ReactiveTask>
</ActionXML>
</UploadEntry>
<UploadEntry ID="44">
<ActionXML>
<PostTask ID="875846795">
<Delivered>17 Sep 2012 09:21:02</Delivered>
<DeliveredBy>Roger Smith</Delivered>
</ReactiveTask>
</ActionXML>
</UploadEntry>
The UploadEntry tag allows the server to confirm that it has managed to utilise the XML in the ActionXML tag. Then once all are processed some XML will come back from the server with a list of all the UploadEntries that can be deleted from the database on the device. Any that for some reason can't be uploaded will then be visible on the device.
The ReactiveTask and PostTask XML in the example are generated when someone closes the tasks on the device, then come upload time I want their XML to be inserted into this the rest of it.
Obviously I can create this using standard strings but I wanted to generate in a more concise and elegant way using the toolkit that's already there...
Cheers,
Jon