Moved airline JMS functionality from to sandbox, not ready yet.
This commit is contained in:
@@ -47,11 +47,6 @@
|
|||||||
<groupId>org.springframework.ws</groupId>
|
<groupId>org.springframework.ws</groupId>
|
||||||
<artifactId>spring-ws-security</artifactId>
|
<artifactId>spring-ws-security</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.springframework.ws</groupId>
|
|
||||||
<artifactId>spring-ws-sandbox</artifactId>
|
|
||||||
<version>${project.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<!-- Spring dependencies -->
|
<!-- Spring dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework</groupId>
|
<groupId>org.springframework</groupId>
|
||||||
@@ -164,32 +159,11 @@
|
|||||||
<artifactId>mysql-connector-java</artifactId>
|
<artifactId>mysql-connector-java</artifactId>
|
||||||
<version>5.0.4</version>
|
<version>5.0.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- JMS depdendencies -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>javax.jms</groupId>
|
|
||||||
<artifactId>jms</artifactId>
|
|
||||||
<version>1.1</version>
|
|
||||||
<scope>runtime</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>geronimo-spec</groupId>
|
|
||||||
<artifactId>geronimo-spec-j2ee-management</artifactId>
|
|
||||||
<version>1.0-rc4</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>activemq</groupId>
|
|
||||||
<artifactId>activemq</artifactId>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>concurrent</groupId>
|
|
||||||
<artifactId>concurrent</artifactId>
|
|
||||||
<version>1.3.4</version>
|
|
||||||
</dependency>
|
|
||||||
<!-- Various dependencies -->
|
<!-- Various dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>joda-time</groupId>
|
<groupId>joda-time</groupId>
|
||||||
<artifactId>joda-time</artifactId>
|
<artifactId>joda-time</artifactId>
|
||||||
<version>1.2.1</version>
|
<version>1.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>joda-time</groupId>
|
<groupId>joda-time</groupId>
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
|
||||||
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
|
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
|
||||||
version="2.4">
|
version="2.4">
|
||||||
<display-name>Spring-WS Airline Sample</display-name>
|
<display-name>Spring-WS Airline Sample</display-name>
|
||||||
@@ -20,8 +19,6 @@
|
|||||||
classpath:org/springframework/ws/samples/airline/service/applicationContext.xml
|
classpath:org/springframework/ws/samples/airline/service/applicationContext.xml
|
||||||
<!-- Remove the following line if you want to disable WS-Security and Acegi -->
|
<!-- Remove the following line if you want to disable WS-Security and Acegi -->
|
||||||
classpath:org/springframework/ws/samples/airline/security/applicationContext-security.xml
|
classpath:org/springframework/ws/samples/airline/security/applicationContext-security.xml
|
||||||
<!-- Remove the following line if you want to disable JMS support -->
|
|
||||||
classpath:org/springframework/ws/samples/airline/ws/applicationContext-ws-jms.xml
|
|
||||||
classpath:org/springframework/ws/samples/airline/ws/applicationContext-ws.xml
|
classpath:org/springframework/ws/samples/airline/ws/applicationContext-ws.xml
|
||||||
</param-value>
|
</param-value>
|
||||||
</context-param>
|
</context-param>
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ public class MessageEndpointMessageListenerTest extends TestCase {
|
|||||||
public void invoke(MessageContext messageContext) throws Exception {
|
public void invoke(MessageContext messageContext) throws Exception {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
messageListener.setMessageEndpoint(endpoint);
|
messageListener.setMessageReceiver(endpoint);
|
||||||
|
|
||||||
request.reset();
|
request.reset();
|
||||||
messageListener.onMessage(request, sessionMock);
|
messageListener.onMessage(request, sessionMock);
|
||||||
@@ -104,7 +104,7 @@ public class MessageEndpointMessageListenerTest extends TestCase {
|
|||||||
messageContext.getResponse();
|
messageContext.getResponse();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
messageListener.setMessageEndpoint(endpoint);
|
messageListener.setMessageReceiver(endpoint);
|
||||||
|
|
||||||
messageListener.onMessage(request, sessionMock);
|
messageListener.onMessage(request, sessionMock);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user