Forum Discussion
2 Replies
- irina_lukinaSuper Contributor
Hi Joel,
If your web service returns a value, you can obtain it via the line that calls your service. In other words, you need to assign the value returned by the code line that calls the web service to a variable. After the service is called and returns any value, the value is automatically stored into the specified variable:
resultVariable = WebServices.WebService1
- jwturner421New ContributorHi Irina,
That worked. Thanks.
--Joel