Author: asankha
Date: Mon Jan 28 03:13:20 2008
New Revision: 615852
URL: http://svn.apache.org/viewvc?rev=615852&view=rev
Log:
comment QPID until all artifacts are available publicly
checkin a minor JMS improvement to default to a Queue for destinations
Modified:
webservices/synapse/trunk/java/modules/transports/src/main/java/org/apache/synapse/transport/jms/JMSOutTransportInfo.java
webservices/synapse/trunk/java/pom.xml
Modified:
webservices/synapse/trunk/java/modules/transports/src/main/java/org/apache/synapse/transport/jms/JMSOutTransportInfo.java
URL:
http://svn.apache.org/viewvc/webservices/synapse/trunk/java/modules/transports/src/main/java/org/apache/synapse/transport/jms/JMSOutTransportInfo.java?rev=615852&r1=615851&r2=615852&view=diff
==============================================================================
---
webservices/synapse/trunk/java/modules/transports/src/main/java/org/apache/synapse/transport/jms/JMSOutTransportInfo.java
(original)
+++
webservices/synapse/trunk/java/modules/transports/src/main/java/org/apache/synapse/transport/jms/JMSOutTransportInfo.java
Mon Jan 28 03:13:20 2008
@@ -50,7 +50,7 @@
/** the Destination queue or topic for the outgoing message */
private Destination destination = null;
/** the Destination queue or topic for the outgoing message i.e.
JMSConstants.DESTINATION_TYPE_QUEUE, DESTINATION_TYPE_TOPIC */
- private String destinationType = null;
+ private String destinationType = JMSConstants.DESTINATION_TYPE_QUEUE;
/** the EPR properties when the out-transport info is generated from a
target EPR */
private Hashtable properties = null;
/** the target EPR string where applicable */
@@ -213,7 +213,9 @@
}
public void setDestinationType(String destinationType) {
- this.destinationType = destinationType;
+ if (destinationType != null) {
+ this.destinationType = destinationType;
+ }
}
}
Modified: webservices/synapse/trunk/java/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/synapse/trunk/java/pom.xml?rev=615852&r1=615851&r2=615852&view=diff
==============================================================================
--- webservices/synapse/trunk/java/pom.xml (original)
+++ webservices/synapse/trunk/java/pom.xml Mon Jan 28 03:13:20 2008
@@ -164,6 +164,9 @@
<configuration>
<source>1.5</source>
<target>1.5</target>
+ <excludes>
+ <exclude>**/amqp/*.java</exclude>
+ </excludes>
</configuration>
</plugin>
@@ -673,6 +676,7 @@
<artifactId>commons-vfs</artifactId>
<version>${commons.vfs.version}</version>
</dependency>
+<!--
<dependency>
<groupId>org.apache.qpid</groupId>
<artifactId>qpid-common</artifactId>
@@ -683,6 +687,7 @@
<artifactId>qpid-client</artifactId>
<version>${qpid.version}</version>
</dependency>
+-->
<dependency>
<groupId>de.schlichtherle.io</groupId>
<artifactId>truezip</artifactId>
@@ -1045,17 +1050,6 @@
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
- <repository>
- <id>qpid-private</id>
- <name>Private repo for qpid jars</name>
- <url>http://people.apache.org/~rajith/maven2/</url>
- <releases>
- <updatePolicy>never</updatePolicy>
- </releases>
- <snapshots>
- <updatePolicy>daily</updatePolicy>
- </snapshots>
- </repository>
</repositories>
<modules>
@@ -1131,7 +1125,6 @@
<bsf.version>3.0-beta2</bsf.version>
<groovy.version>1.0</groovy.version>
<servlet-api.version>2.3</servlet-api.version>
-
<qpid.version>1.0-incubating-M3-615355</qpid.version>
</properties>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]