Avatar

Level 10

If you create a single string to hold all of the xml from your form in your web service, then you can create a hidden field to hold the data in your form. Now you need to populate the field with teh data that has been collected. To do this use this code:

fieldname.rawValue = xfa.datasets.data.saveXML("pretty")

Now your field is populated with all of the form data a,nd if you bind the input string to that field when you execute the web service the data in that field will be submitted.

Paul