uCosminexus Application Server, Web Service Development Guide

[Contents][Glossary][Index][Back][Next]

5.5.3 Compiling the implementation class for the Web Service client

Use the javac command to compile the created Web Service client.

The following is an example of compilation:

> cd c:\temp\jaxws\works\fromjava\client\
> javac -encoding UTF-8 -cp "%COSMINEXUS_HOME%\jaxws\lib\cjjaxws.jar;%COSMINEXUS_HOME%\CC\client\lib\j2ee-javax.jar;%COSMINEXUS_HOME%\jaxp\lib\csmjaxb.jar;.\classes" -d .\classes src\com\sample\client\TestClient.java

If the javac command is terminated successfully, the TestClient.class is generated in the c:\temp\jaxws\works\fromjava\client\classes\com\sample\client\directory.

For the javac command, see the JDK documentation.