web service parameter value changed
I am using TestComplete to access a very simple internal web service that feeds data to a SQL database. When I do this in TestComplete, the string RecordData is stored in the database with the delimiter (¶) is converted to "??" . The very same data passed to the same web service in SoapUI stores the RecordData delimiters correctly in the database. Perhaps there is a setting in TestComplete that I am missing. The "Units encoding" setting of the project has no effect.
[JScript]
var RecID;
Project.Variables.RecordType = "StopUpdate";
Project.Variables.RecordData = "tripID=0¶RunID=100¶StopID=48000501";
RecID = WebServices.DispatchInterface.SendToMDT2(Project.Variables.RecordType, Project.Variables.RecordData);
Thanks for any thoughts or suggestions on how to address this.