uCosminexus Application Server, Web Service Development Guide

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

35.3.5 Compiling the Web Service Implementation Class

Use the javac command to compile the created Web Service Implementation Class.

The following is an example for compiling the Web Service Implementation Class:

> cd c:\temp\jaxws\works\wsrm\server\
> javac -encoding UTF-8 -cp "%COSMINEXUS_HOME%\jaxws\lib\cjjaxws.jar;%COSMINEXUS_HOME%\CC\client\lib\j2ee-javax.jar;.\WEB-INF\classes" -d .\WEB-INF\classes src\com\example\sample\TestJaxWsImpl.java

On successful termination of the javac command, TestJaxWsImpl.class in the c:\temp\jaxws\works\wsrm\server\WEB-INF\classes\com\example\sample\ directory is overwritten.

For the javac command, see the JDK documentation.