Hello,
The infopath template I'm creating is a customization of a SharePoint listform (so It's somewhat limited on functionalities)
I'm trying to send soms xml-string as a parameter with a webservice request. This xml is stored in a textbox (by concatenating several fields). When sending the webservice request I get an error. Using fiddler, I noticed my xml-string is totally encoded before passed to the web service
in textbox: bar
in request: <foo>bar</foo>
Does anyone have any idea how I could fix this?
Thanks