jusbat
12 years agoOccasional Contributor
Web Service wsdl URL as variable
Hi all, Hopefully someone will be able to help me. I have a TestComplete project in JScript and I am trying to control the wsdl URL of a web service I have included in my Project. Basica...
- 12 years agoHi Justine,
I think that instead of:
ProjectSuite.Variables.Service = eval(testedServiceName);
you should try this:
ProjectSuite.Variables.Service = eval('WebServices.' + testedServiceName);
I.e. evaluated expression should be a string with the value like this (without quotes):
'WebServices.WS_[IP]'
Does this help?