diff --git a/.gitignore b/.gitignore index 0f182a0..b2200cd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,13 @@ -*.class +*.ipr +*.iws +*.iml +.clover +activemq-data +*.hsp +atlassian-ide-plugin*.xml -# Package Files # -*.jar -*.war -*.ear +.idea + +/build +/*/build +.gradle diff --git a/tutorial/README.md b/tutorial/README.md new file mode 100644 index 0000000..f073491 --- /dev/null +++ b/tutorial/README.md @@ -0,0 +1,20 @@ +# Spring Web Service Tutorial + +This sample contains the code for the tutorial, which can be found in the +[Spring Web Services] reference documentation. + +## Build and deploy + +1. See the main [README](../README.md) for build instructions. + +2. Access the WSDL at the following URL: + + [http://localhost:8080/tutorial/holiday.wsdl](http://localhost:8080/tutorial/holiday.wsdl) + + +## License + +[Spring Web Services] is released under version 2.0 of the [Apache License]. + +[Spring Web Services]: http://projects.spring.io/spring-ws +[Apache License]: http://www.apache.org/licenses/LICENSE-2.0 \ No newline at end of file diff --git a/tutorial/build.gradle b/tutorial/build.gradle new file mode 100644 index 0000000..29d5061 --- /dev/null +++ b/tutorial/build.gradle @@ -0,0 +1,42 @@ +buildscript { + repositories { + mavenCentral() + } + + dependencies { + classpath 'org.gradle.api.plugins:gradle-tomcat-plugin:0.9.9' + } +} + +apply plugin: 'eclipse' +apply plugin: 'idea' +apply plugin: 'war' +apply plugin: 'tomcat' + +ext.springVersion = '3.2.4.RELEASE' +ext.springWsVersion = '2.1.4.RELEASE' +ext.tomcatVersion = '7.0.42' + +dependencies { + compile("org.springframework.ws:spring-ws-core:$springWsVersion") + compile("org.jdom:jdom:2.0.1") + runtime("jaxen:jaxen:1.1.4") + runtime("log4j:log4j:1.2.16") + + testCompile("junit:junit:4.10") + testCompile("org.easymock:easymock:3.1") + + tomcat("org.apache.tomcat.embed:tomcat-embed-core:$tomcatVersion", + "org.apache.tomcat.embed:tomcat-embed-logging-juli:$tomcatVersion") + tomcat("org.apache.tomcat.embed:tomcat-embed-jasper:$tomcatVersion") { + exclude group: 'org.eclipse.jdt.core.compiler', module: 'ecj' + } +} + +repositories { + maven { url 'http://repo.spring.io/libs-release' } +} + +task wrapper(type: Wrapper) { + gradleVersion = '1.8' +} \ No newline at end of file diff --git a/tutorial/gradle/wrapper/gradle-wrapper.jar b/tutorial/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..667288a Binary files /dev/null and b/tutorial/gradle/wrapper/gradle-wrapper.jar differ diff --git a/tutorial/gradle/wrapper/gradle-wrapper.properties b/tutorial/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..ee84d1f --- /dev/null +++ b/tutorial/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Thu Nov 07 14:43:21 CET 2013 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=http\://services.gradle.org/distributions/gradle-1.8-bin.zip diff --git a/tutorial/gradlew b/tutorial/gradlew new file mode 100755 index 0000000..91a7e26 --- /dev/null +++ b/tutorial/gradlew @@ -0,0 +1,164 @@ +#!/usr/bin/env bash + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS="" + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn ( ) { + echo "$*" +} + +die ( ) { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; +esac + +# For Cygwin, ensure paths are in UNIX format before anything is touched. +if $cygwin ; then + [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` +fi + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >&- +APP_HOME="`pwd -P`" +cd "$SAVED" >&- + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules +function splitJvmOpts() { + JVM_OPTS=("$@") +} +eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS +JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" + +exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" diff --git a/tutorial/gradlew.bat b/tutorial/gradlew.bat new file mode 100644 index 0000000..8a0b282 --- /dev/null +++ b/tutorial/gradlew.bat @@ -0,0 +1,90 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windowz variants + +if not "%OS%" == "Windows_NT" goto win9xME_args +if "%@eval[2+2]" == "4" goto 4NT_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* +goto execute + +:4NT_args +@rem Get arguments from the 4NT Shell from JP Software +set CMD_LINE_ARGS=%$ + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/tutorial/src/main/java/com/mycompany/hr/service/HumanResourceService.java b/tutorial/src/main/java/com/mycompany/hr/service/HumanResourceService.java new file mode 100644 index 0000000..ebc47d8 --- /dev/null +++ b/tutorial/src/main/java/com/mycompany/hr/service/HumanResourceService.java @@ -0,0 +1,38 @@ +/* + * Copyright 2007 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.mycompany.hr.service; + +import java.util.Date; + +/** + * This interface defined the contract for a HR business service. It is used by the {@link + * com.mycompany.hr.ws.HolidayEndpoint}. + * + * @author Arjen Poutsma + */ +public interface HumanResourceService { + + /** + * Books a holiday. + * + * @param startDate the start date of the holiday + * @param endDate the end date of the holiday + * @param name the name of the person taking the holiday + */ + void bookHoliday(Date startDate, Date endDate, String name); + +} diff --git a/tutorial/src/main/java/com/mycompany/hr/service/StubHumanResourceService.java b/tutorial/src/main/java/com/mycompany/hr/service/StubHumanResourceService.java new file mode 100644 index 0000000..3da8b6d --- /dev/null +++ b/tutorial/src/main/java/com/mycompany/hr/service/StubHumanResourceService.java @@ -0,0 +1,39 @@ +/* + * Copyright 2005-2010 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.mycompany.hr.service; + +import java.util.Date; + +import org.springframework.stereotype.Service; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; + +/** + * Simple stub implementation of {@link HumanResourceService}, which does nothing but logging. + * + * @author Arjen Poutsma + */ +@Service +public class StubHumanResourceService implements HumanResourceService { + + private static final Log logger = LogFactory.getLog(StubHumanResourceService.class); + + public void bookHoliday(Date startDate, Date endDate, String name) { + logger.info("Booking holiday for [" + startDate + "-" + endDate + "] for [" + name + "] "); + } +} diff --git a/tutorial/src/main/java/com/mycompany/hr/ws/HolidayEndpoint.java b/tutorial/src/main/java/com/mycompany/hr/ws/HolidayEndpoint.java new file mode 100644 index 0000000..8442a8a --- /dev/null +++ b/tutorial/src/main/java/com/mycompany/hr/ws/HolidayEndpoint.java @@ -0,0 +1,88 @@ +/* + * Copyright 2005-2010 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.mycompany.hr.ws; + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Arrays; +import java.util.Date; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.ws.server.endpoint.annotation.Endpoint; +import org.springframework.ws.server.endpoint.annotation.PayloadRoot; +import org.springframework.ws.server.endpoint.annotation.RequestPayload; + +import com.mycompany.hr.service.HumanResourceService; +import org.jdom2.Element; +import org.jdom2.JDOMException; +import org.jdom2.Namespace; +import org.jdom2.filter.Filters; +import org.jdom2.xpath.XPathExpression; +import org.jdom2.xpath.XPathFactory; + +/** + * This endpoint handles holiday requests. It uses a combination of JDOM and XPath to extract interesting pieces of XML + * from the incoming message, and invoked the injected {@link HumanResourceService} with those. + * + * @author Arjen Poutsma + */ +@Endpoint +public class HolidayEndpoint { + + private static final String NAMESPACE_URI = "http://mycompany.com/hr/schemas"; + + private XPathExpression startDateExpression; + + private XPathExpression endDateExpression; + + private XPathExpression firstNameExpression; + + private XPathExpression lastNameExpression; + + private HumanResourceService humanResourceService; + + @Autowired + public HolidayEndpoint(HumanResourceService humanResourceService) throws JDOMException { + this.humanResourceService = humanResourceService; + Namespace namespace = Namespace.getNamespace("hr", NAMESPACE_URI); + XPathFactory xPathFactory = XPathFactory.instance(); + startDateExpression = xPathFactory.compile("//hr:StartDate", Filters.element(), null, namespace); + endDateExpression = xPathFactory.compile("//hr:EndDate", Filters.element(), null, namespace); + firstNameExpression = xPathFactory.compile("//hr:FirstName", Filters.element(), null, namespace); + lastNameExpression = xPathFactory.compile("//hr:LastName", Filters.element(), null, namespace); + } + + @PayloadRoot(namespace = NAMESPACE_URI, localPart = "HolidayRequest") + public void handleHolidayRequest(@RequestPayload Element holidayRequest) throws Exception { + Date startDate = parseDate(startDateExpression, holidayRequest); + Date endDate = parseDate(endDateExpression, holidayRequest); + String name = firstNameExpression.evaluateFirst(holidayRequest).getText() + " " + lastNameExpression.evaluateFirst(holidayRequest).getText(); + + humanResourceService.bookHoliday(startDate, endDate, name); + } + + private Date parseDate(XPathExpression expression, Element element) throws ParseException { + Element result = expression.evaluateFirst(element); + if (result != null) { + SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); + return dateFormat.parse(result.getText()); + } else { + throw new IllegalArgumentException("Could not evaluate [" + expression + "] on [" + element + "]"); + } + } + +} diff --git a/tutorial/src/main/resources/log4j.properties b/tutorial/src/main/resources/log4j.properties new file mode 100644 index 0000000..1682663 --- /dev/null +++ b/tutorial/src/main/resources/log4j.properties @@ -0,0 +1,24 @@ +# +# Copyright 2007 the original author or authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +log4j.rootLogger=WARN, stdout +log4j.logger.org.springframework.ws=DEBUG +log4j.logger.org.springframework.xml=DEBUG +log4j.logger.com.mycompany.hr=DEBUG + +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%d %p [%c] - %m%n \ No newline at end of file diff --git a/tutorial/src/main/webapp/WEB-INF/hr.wsdl b/tutorial/src/main/webapp/WEB-INF/hr.wsdl new file mode 100644 index 0000000..e21e522 --- /dev/null +++ b/tutorial/src/main/webapp/WEB-INF/hr.wsdl @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tutorial/src/main/webapp/WEB-INF/hr.xsd b/tutorial/src/main/webapp/WEB-INF/hr.xsd new file mode 100644 index 0000000..3cd5b87 --- /dev/null +++ b/tutorial/src/main/webapp/WEB-INF/hr.xsd @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tutorial/src/main/webapp/WEB-INF/spring-ws-servlet.xml b/tutorial/src/main/webapp/WEB-INF/spring-ws-servlet.xml new file mode 100644 index 0000000..b084852 --- /dev/null +++ b/tutorial/src/main/webapp/WEB-INF/spring-ws-servlet.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + diff --git a/tutorial/src/main/webapp/WEB-INF/web.xml b/tutorial/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..408aa8d --- /dev/null +++ b/tutorial/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,38 @@ + + + + + + MyCompany HR Holiday Service + + + spring-ws + org.springframework.ws.transport.http.MessageDispatcherServlet + + transformWsdlLocations + true + + + + + spring-ws + /* + + + diff --git a/tutorial/src/test/java/com/mycompany/hr/ws/HolidayEndpointTest.java b/tutorial/src/test/java/com/mycompany/hr/ws/HolidayEndpointTest.java new file mode 100644 index 0000000..7471790 --- /dev/null +++ b/tutorial/src/test/java/com/mycompany/hr/ws/HolidayEndpointTest.java @@ -0,0 +1,71 @@ +/* + * Copyright 2005-2010 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.mycompany.hr.ws; + +import java.io.InputStream; +import java.util.Calendar; + +import com.mycompany.hr.service.HumanResourceService; +import org.jdom2.Document; +import org.jdom2.input.SAXBuilder; +import org.junit.Before; +import org.junit.Test; + +import static org.easymock.EasyMock.*; + +public class HolidayEndpointTest { + + private Document holidayRequest; + + private HolidayEndpoint endpoint; + + private HumanResourceService serviceMock; + + private Calendar startCalendar; + + private Calendar endCalendar; + + @Before + public void setUp() throws Exception { + serviceMock = createMock(HumanResourceService.class); + SAXBuilder builder = new SAXBuilder(); + InputStream is = getClass().getResourceAsStream("holidayRequest.xml"); + try { + holidayRequest = builder.build(is); + } + finally { + is.close(); + } + endpoint = new HolidayEndpoint(serviceMock); + startCalendar = Calendar.getInstance(); + startCalendar.clear(); + startCalendar.set(2006, Calendar.JULY, 3); + endCalendar = Calendar.getInstance(); + endCalendar.clear(); + endCalendar.set(2006, Calendar.JULY, 7); + } + + @Test + public void handleHolidayRequest() throws Exception { + serviceMock.bookHoliday(startCalendar.getTime(), endCalendar.getTime(), "John Doe"); + replay(serviceMock); + endpoint.handleHolidayRequest(holidayRequest.getRootElement()); + verify(serviceMock); + } + + +} diff --git a/tutorial/src/test/resources/com/mycompany/hr/ws/holidayRequest.xml b/tutorial/src/test/resources/com/mycompany/hr/ws/holidayRequest.xml new file mode 100644 index 0000000..bfa7e79 --- /dev/null +++ b/tutorial/src/test/resources/com/mycompany/hr/ws/holidayRequest.xml @@ -0,0 +1,27 @@ + + + + + 2006-07-03 + 2006-07-07 + + + 42 + John + Doe + + \ No newline at end of file