Today I setup CXF, a new services framework project currently
under incubation at Apache. CXF is the merging of the Objectweb Celtix project and the Codehaus XFire project. Its still
early days for the project but if you check out the project goals you can get a good idea of the featureset that CXF will
eventually offer. Today I just wanted to get as far as running a couple of the demos.
Installing:
CXF has external dependencies on JDK 1.5 and Maven 2.x. As there is no official release yet you need the build the project
directly from the subversion repository. If you want to build the samples you will also need ant installed.
1. Install JDK 1.5 (approx 130MB)
The Sun download page has three different distributions, JDK with NetBeans IDE, JDK with JEE and just the straight 1.5 JDK. I
just opted for your basic 1.5 JDK.
2. Install Maven 2.0.4(approx 1.15MB)
The Maven install is just a zip/gz file. You just need to download the zip and unzip it on your system. Then you need to add
the /bin directory to your path.
>cd /x1/maven2.0.4
>wget http://www.apache.org/dist/maven/binaries/maven-2.0.4-bin.tar.gz
>tar -zxvf maven-2.0.4-bin.tar.gz
>export PATH=/x1/maven2.0.4/bin:$PATH
On windows download the .zip version from the link above and use Winzip to unpack the zip. Then set the path as shown here.
>set Path=\bin;%Path%
3. Install subversion windows or
unix (approx 11MB).
The windows link is to the subversion installer gui. This version of subversion uses BerkeleyDB 4.3. If you have any other applications on your system that might use a different version of BerkeleyDB (e.g Orbix), keep this in mind as you may see dll conflicts between the two versions. Once installed you should be able to run ‘svn ?’ from a command prompt and get a list of available svn commands.
4. If necessary install ant
Install is similar to maven, download and unzip to your system. Then setup the paths as shown:
>set ANT_HOME=c:\dev\ant
>set PATH=%PATH%;%ANT_HOME%\bin
>export ANT_HOME=/x1/ant
>export PATH=${PATH}:${ANT_HOME}/bin
Checking out the CXF source code:
To checkout the CXF source run :
>cd /x1/cxf
>svn co http://svn.apache.org/repos/asf/incubator/cxf/trunk
This is a good point to go and make yourself a cup of tea as this and the next step take some time.
Building the source code:
Once the source code is checked out, setup your environment so that java 1.5 is in your path. If you get this wrong you will see an error similar to this when you try and build with a JDK < JDK 1.5.
INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Compilation failure
Failure executing javac, but could not parse the error:
javac: invalid target release: 1.5
I also set things up such that my /bin directory was in the path. To build the project run:
>cd /x1/cxf/trunk
>mvn install
The first time you build CXF, maven will download what seems like an endless amount of dependency jars to a local maven
repository on your machine. On windows this is below <> and on linux this was below <>. I have seen periodic download
failures where maven fails to download a dependency but re-running mvn install tended to work the second time around.
Another thing to watch out for on windows is that there's a fair bit of shuffling going on in the CXF codebase right now.
If the case of a file is renamed, svn on windows cannot detect this and this will leave you scratching your head as to why
the project won't build. If you end up with a compile error that doesn't make sense try a 'mvn clean' and then a 'mvn install' and see if that fixes it.
Building the distribution snapshot:
Once the build completes you need to cd into the /distribution directory and run 'maven install' a second time to build a
distributable version of cxf. This will produce a distribution with a samples directory which includes the 'hello_world' demo
that we want to run.
>cd /x1/cxf/trunk/distribution
>mvn install
Installing the distribution snapshot:
The distribution build produces two distribution files (cxf-2.0-incubator-M1-SNAPSHOT.tar.gz and cxf-2.0-incubator-M1-SNAPSHOT.zip). Take the appropriate distribution and unzip it in a separate directory to the checked out code, for example:
>cp /x1/cxf/trunk/distribution/target/cxf-2.0-incubator-M1-SNAPSHOT.tar.gz /x1/cxf-distro/
>cd /x1/cxf-distro/
>tar -zxvf cxf-2.0-incubator-M1-SNAPSHOT.tar.gz
Now you have something you can test with.
Running the hello world demo:
>cd /x1/cxf-distro/cxf-2.0-incubator-M1-SNAPSHOT/samples/hello_world
>ant
>ant -projecthelp
Buildfile: build.xml
Main targets:
build build demo client and server
client run demo client
client-servlet run demo client hitting servlet
server run demo server
Default target: build
Now we run the server and the client
>ant server&
server:
[java] Starting Server
[java] Server ready...
>ant client
client:
[java] Invoking sayHi...
[java] Server responded with: Bonjour
[java] Invoking greetMe...
[java] Server responded with: Hello dstanley
[java] Invoking greetMe with invalid length string, expecting exception...
[java] Invoking greetMeOneWay...
[java] No response from server as method is OneWay
[java] Invoking pingMe, expecting exception...
[java] Expected exception: PingMeFault has occurred: PingMeFault raised by server
[java] FaultDetail major:2
[java] FaultDetail minor:1
Enabling Logging:
So after running the demo, it looked like everything worked but there was not much to see. The next step for me was to enable
some logging and get a peek at whats happening under the covers.
>cd /x1/cxf-distro/cxf-2.0-incubator-M1-SNAPSHOT/etc
>emacs logging.properties
See here for more details on configurable logging levels. I had to set both '.level' and 'java.util.logging.ConsoleHandler.level' in my logging.properties file to get logging output in my console.
.level= INFO
java.util.logging.ConsoleHandler.level = INFO
I had to set the level to FINEST (very verbose!) to see the message going over the wire. Would be nice if this was logged at
INFO level.
Thats about it for this time. Hope this article helps. If you spot any problems feel free to point them out.