Deploying a web service
To implement a BOI web service, you must generate the WSDL file that defines this service and then deploy the WSDL file to the web server. You perform both tasks in the web application of the Connector for Web Services, on various web pages of the c4ws servlet.
To deploy a BOI web service:
http://<web server host>:<port
nr>/c4ws/services
).
The
<soap:address>
in the
<ws: port>
element of the WSDL file denotes the
end point of the SOAP message, which is the URL address where the message is
delivered. This address contains the location of the web server, the name of
the web application, and the location of the server. In our case, the location
of the server is indicated by the
Identifier of the
Baan IV
server hosting the BOI business object that is exposed by the web service.
This example shows the
<soap:address>
in a WSDL file of a web service
to expose Areas BOIs:
<wsdl:service name="AreasService">
<wsdl:port binding="bo:AreasSoapBinding" name="AreasSoapPort">
<soap:address location="http://localhost:8080/c4ws/services/Areas/MyBackEnd123" />
</wsdl:port>
</wsdl:service>