Avatar

Level 10

The binding properties are set up to bind to what is returned from the web service. It sounds to me like you are returning a single string (which happens to contain xml that represents the structure of the form). The product connot inspect the internals of that string (the WSDL only describes a single string being returned). In these case you can have a single multiline field that you can bind the result to, then load the xml data into the data dom your self. You still cannot bind to it but you can manipulate the datadom to populate your fields (basically doing the binding yourself).

Hoep that helps

Paul