I installed the OpenText’s sample AppWorks service on my AppWorks server. Now I want to call that REST service from an HTML page that I'll be running on my Windows 7 desktop. How do I get the exact “full” URL to that service?
The url is the url of the AppWorks server (e.g. http://my.demo:8080) followed by the service name, which is the first part of the name of the installer .zip. So, for example, if you install a service as myservice_1.0.zip on that machine, the full url is http://mydemo:8080/myservice.
Within the service, if you use our recommended configuration, your apis will be under v1/, so .../myservice/v1/<resource>.
.../myservice/v1/<resource>
Thank you.