You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
708 B
Markdown
23 lines
708 B
Markdown
# setServiceName(dataServiceName,positionServiceName)
|
|
|
|
This used to configure the server IP or URL for the services needed by the P&P module
|
|
|
|
Usually you will receive the following :
|
|
|
|
API : https://dev.penguinin.com:9090/api
|
|
|
|
PE : https://dev.penguinin.com:9090/pe
|
|
|
|
The URL consists of two parts: the base URL and the service name. The base URL is the first part of the URL, and it specifies the server or hostname. The service name is the second part of the URL, and it specifies the specific service that is being accessed.
|
|
|
|
For example, in the following URL:
|
|
|
|
https://dev.penguinin.com:9090/api
|
|
|
|
The base URL is https://dev.penguinin.com:9090
|
|
|
|
The service name is api
|
|
|
|
```java
|
|
setServiceName(api, pe)
|
|
``` |