Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: update to 2.0 jar files.

...

Code Block
commons-logging-1.1.jar
geronimo-activation_1.1_spec-1.0-M1.jar (or Sun's Activation jar)
geronimo-annotation_1.0_spec-1.01.jar (JSR 250)
geronimo-javamail_1.4_spec-1.0-M1.jar (or Sun's JavaMail jar)
geronimo-servlet_2.5_spec-1.1-M1.jar (or Sun's Servlet jar)
jaxbgeronimo-apiws-metadata_2.0_spec-1.1.1.jar (JSR 181)
jaxb-implapi-2.10.2.jar
jaxwsjaxb-apiimpl-2.0.5.jar
jsr181jaxws-api-12.0-MR1.jar
saaj-api-1.3.jar
saaj-impl-1.3.jar
stax-api-1.0.1.jar
wsdl4j-1.6.1.jar
wstx-asl-3.2.01.jar
XmlSchema-1.2.jar

The Spring jars:

Code Block
aopalliance-1.0.jar
spring-core-2.0.4.jar
sprint-beans-2.0.4.jar
spring-context-2.0.4.jar
spring-web-2.0.4.jar

And the CXF jar:

Code Block
cxf-2.0-incubator-RC.jar

Writing your Service

First we'll write our service interface. It will have one operation called "sayHello" which says "Hello" to whoever submits their name.

...