uCosminexus Application Server, Web Service Development Guide

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

35.5.4 Compiling the implementation class for the Web Service client

Use the javac command to compile the created Implementation class for Web Service client.

The following is an example for compiling the implementation class:

> cd c:\temp\jaxws\works\wsrm\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\example\sample\client\TestClient.java

On successful termination of the javac command, TestClient.class is generated in the c:\temp\jaxws\works\wsrm\client\classes\com\example\sample\client\ directory. For the javac command, see the JDK documentation.