com.WebService.CreateWebService
Creates a new object to implement a Web Service.
Syntax
com.WebService.CreateWebService(
name STRING,
ns STRING )
RETURNS com.WebService
- name defines the Web service identifier.
- ns defines the namespace for the Web service.
Usage
The com.WebService.CreateWebService()
class method creates a new
com.WebService
object implementing a Web Service.
The name and ns parameters must uniquely identify the Web service across the entire application, when multiple Web service programs run on the same server. In theory, the value of ns+name must be unique on the internet.
In case of error, the method throws an exception and sets the
STATUS
variable. Depending on the error, a human-readable description of the
problem is available in the SQLCA.SQLERRM
register. See Error handling in GWS calls (STATUS).