When a tenant hosts a service to be used by external parties, it should ideally have a short URL. Shorter URLs are easier to be memorized and typed, which eliminates the need to log-in to access the service. Also, tenant information and other descriptive attributes are hidden in shorter URLs, and they are more convenient in hard-copy productions.
...
1. Log on to the product's management console and select "Services -> List" under the "Main" menu.
2. The "Deployed Services" page appears which lists out all the currently active services. Select a service and click on it to view its dashboard. For example,
...
- http://examplemap.localhost:port?wsdl - to access the wsdl of your service
- http://examplemap.localhost:port?tryit - to access the tryit tool of your service
- http://examplemap.localhost:port/getQuote - to access rest call of your service
To access your own domain, a cname is required. If a cname is not available at the moment, you can use /etc/hosts file in ubuntu or Windows\System32\drivers\etc\hosts file in windows to put your domain entries pointing to the local ip. For example,
Code Block |
---|
127.0.0.1 exampleapp.localhost |
This is applicable only for testing purposes.
...