Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
commons-logging-1.1.1.jar
geronimo-activation_1.1_spec-1.0-M1.jar (or Sun's Activation jar)
geronimo-annotation_1.0_spec-1.1.jar (JSR 250)
geronimo-javamail_1.4_spec-1.7.0-M11.jar (or Sun's JavaMail jar)
geronimo-servlet_23.50_spec-1.1-M10.jar (or Sun's Servlet jar)
geronimo-ws-metadata_2.0_spec-1.1.1.jar (JSR 181)
jaxb-api-2.01.jar
jaxb-impl-2.01.513.jar
jaxws-api-2.01.jar
neethi-23.0.0.jar
saaj-api-1.3.jar
saaj-impl-1.3.jar
stax-api-1.0.1.jar
stax2-api-3.1.1.jar
wsdl4j-1.6.12.jar
wstxwoodstox-core-asl-34.20.18.jar
XmlSchemaxmlschema-core-12.20.jar
xml-resolver-1.2.jar

...

Code Block
aopalliance-1.0.jar
spring-core-23.0.85.RELEASE.jar
spring-beans-23.0.5.8RELEASE.jar
spring-context-23.0.85.RELEASE.jar
spring-web-23.0.5.8RELEASE.jar

And the CXF jar:

Code Block
cxf-2.14.0.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.

...