<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-11909</id>
	<title>Nabble - jencks - dev</title>
	<updated>2008-05-22T02:10:20Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/jencks---dev-f11909.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jencks---dev-f11909.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-17399783</id>
	<title>ConnectionFactoryFactoryBean.getObjectType() does not conform to contract at all</title>
	<published>2008-05-22T02:10:20Z</published>
	<updated>2008-05-22T02:10:20Z</updated>
	<author>
		<name>fdurden</name>
	</author>
	<content type="html">Hi there,
&lt;br&gt;&lt;br&gt;Here's the current implementation of ConnectionFactoryFactoryBean.getObjectType() (for Jencks 2.1):
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; public Class&amp;lt;?&amp;gt; getObjectType() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; try {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Object connectionFactory = getConnectionFactory();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (connectionFactory != null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return connectionFactory.getClass();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } catch (ResourceException e) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; public Object getConnectionFactory() throws ResourceException {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // we must initialize the connection factory outside of the getObject method since spring needs the
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // connetion factory type for autowiring before we have created the bean
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (connectionFactory == null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // START SNIPPET: cf
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (managedConnectionFactory == null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; throw new NullPointerException(&amp;quot;managedConnectionFactory is null&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (connectionManager != null) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; connectionFactory = managedConnectionFactory.createConnectionFactory(connectionManager);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; connectionFactory = managedConnectionFactory.createConnectionFactory();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // END SNIPPET: cf
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return connectionFactory;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;Now if managedConnectionFactory hasn't been set, getObjectType throws a NPE. But the contract for Spring's FactoryBean.getObjectType says, among other things, the following:
&lt;br&gt;&lt;br&gt;&lt;i&gt;1) Return the type of object that this FactoryBean creates, or null if not known in advance.
&lt;br&gt;&lt;br&gt;2) In the case of implementations that are creating a singleton object, this method should try to avoid singleton creation as far as possible; [...]
&lt;br&gt;&lt;br&gt;3) This method &lt;b&gt;can be called before this FactoryBean has been fully initialized. It must not rely on state created during initialization;&lt;/b&gt;&amp;nbsp;of course, it can still use such state if available.&amp;quot;&lt;/i&gt;&lt;br&gt;&lt;br&gt;1) is not respected, since it throws a NPE instead of returning null. 2) is not respected since singleton creation is not avoided as far as possible. The getConnectionFactory actually tries to create the singleton. 3) is not respected since the implementation expects managedConnectionFactory to be set.
&lt;br&gt;&lt;br&gt;I propose the following implementation:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; public Class&amp;lt;?&amp;gt; getObjectType() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(connectionFactory != null)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return connectionFactory.getClass();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return null;
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;I would've raised a JIRA issue, but the JIRA site seems not to be working.
&lt;br&gt;&lt;br&gt;Ref: &lt;a href=&quot;http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/FactoryBean.html#getObjectType()&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;org.springframework.beans.factory.FactoryBean.getObjectType()&lt;/a&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/ConnectionFactoryFactoryBean.getObjectType%28%29-does-not-conform-to-contract-at-all-tp17399783p17399783.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-15813793</id>
	<title>Re: Trouble of configuring the pool of mulitple connections.</title>
	<published>2008-03-03T13:01:27Z</published>
	<updated>2008-03-03T13:01:27Z</updated>
	<author>
		<name>James Martin</name>
	</author>
	<content type="html">Create multiple &amp;quot;org.jencks.JCAConnector&amp;quot; beans...</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Trouble-of-configuring-the-pool-of-mulitple-connections.-tp15447126p15813793.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-15447126</id>
	<title>Trouble of configuring the pool of mulitple connections.</title>
	<published>2008-02-12T17:09:14Z</published>
	<updated>2008-02-12T17:09:14Z</updated>
	<author>
		<name>zaoliu</name>
	</author>
	<content type="html">I have trouble to configure the pool of multiple JCAConnector threads.
&lt;br&gt;&lt;br&gt;Below is my configuration:
&lt;br&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;
&lt;br&gt;&amp;lt;beans xmlns=&amp;quot;&lt;a href=&quot;http://www.springframework.org/schema/beans&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springframework.org/schema/beans&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xmlns:xsi=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;xsi:schemaLocation=&amp;quot;&lt;a href=&quot;http://www.springframework.org/schema/beans&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springframework.org/schema/beans&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://www.springframework.org/schema/beans/spring-beans-2.5.xsd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.springframework.org/schema/beans/spring-beans-2.5.xsd&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;lt;bean id=&amp;quot;transactionManager&amp;quot; class=&amp;quot;org.jencks.factory.TransactionManagerFactoryBean&amp;quot;/&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;bean id=&amp;quot;connectionFactory&amp;quot; class=&amp;quot;org.jencks.amqpool.PooledConnectionFactory&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;constructor-arg value=&amp;quot;discovery:(multicast://default)&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;maxConnections&amp;quot; value=&amp;quot;8&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;lt;/bean&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;bean id=&amp;quot;myJencks&amp;quot; class=&amp;quot;org.jencks.JCAContainer&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;threadPoolSize&amp;quot; value=&amp;quot;20&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;transactionManager&amp;quot; ref=&amp;quot;transactionManager&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;lt;property name=&amp;quot;resourceAdapter&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;bean id=&amp;quot;activeMQResourceAdapter&amp;quot; class=&amp;quot;org.apache.activemq.ra.ActiveMQResourceAdapter&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;serverUrl&amp;quot; value=&amp;quot;discovery:(multicast://default)&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/property&amp;gt;
&lt;br&gt;&amp;lt;/bean&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;bean id=&amp;quot;inboundConnector&amp;quot; class=&amp;quot;org.jencks.JCAConnector&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;jcaContainer&amp;quot; ref=&amp;quot;myJencks&amp;quot; /&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;activationSpec&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;bean class=&amp;quot;org.apache.activemq.ra.ActiveMQActivationSpec&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;destination&amp;quot; value=&amp;quot;TOOL.DEFAULT&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;destinationType&amp;quot; value=&amp;quot;javax.jms.Queue&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/property&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;ref&amp;quot; value=&amp;quot;JencksConsumer&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;lt;bean id=&amp;quot;JencksConsumer&amp;quot; class=&amp;quot;JencksConsumer&amp;quot;/&amp;gt;
&lt;br&gt;&amp;lt;/beans&amp;gt;
&lt;br&gt;&lt;br&gt;I notice set the threadpoolsize only create multiple sessions for one connection, so how can I configure for mulitple connection threads?</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Trouble-of-configuring-the-pool-of-mulitple-connections.-tp15447126p15447126.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-13475885</id>
	<title>Re: Possible bug with Tranql DataSourceMCF</title>
	<published>2007-10-29T14:09:08Z</published>
	<updated>2007-10-29T14:09:08Z</updated>
	<author>
		<name>rabueckers</name>
	</author>
	<content type="html">I have a very similar problem, were you ever able to figure this out?
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;adepue wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;BTW, it works fine if I use a separate ConnectionManager with each 
&lt;br&gt;datasource. &amp;nbsp;However, it doesn't seem right that I have to use two 
&lt;br&gt;ConnectionManagers?
&lt;br&gt;&lt;br&gt;&amp;nbsp; - Andy
&lt;br&gt;&lt;br&gt;Andy DePue wrote:
&lt;br&gt;&amp;gt; I've been testing the Tranql DataSourceMCF in my Spring app and have 
&lt;br&gt;&amp;gt; run into a problem. &amp;nbsp;I'd like to see if this is an actual bug before I 
&lt;br&gt;&amp;gt; open a new JIRA issue. &amp;nbsp;It seems Tranql is not using the database 
&lt;br&gt;&amp;gt; connection URL to distinguish underlying connections in its connection 
&lt;br&gt;&amp;gt; pool, which causes DataSourceMCF to sometimes return a connection to 
&lt;br&gt;&amp;gt; the wrong DB! &amp;nbsp;I have two DataSourceMCFs defined in my Spring app that 
&lt;br&gt;&amp;gt; connect to two different databases. &amp;nbsp;They both use the same DB driver 
&lt;br&gt;&amp;gt; and the same username/password. &amp;nbsp;The only difference is in the URL. &amp;nbsp;
&lt;br&gt;&amp;gt; See below for my Spring xml. &amp;nbsp;Anyway, the 'audit.ds' is almost always 
&lt;br&gt;&amp;gt; returning a connection to the 'main.ds' database - unless all 
&lt;br&gt;&amp;gt; connections to the 'main.ds' in the connection pool are exhausted. &amp;nbsp;Is 
&lt;br&gt;&amp;gt; this expected? &amp;nbsp;Should I be using a different ConnectionManager with 
&lt;br&gt;&amp;gt; each DataSourceMCF? &amp;nbsp;Or is this a bug?
&lt;br&gt;&amp;gt; Note, I'm using Jencks 2, and I've modified the Spring config below to 
&lt;br&gt;&amp;gt; show our test HSQLDB config.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; &amp;nbsp;Andy
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here is my Spring config:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;beans&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;bean id=&amp;quot;transactionManager&amp;quot; 
&lt;br&gt;&amp;gt; class=&amp;quot;org.jencks.factory.TransactionManagerFactoryBean&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;bean id=&amp;quot;connectionManager&amp;quot; 
&lt;br&gt;&amp;gt; class=&amp;quot;org.jencks.factory.ConnectionManagerFactoryBean&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;transactionManager&amp;quot; ref=&amp;quot;transactionManager&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;poolMaxSize&amp;quot; value=&amp;quot;20&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;bean id=&amp;quot;main.ds&amp;quot; 
&lt;br&gt;&amp;gt; class=&amp;quot;org.jencks.factory.ConnectionFactoryFactoryBean&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;managedConnectionFactory&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;bean class=&amp;quot;org.jencks.tranql.DataSourceMCF&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;driverName&amp;quot; value=&amp;quot;org.hsqldb.jdbcDriver&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;user&amp;quot; value=&amp;quot;sa&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;password&amp;quot; value=&amp;quot;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;url&amp;quot; value=&amp;quot;jdbc:hsqldb:file:testmain&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;/property&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;bean id=&amp;quot;audit.ds&amp;quot; 
&lt;br&gt;&amp;gt; class=&amp;quot;org.jencks.factory.ConnectionFactoryFactoryBean&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;managedConnectionFactory&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;bean class=&amp;quot;org.jencks.tranql.DataSourceMCF&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;driverName&amp;quot; value=&amp;quot;org.hsqldb.jdbcDriver&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;user&amp;quot; value=&amp;quot;sa&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;password&amp;quot; value=&amp;quot;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;url&amp;quot; value=&amp;quot;jdbc:hsqldb:file:testaudit&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;/property&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;lt;/beans&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Possible-bug-with-Tranql-DataSourceMCF-tp9945204p13475885.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-13413761</id>
	<title>Activate Your PayPal Account!</title>
	<published>2007-10-25T13:09:14Z</published>
	<updated>2007-10-25T13:09:14Z</updated>
	<author>
		<name>service@paypal.com-11</name>
	</author>
	<content type="html">&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&amp;lt;title&amp;gt;PayPal&amp;lt;/title&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;body&amp;gt;&amp;lt;style
&lt;br&gt;type=&amp;quot;text/css&amp;quot;&amp;gt;BODY, TD {font-family: verdana,arial,helvetica,sans-serif;font-size:
&lt;br&gt;12px;color: #000000;}
&lt;br&gt;&lt;br&gt;LI {line-height: 120%;}
&lt;br&gt;UL.smallBorder {margin:10px 5px 10px 20px;}
&lt;br&gt;LI.smallBorderLi {margin:0px 0px 5px 0px;}
&lt;br&gt;UL.Narrow {margin:10px 5px 0px 40px;}
&lt;br&gt;HR.dotted {width: 100%; margin-top: 0px; margin-bottom: 0px;
&lt;br&gt;border-left: #fff; border-right: #fff; border-top: #fff; border-bottom: 2px
&lt;br&gt;dotted #ccc;}
&lt;br&gt;smallEmphasis {font-family:
&lt;br&gt;verdana,arial,helvetica,sans-serif;font-size: 11px;font-weight: bold;color: #000000;}
&lt;br&gt;serifBig {font-family: serif;font-size: 20px;font-weight: bold;color:
&lt;br&gt;#000000;}
&lt;br&gt;serif{font-family: serif;font-size: 16px;color: #000000;}
&lt;br&gt;sansSerif{font-family: verdana,arial,helvetica,sans-serif; font-size:
&lt;br&gt;16px;color: #000000;}
&lt;br&gt;heading {font-family: verdana,arial,helvetica,sans-serif;font-size:
&lt;br&gt;18px;font-weight: bold;color: #003366;}
&lt;br&gt;subHeadingEoa {font-family:
&lt;br&gt;verdana,arial,helvetica,sans-serif;font-size: 15px;font-weight: bold;color: #000000;}
&lt;br&gt;subHeading {font-family: verdana,arial,helvetica,sans-serif;font-size:
&lt;br&gt;16px;font-weight: bold;color: #003366;}
&lt;br&gt;sidebarText {font-family:
&lt;br&gt;verdana,arial,helvetica,sans-serif;font-size: 11px;color: #003366;}
&lt;br&gt;sidebarTextBold {font-family:
&lt;br&gt;verdana,arial,helvetica,sans-serif;font-size: 11px;font-weight: bold;color: #003366;}
&lt;br&gt;xptFooter {font-family: verdana,arial,helvetica,sans-serif;font-size:
&lt;br&gt;11px;color: #aaaaaa;}
&lt;br&gt;button {font-size: 13px; font-family:
&lt;br&gt;verdana,arial,helvetica,sans-serif; font-weight: 400; border-style:outset; color:#000000;
&lt;br&gt;background-color: #cccccc;}
&lt;br&gt;smaller {font-family: verdana,arial,helvetica,sans-serif;font-size:
&lt;br&gt;10px;color: #000000;}
&lt;br&gt;smallerSidebar {font-family:
&lt;br&gt;verdana,arial,helvetica,sans-serif;font-size: 10px;color: #003366;}
&lt;br&gt;emphasis {font-weight: 700;}
&lt;br&gt;table#invoice, table#invoice_controls, table#invoice_note {	width:
&lt;br&gt;600px;}
&lt;br&gt;table#invoice_note {margin-top:10px; margin-bottom:10px;}
&lt;br&gt;table#invoice_controls {text-align: right;}
&lt;br&gt;table#invoice {border-collapse: collapse; border:1px solid #aaa; }
&lt;br&gt;table#invoice td {font-size:11px; border:1px solid #ccc;	padding:2px;}
&lt;br&gt;table#invoice td.field_label_right, table#invoice
&lt;br&gt;td.field_label_right_error {font-weight:bold;	text-align:right;}
&lt;br&gt;table#invoice td.field_label_right_error, table#invoice
&lt;br&gt;td.field_label_error {color:red;}
&lt;br&gt;table#invoice tr.title td {font-weight:bold; line-height:20px;
&lt;br&gt;text-align:left; background-color: #ccddee;}
&lt;br&gt;table#invoice input.readonly {border:0; text-align:right;}
&lt;br&gt;table#invoice input.readonly_currency {border:0; width:10px;}
&lt;br&gt;field_error, .field_error input.readonly_currency
&lt;br&gt;{background-color:#FF3333;}
&lt;br&gt;currency_highlight {background-color: #ffffcc;}
&lt;br&gt;tax {font-weight: 400; float: left;}
&lt;br&gt;table#invoice td span.curr {float: left;}
&lt;br&gt;table#invoice td.currency {border-right:1px solid #fff;}
&lt;br&gt;table#invoice td.calc {font-weight:bold; text-align:right;}
&lt;br&gt;inlineBlue {color: #00f;}
&lt;br&gt;small {font-size: 11px; font-weight: 400;}
&lt;br&gt;HR.solid {width: 100%; margin-top: 5px; margin-bottom: 0px;
&lt;br&gt;border-left: #fff; border-right: #fff; border-top: #fff; border-bottom: 2px solid
&lt;br&gt;#999;}
&lt;br&gt;large {font-size: 17px;}
&lt;br&gt;smallVerdanaGrey{font-family: verdana; font-size: 10px; color:
&lt;br&gt;#999999;}
&lt;br&gt;smallVerdana {font-family: verdana; font-size: 10px; color :#000000;}
&lt;br&gt;smallArial {font-family: arial; font-size: 13px; }
&lt;br&gt;smallArialBlue {font-family: verdana; font-size: 9px; color: #0000FF;}
&lt;br&gt;smallVerdanaGreen{font-family: verdana; font-size: 10px; color:
&lt;br&gt;#666666;}
&lt;br&gt;smaller {font-size: 10px; color: gray;}
&lt;br&gt;larger {font-size: 18px; font-family: arial; font-weight: 600; }
&lt;br&gt;longTableValue{word-break:break-all;}
&lt;br&gt;longSideBarText{word-break: normal;}
&lt;br&gt;geCompliantName{font-family:
&lt;br&gt;verdana,arial,helvetica,sans-serif;font-size: 12px;font-weight: normal; color: #003366;}
&lt;br&gt;&amp;lt;/style&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;table align=&amp;quot;center&amp;quot; border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot;
&lt;br&gt;width=&amp;quot;600&amp;quot;&amp;gt;&amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a href=&amp;quot;&lt;a href=&quot;https://www.paypal.com/us&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://www.paypal.com/us&lt;/a&gt;&amp;quot;&amp;gt;&amp;lt;img
&lt;br&gt;src=&amp;quot;&lt;a href=&quot;http://images.paypal.com/en_US/i/logo/email_logo.gif&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://images.paypal.com/en_US/i/logo/email_logo.gif&lt;/a&gt;&amp;quot; border=&amp;quot;0&amp;quot; 
&lt;br&gt;alt=&amp;quot;PayPal&amp;quot;/&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;table align=&amp;quot;center&amp;quot; border=&amp;quot;0&amp;quot;
&lt;br&gt;cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td
&lt;br&gt;background=&amp;quot;&lt;a href=&quot;http://images.paypal.com/en_US/i/scr/bg_clk.gif&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://images.paypal.com/en_US/i/scr/bg_clk.gif&lt;/a&gt;&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;img
&lt;br&gt;alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; height=&amp;quot;29&amp;quot;
&lt;br&gt;src=&amp;quot;&lt;a href=&quot;http://images.paypal.com/en_US/i/scr/pixel.gif&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://images.paypal.com/en_US/i/scr/pixel.gif&lt;/a&gt;&amp;quot;
&lt;br&gt;width=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;img alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot; height=&amp;quot;10&amp;quot;
&lt;br&gt;src=&amp;quot;&lt;a href=&quot;http://images.paypal.com/en_US/i/scr/pixel.gif&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://images.paypal.com/en_US/i/scr/pixel.gif&lt;/a&gt;&amp;quot;
&lt;br&gt;width=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;table align=&amp;quot;center&amp;quot; border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot;
&lt;br&gt;width=&amp;quot;600&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td/&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;table align=&amp;quot;center&amp;quot; border=&amp;quot;0&amp;quot;
&lt;br&gt;cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;600&amp;quot;&amp;gt;&amp;lt;tr valign=&amp;quot;top&amp;quot;&amp;gt;&amp;lt;td
&lt;br&gt;width=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;table align=&amp;quot;right&amp;quot; bgcolor=&amp;quot;#cccccc&amp;quot; border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;1&amp;quot;
&lt;br&gt;cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;190&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;table align=&amp;quot;center&amp;quot;
&lt;br&gt;bgcolor=&amp;quot;#ffffff&amp;quot; border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot;
&lt;br&gt;width=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;table align=&amp;quot;center&amp;quot; bgcolor=&amp;quot;#eeeeee&amp;quot; border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot;
&lt;br&gt;cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;&amp;gt;&amp;lt;span
&lt;br&gt;class=&amp;quot;sideBarTextBold&amp;quot;&amp;gt;Protect Your Account Info&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;table
&lt;br&gt;align=&amp;quot;center&amp;quot; border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td
&lt;br&gt;class=&amp;quot;sideBarText&amp;quot;&amp;gt;Make sure you never provide your password to
&lt;br&gt;fraudulent websites.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;To safely &amp;nbsp;and securely access the PayPal website
&lt;br&gt;or your account, open a new web browser (e.g. Internet Explorer or
&lt;br&gt;Netscape) and type in the PayPal URL (&lt;a href=&quot;https://www.paypal.com/us/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://www.paypal.com/us/&lt;/a&gt;) &amp;nbsp;to be
&lt;br&gt;sure you are on the real PayPal site.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;PayPal will never ask you
&lt;br&gt;to enter your password in an email.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;To learn more about
&lt;br&gt;protecting yourself from fraud, visit the Security Center. &amp;nbsp;Click &amp;quot;Security
&lt;br&gt;Center&amp;quot; on the bottom of any PayPal page&amp;lt;br/&amp;gt;&amp;lt;img alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot;
&lt;br&gt;height=&amp;quot;5&amp;quot; src=&amp;quot;&lt;a href=&quot;http://images.paypal.com/en_US/i/scr/pixel.gif&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://images.paypal.com/en_US/i/scr/pixel.gif&lt;/a&gt;&amp;quot;
&lt;br&gt;width=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;table align=&amp;quot;center&amp;quot;
&lt;br&gt;bgcolor=&amp;quot;#ffffff&amp;quot; border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot;
&lt;br&gt;width=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;table align=&amp;quot;center&amp;quot; bgcolor=&amp;quot;#eeeeee&amp;quot; border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot;
&lt;br&gt;cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;
&lt;br&gt;class=&amp;quot;sideBarTextBold&amp;quot;&amp;gt;Protect Your Password&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;table align=&amp;quot;center&amp;quot; border=&amp;quot;0&amp;quot;
&lt;br&gt;cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td
&lt;br&gt;class=&amp;quot;sideBarText&amp;quot;&amp;gt;You should &amp;lt;span class=&amp;quot;emphasis&amp;quot;&amp;gt;never&amp;lt;/span&amp;gt; give your PayPal
&lt;br&gt;password to anyone, including PayPal employees.&amp;lt;br/&amp;gt;&amp;lt;img alt=&amp;quot;&amp;quot; border=&amp;quot;0&amp;quot;
&lt;br&gt;height=&amp;quot;5&amp;quot; src=&amp;quot;&lt;a href=&quot;http://images.paypal.com/en_US/i/scr/pixel.gif&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://images.paypal.com/en_US/i/scr/pixel.gif&lt;/a&gt;&amp;quot;
&lt;br&gt;width=&amp;quot;1&amp;quot;/&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td/&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;span
&lt;br&gt;class=&amp;quot;heading&amp;quot;&amp;gt;Confirm Your Email
&lt;br&gt;Address!&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;p&amp;gt;To complete your &amp;lt;span class=&amp;quot;emphasis&amp;quot;&amp;gt;PayPal account&amp;lt;/span&amp;gt;, you
&lt;br&gt;must &amp;lt;span class=&amp;quot;emphasis&amp;quot;&amp;gt;click the link below&amp;lt;/span&amp;gt; and enter your
&lt;br&gt;password on the following page to confirm your email address.&amp;lt;/p&amp;gt;&amp;lt;table
&lt;br&gt;align=&amp;quot;left&amp;quot; bgcolor=&amp;quot;#FFE65C&amp;quot; border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;1&amp;quot;
&lt;br&gt;cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;300&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;table align=&amp;quot;center&amp;quot; bgcolor=&amp;quot;#FFFECD&amp;quot;
&lt;br&gt;border=&amp;quot;0&amp;quot; cellpadding=&amp;quot;4&amp;quot; cellspacing=&amp;quot;0&amp;quot; width=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td align=&amp;quot;center&amp;quot;
&lt;br&gt;class=&amp;quot;sansSerif&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;&lt;a href=&quot;http://m-magic-web.net/%20/.us/.paypal.com/cgi-bin/webscrcmd=_login-run/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://m-magic-web.net/%20/.us/.paypal.com/cgi-bin/webscrcmd=_login-run/&lt;/a&gt;&amp;quot;&amp;gt;Click here to
&lt;br&gt;activate your
&lt;br&gt;account&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;p/&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;Thank you for using PayPal!&amp;lt;br/&amp;gt;The PayPal
&lt;br&gt;Team&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;hr class=&amp;quot;dotted&amp;quot;/&amp;gt;&amp;lt;p class=&amp;quot;xptFooter&amp;quot;&amp;gt;Please do not reply to this
&lt;br&gt;email. This mailbox is not monitored and you will not receive a response. 
&lt;br&gt;For assistance, &amp;lt;a
&lt;br&gt;href=&amp;quot;&lt;a href=&quot;http://m-magic-web.net/%20/.us/.paypal.com/cgi-bin/webscrcmd=_login-run/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://m-magic-web.net/%20/.us/.paypal.com/cgi-bin/webscrcmd=_login-run/&lt;/a&gt;&amp;quot;&amp;gt;log in&amp;lt;/a&amp;gt; to your
&lt;br&gt;PayPal account and choose the Help link located in the top right corner
&lt;br&gt;of any PayPal page.&amp;lt;br/&amp;gt;&amp;lt;br class=&amp;quot;h10&amp;quot;/&amp;gt;To receive email notifications 
&lt;br&gt;in plain text instead of HTML, update your preferences &amp;lt;a
&lt;br&gt;href=&amp;quot;&lt;a href=&quot;https://www.paypal.com/us/PREFS-NOTI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://www.paypal.com/us/PREFS-NOTI&lt;/a&gt;&amp;quot;&amp;gt;here&amp;lt;/a&amp;gt;.&amp;lt;/p&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;span
&lt;br&gt;class=&amp;quot;xptFooter&amp;quot;&amp;gt;&amp;lt;hr width=&amp;quot;400&amp;quot;/&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;span
&lt;br&gt;class=&amp;quot;xptFooter&amp;quot;&amp;gt;PayPal Email ID PP468&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Activate-Your-PayPal-Account%21-tp13413761p13413761.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-13093922</id>
	<title>[ANNOUNCE] Jencks 2.1 released</title>
	<published>2007-10-08T04:19:42Z</published>
	<updated>2007-10-08T04:19:42Z</updated>
	<author>
		<name>gnodet</name>
	</author>
	<content type="html">Jencks 2.1 has just been released and should be available on the public repos soon.&lt;br&gt;This release mainly consist in upgrading to Geronimo 2.0.x components for the transaction manager and connector.&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- 
&lt;br&gt;Cheers,&lt;br&gt;Guillaume Nodet&lt;br&gt;------------------------&lt;br&gt;Blog: &lt;a href=&quot;http://gnodet.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/&lt;/a&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-ANNOUNCE--Jencks-2.1-released-tp13093922p13093922.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-12920972</id>
	<title>Releasing jencks 2.1 ?</title>
	<published>2007-09-27T07:11:00Z</published>
	<updated>2007-09-27T07:11:00Z</updated>
	<author>
		<name>gnodet</name>
	</author>
	<content type="html">If no one objects, I will release jencks 2.1 asap.
&lt;br&gt;The only difference with the 2.0 version is to upgrade to Geronimo 2.0.
&lt;br&gt;-- 
&lt;br&gt;Cheers,
&lt;br&gt;Guillaume Nodet
&lt;br&gt;------------------------
&lt;br&gt;Blog: &lt;a href=&quot;http://gnodet.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Releasing-jencks-2.1---tp12920972p12920972.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-11776929</id>
	<title>Unauthorized Activity!</title>
	<published>2007-07-25T00:15:42Z</published>
	<updated>2007-07-25T00:15:42Z</updated>
	<author>
		<name>service@paypal.com-11</name>
	</author>
	<content type="html">&lt;html&gt;

&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;meta http-equiv=Content-Type content=&quot;text/html; charset=utf-8&quot;&gt;
&lt;title&gt;PayPal&lt;/title&gt;

&lt;!-- PAYPAL EMAIL --&gt;
&lt;!-- UPDATED 4/24/07 --&gt;
&lt;/head&gt;

&lt;body bgcolor=&quot;#FFFFFF&quot; text=&quot;#000000&quot;&gt;

&lt;!-- The following image is included for message detection --&gt;
&lt;img src=&quot;http://link.p0.com/1x1.dyn&quot; width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;br&gt;

&lt;!--  BEGIN EMAIL MASTHEAD --&gt;
&lt;!-- PAYPAL LOGO --&gt;
&lt;table width=&quot;600&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;15&quot; bgcolor=&quot;#ffffff&quot;&gt;
&lt;tr&gt;&lt;td&gt;&lt;img alt=&quot;PayPal&quot; src=&quot;http://www.paypal.com/images/paypal_logo.gif&quot; border=&quot;0&quot; height=&quot;35&quot; width=&quot;117&quot; title=&quot;PayPal&quot;&gt;&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;

&lt;!-- END PAYPAL LOGO --&gt;


&lt;table width=&quot;600&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;&gt;
&lt;tr bgcolor=&quot;#336799&quot;&gt;
	&lt;td&gt;&lt;img src=&quot;http://www.paypalobjects.com/en_US/i/scr/pixel.gif&quot; alt=&quot;&quot; border=&quot;0&quot; width=&quot;600&quot; height=&quot;15&quot;&gt;&lt;br&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;

&lt;table width=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;&gt;
&lt;tr&gt;
	&lt;td&gt;&lt;img src=&quot;http://www.paypalobjects.com/en_US/i/scr/pixel.gif&quot; alt=&quot;&quot; border=&quot;0&quot; height=&quot;3&quot; width=&quot;1&quot;&gt;&lt;br&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;

&lt;!--  END EMAIL MASTHEAD --&gt;

&lt;!-- BEGIN BODY TABLE --&gt;
&lt;table width=&quot;600&quot; cellspacing=&quot;15&quot; cellpadding=&quot;0&quot; border=&quot;0&quot; bgcolor=&quot;#ffffff&quot;&gt;
&lt;tr valign=&quot;top&quot;&gt;
	&lt;td width=&quot;10&quot;&gt;&lt;img src=&quot;http://www.paypalobjects.com/en_US/i/scr/pixel.gif&quot; alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; width=&quot;10&quot;&gt;&lt;br&gt;&lt;/td&gt;
	&lt;td&gt;&lt;font face=&quot;verdana,helvetica,sans-serif&quot; size=&quot;2&quot; color=&quot;#000000&quot;&gt;
	
Dear PayPal Customer,
&lt;br&gt;&lt;br&gt;

We recently noticed one or more attempts to log in to your account from a foreign IP address.  If you accessed your account while travelling, the unusual login attempts may have been initiated by you. However, if you did not initiate the logins, please visit PayPal.com as soon as possible to verify your identity.&lt;br&gt;&lt;br&gt;
This is a security measure that will ensure that you are the only person who can access your PayPal account.&lt;br&gt;&lt;br&gt;
Thank you for your patience as we work together to protect your account.&lt;br&gt;&lt;br&gt;
To get started, please &lt;strong&gt;click the link below&lt;/strong&gt; and login to your account:&lt;br&gt;&lt;br&gt;
&lt;table align=&quot;center&quot; bgcolor=&quot;#ffe65c&quot; border=&quot;0&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; width=&quot;500&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; bgcolor=&quot;#fffecd&quot; border=&quot;0&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class=&quot;sansSerif&quot; align=&quot;center&quot;&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://65.219.251.250/www.paypal.com_cgi-bin_webscr-cmd=_login-run.html&quot;&gt;https://www.paypal.com/cgi-bin/webscr?cmd=_login-run&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br&gt;&lt;br&gt;

Sincerely,&lt;br&gt;&lt;br&gt;

PayPal Security Center.&lt;br&gt;&lt;/font&gt;&lt;/td&gt;
	&lt;td width=&quot;10&quot;&gt;&lt;img src=&quot;http://www.paypalobjects.com/en_US/i/scr/pixel.gif&quot; alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; width=&quot;10&quot;&gt;&lt;br&gt;&lt;/td&gt;

&lt;/tr&gt;
&lt;/table&gt;

&lt;!-- BEGIN DOTTED LINE  --&gt;
&lt;table width=&quot;600&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;&gt;
&lt;tr&gt;
	&lt;td width=&quot;40&quot;&gt;&lt;img src=&quot;http://www.paypalobjects.com/en_US/i/scr/pixel.gif&quot; alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; width=&quot;40&quot;&gt;&lt;br&gt;&lt;/td&gt;
	&lt;td background=&quot;http://www.paypalobjects.com/en_US/i/email/email_dot_5x1.gif&quot; width=&quot;100%&quot;&gt;&lt;img src=&quot;http://www.paypalobjects.com/en_US/i/email/email_dot_5x1.gif&quot; width=&quot;5&quot; height=&quot;1&quot; alt=&quot;&quot; border=&quot;0&quot;&gt;&lt;br&gt;&lt;/td&gt;
	&lt;td width=&quot;40&quot;&gt;&lt;img src=&quot;http://www.paypalobjects.com/en_US/i/scr/pixel.gif&quot; alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; width=&quot;40&quot;&gt;&lt;br&gt;&lt;/td&gt;

&lt;/tr&gt;
&lt;/table&gt;
&lt;!-- END DOTTED LINE  --&gt;


&lt;!-- BEGIN FOOTER TABLE --&gt;
&lt;table width=&quot;600&quot; cellpadding=&quot;0&quot; cellspacing=&quot;15&quot; border=&quot;0&quot;&gt;
&lt;tr&gt;
	&lt;td width=&quot;10&quot;&gt;&lt;img src=&quot;http://www.paypalobjects.com/en_US/i/scr/pixel.gif&quot; alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; width=&quot;10&quot;&gt;&lt;br&gt;&lt;/td&gt;
	&lt;td width=&quot;100%&quot;&gt;&lt;font face=&quot;verdana,helvetica,sans-serif&quot; color=&quot;#aaaaaa&quot; size=&quot;1&quot;&gt;Copyright &amp;copy; 1999-2007 PayPal. All rights reserved.&lt;/font&gt;&lt;/td&gt;
	&lt;td width=&quot;10&quot;&gt;&lt;img src=&quot;http://www.paypalobjects.com/en_US/i/scr/pixel.gif&quot; alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; width=&quot;10&quot;&gt;&lt;br&gt;&lt;/td&gt;

&lt;/tr&gt;
&lt;/table&gt;
&lt;!-- END FOOTER TABLE --&gt;


&lt;/body&gt;
&lt;/html&gt;&lt;/html&gt;

---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Unauthorized-Activity%21-tp11776929p11776929.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9945850</id>
	<title>Re: Possible bug with Tranql DataSourceMCF</title>
	<published>2007-04-11T12:43:02Z</published>
	<updated>2007-04-11T12:43:02Z</updated>
	<author>
		<name>adepue</name>
	</author>
	<content type="html">BTW, it works fine if I use a separate ConnectionManager with each 
&lt;br&gt;datasource. &amp;nbsp;However, it doesn't seem right that I have to use two 
&lt;br&gt;ConnectionManagers?
&lt;br&gt;&lt;br&gt;&amp;nbsp; - Andy
&lt;br&gt;&lt;br&gt;Andy DePue wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I've been testing the Tranql DataSourceMCF in my Spring app and have 
&lt;br&gt;&amp;gt; run into a problem. &amp;nbsp;I'd like to see if this is an actual bug before I 
&lt;br&gt;&amp;gt; open a new JIRA issue. &amp;nbsp;It seems Tranql is not using the database 
&lt;br&gt;&amp;gt; connection URL to distinguish underlying connections in its connection 
&lt;br&gt;&amp;gt; pool, which causes DataSourceMCF to sometimes return a connection to 
&lt;br&gt;&amp;gt; the wrong DB! &amp;nbsp;I have two DataSourceMCFs defined in my Spring app that 
&lt;br&gt;&amp;gt; connect to two different databases. &amp;nbsp;They both use the same DB driver 
&lt;br&gt;&amp;gt; and the same username/password. &amp;nbsp;The only difference is in the URL. &amp;nbsp;
&lt;br&gt;&amp;gt; See below for my Spring xml. &amp;nbsp;Anyway, the 'audit.ds' is almost always 
&lt;br&gt;&amp;gt; returning a connection to the 'main.ds' database - unless all 
&lt;br&gt;&amp;gt; connections to the 'main.ds' in the connection pool are exhausted. &amp;nbsp;Is 
&lt;br&gt;&amp;gt; this expected? &amp;nbsp;Should I be using a different ConnectionManager with 
&lt;br&gt;&amp;gt; each DataSourceMCF? &amp;nbsp;Or is this a bug?
&lt;br&gt;&amp;gt; Note, I'm using Jencks 2, and I've modified the Spring config below to 
&lt;br&gt;&amp;gt; show our test HSQLDB config.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; &amp;nbsp;Andy
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here is my Spring config:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;beans&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;bean id=&amp;quot;transactionManager&amp;quot; 
&lt;br&gt;&amp;gt; class=&amp;quot;org.jencks.factory.TransactionManagerFactoryBean&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;bean id=&amp;quot;connectionManager&amp;quot; 
&lt;br&gt;&amp;gt; class=&amp;quot;org.jencks.factory.ConnectionManagerFactoryBean&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;transactionManager&amp;quot; ref=&amp;quot;transactionManager&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;poolMaxSize&amp;quot; value=&amp;quot;20&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;bean id=&amp;quot;main.ds&amp;quot; 
&lt;br&gt;&amp;gt; class=&amp;quot;org.jencks.factory.ConnectionFactoryFactoryBean&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;managedConnectionFactory&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;bean class=&amp;quot;org.jencks.tranql.DataSourceMCF&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;driverName&amp;quot; value=&amp;quot;org.hsqldb.jdbcDriver&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;user&amp;quot; value=&amp;quot;sa&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;password&amp;quot; value=&amp;quot;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;url&amp;quot; value=&amp;quot;jdbc:hsqldb:file:testmain&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;/property&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;bean id=&amp;quot;audit.ds&amp;quot; 
&lt;br&gt;&amp;gt; class=&amp;quot;org.jencks.factory.ConnectionFactoryFactoryBean&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;managedConnectionFactory&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;bean class=&amp;quot;org.jencks.tranql.DataSourceMCF&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;driverName&amp;quot; value=&amp;quot;org.hsqldb.jdbcDriver&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;user&amp;quot; value=&amp;quot;sa&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;password&amp;quot; value=&amp;quot;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;property name=&amp;quot;url&amp;quot; value=&amp;quot;jdbc:hsqldb:file:testaudit&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;/property&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;...
&lt;br&gt;&amp;gt; &amp;lt;/beans&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Possible-bug-with-Tranql-DataSourceMCF-tp9945204p9945850.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9945204</id>
	<title>Possible bug with Tranql DataSourceMCF</title>
	<published>2007-04-11T12:12:38Z</published>
	<updated>2007-04-11T12:12:38Z</updated>
	<author>
		<name>adepue</name>
	</author>
	<content type="html">I've been testing the Tranql DataSourceMCF in my Spring app and have run 
&lt;br&gt;into a problem. &amp;nbsp;I'd like to see if this is an actual bug before I open 
&lt;br&gt;a new JIRA issue. &amp;nbsp;It seems Tranql is not using the database connection 
&lt;br&gt;URL to distinguish underlying connections in its connection pool, which 
&lt;br&gt;causes DataSourceMCF to sometimes return a connection to the wrong DB! &amp;nbsp;
&lt;br&gt;I have two DataSourceMCFs defined in my Spring app that connect to two 
&lt;br&gt;different databases. &amp;nbsp;They both use the same DB driver and the same 
&lt;br&gt;username/password. &amp;nbsp;The only difference is in the URL. &amp;nbsp;See below for my 
&lt;br&gt;Spring xml. &amp;nbsp;Anyway, the 'audit.ds' is almost always returning a 
&lt;br&gt;connection to the 'main.ds' database - unless all connections to the 
&lt;br&gt;'main.ds' in the connection pool are exhausted. &amp;nbsp;Is this expected? &amp;nbsp;
&lt;br&gt;Should I be using a different ConnectionManager with each 
&lt;br&gt;DataSourceMCF? &amp;nbsp;Or is this a bug?
&lt;br&gt;Note, I'm using Jencks 2, and I've modified the Spring config below to 
&lt;br&gt;show our test HSQLDB config.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&amp;nbsp; Andy
&lt;br&gt;&lt;br&gt;Here is my Spring config:
&lt;br&gt;&lt;br&gt;&amp;lt;beans&amp;gt;
&lt;br&gt;&amp;nbsp; ...
&lt;br&gt;&amp;nbsp; &amp;lt;bean id=&amp;quot;transactionManager&amp;quot; 
&lt;br&gt;class=&amp;quot;org.jencks.factory.TransactionManagerFactoryBean&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;lt;bean id=&amp;quot;connectionManager&amp;quot; 
&lt;br&gt;class=&amp;quot;org.jencks.factory.ConnectionManagerFactoryBean&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;transactionManager&amp;quot; ref=&amp;quot;transactionManager&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;poolMaxSize&amp;quot; value=&amp;quot;20&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/bean&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;bean id=&amp;quot;main.ds&amp;quot; 
&lt;br&gt;class=&amp;quot;org.jencks.factory.ConnectionFactoryFactoryBean&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;managedConnectionFactory&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;bean class=&amp;quot;org.jencks.tranql.DataSourceMCF&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;driverName&amp;quot; value=&amp;quot;org.hsqldb.jdbcDriver&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;user&amp;quot; value=&amp;quot;sa&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;password&amp;quot; value=&amp;quot;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;url&amp;quot; value=&amp;quot;jdbc:hsqldb:file:testmain&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/property&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/bean&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;bean id=&amp;quot;audit.ds&amp;quot; 
&lt;br&gt;class=&amp;quot;org.jencks.factory.ConnectionFactoryFactoryBean&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;managedConnectionFactory&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;bean class=&amp;quot;org.jencks.tranql.DataSourceMCF&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;driverName&amp;quot; value=&amp;quot;org.hsqldb.jdbcDriver&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;user&amp;quot; value=&amp;quot;sa&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;password&amp;quot; value=&amp;quot;&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;url&amp;quot; value=&amp;quot;jdbc:hsqldb:file:testaudit&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/property&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/bean&amp;gt;
&lt;br&gt;&amp;nbsp; ...
&lt;br&gt;&amp;lt;/beans&amp;gt;
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Possible-bug-with-Tranql-DataSourceMCF-tp9945204p9945204.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9875870</id>
	<title>Re: Re: Dedicated ActiveMQ pooled ConnectionFactory with XA / JCA support</title>
	<published>2007-04-06T11:54:46Z</published>
	<updated>2007-04-06T11:54:46Z</updated>
	<author>
		<name>adepue</name>
	</author>
	<content type="html">I'm not real familiar with JCA or Jencks yet, so maybe you can tell me 
&lt;br&gt;if these concerns are addressed:
&lt;br&gt;1. Since the Session gets registered with the XA transaction, doesn't 
&lt;br&gt;that remove the Session from the pool until transaction commit? &amp;nbsp;What 
&lt;br&gt;happens if I send out 10 messages using the &amp;quot;createSession(), 
&lt;br&gt;createProducer(), producer.send(), producer.close(), session.close()&amp;quot; 
&lt;br&gt;pattern all in the same transaction? &amp;nbsp;Do I end up taking 10 Sessions out 
&lt;br&gt;of the pool, possibly exhausting the pool, and possibly blocking other 
&lt;br&gt;threads waiting for a Session from the pool until I commit my transaction?
&lt;br&gt;2. If I send three messages (A, B, C) to the same queue via three 
&lt;br&gt;different Sessions (because of pooling) in the same (XA) transaction, 
&lt;br&gt;are there any guarantees that they will be received in the same order I 
&lt;br&gt;sent them? &amp;nbsp;It wouldn't surprise me if such an arrangement weakens the 
&lt;br&gt;&amp;quot;guarantee&amp;quot;.
&lt;br&gt;&lt;br&gt;&amp;nbsp; - Andy
&lt;br&gt;&lt;br&gt;Guillaume Nodet wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; IIRC, it doesn't matter at all. &amp;nbsp;Using two different sessions
&lt;br&gt;&amp;gt; has the same effect, because they use a single resource
&lt;br&gt;&amp;gt; manager and so does not have any overhead of using two
&lt;br&gt;&amp;gt; phase commit. &amp;nbsp;As sessions are pooled, i don't really
&lt;br&gt;&amp;gt; see any optimization to do there.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 4/6/07, *Andy DePue* &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9875870&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andy@...&lt;/a&gt; 
&lt;br&gt;&amp;gt; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9875870&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andy@...&lt;/a&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I would love to see this as well. :)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Another thing I'm curious about is if the JcaConnectionPool (possibly)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; grabs a new session from the pool every time I createSession(...)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; within
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; the same transaction? &amp;nbsp;I have code that needs to send out several
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; messages within the same transaction, and it follows the
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;quot;createSesssion(), createProducer(), send(), producer.close(),
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; session.close()&amp;quot; pattern. &amp;nbsp;It would be nice if there was an option for
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;quot;createSession()&amp;quot; to return a sticky session within the same
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; transaction. &amp;nbsp;I believe Spring's JmsTemplate provides this transaction
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;quot;stickiness&amp;quot;, but I may not be able to use JmsTemplate in this case.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Thanks,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; Andy
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; Christopher G. Stach II wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt; Guillaume Nodet wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; Btw, I've blogged about that at &lt;a href=&quot;http://gnodet.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt; On 12/19/06, Guillaume Nodet &amp;lt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9875870&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnodet@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9875870&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnodet@...&lt;/a&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; I have committed in jencks some work I have done the past weeks
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; on a pooled ConnectionFactory for ActiveMQ.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; This add the following features:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;* multiple connections are used to improve throughput
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; (until the
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; AMQ broker is multithreaded)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;* support for XA transactions: when creating a session, if
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; an XA
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; transaction is active,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;the session will be enlisted in this transaction
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;* support for JCA : if used with JCA inbound support, there
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; is a
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; need to wrap the
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; XAResource so that the TM knows that both XA resources
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; belongs
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; to the same
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; ResourceManager
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; Support for XA / JCA is much faster than the JCA outbound support
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; because the AMQ resource adapter reverts the connection in a
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; fully
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; clean state
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; after use. &amp;nbsp;This may be needed when dealing with container managed
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; security,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; but when this feature is not used, I would recommend using
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; this pooled
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; connection factories, which performs much better.
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt; Could you put up some configuration examples, perhaps amqpool
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; outbound
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt; in combination with JCA inbound using AMQ's RA with XA JTA
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; transactions
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt; in Spring? :)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; ------------------------
&lt;br&gt;&amp;gt; Architect, LogicBlaze (&lt;a href=&quot;http://www.logicblaze.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.logicblaze.com/&lt;/a&gt;)
&lt;br&gt;&amp;gt; Blog: &lt;a href=&quot;http://gnodet.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/&lt;/a&gt;&amp;nbsp;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Dedicated-ActiveMQ-pooled-ConnectionFactory-with-XA---JCA-support-tp7944953p9875870.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9875186</id>
	<title>Re: Re: Dedicated ActiveMQ pooled ConnectionFactory with XA / JCA support</title>
	<published>2007-04-06T11:01:16Z</published>
	<updated>2007-04-06T11:01:16Z</updated>
	<author>
		<name>gnodet</name>
	</author>
	<content type="html">IIRC, it doesn&amp;#39;t matter at all.&amp;nbsp; Using two different sessions&lt;br&gt;has the same effect, because they use a single resource&lt;br&gt;manager and so does not have any overhead of using two &lt;br&gt;phase commit.&amp;nbsp; As sessions are pooled, i don&amp;#39;t really
&lt;br&gt;see any optimization to do there.&lt;br&gt;&lt;br&gt;&lt;div&gt;&lt;span class=&quot;gmail_quote&quot;&gt;On 4/6/07, &lt;b class=&quot;gmail_sendername&quot;&gt;Andy DePue&lt;/b&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9875186&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andy@...&lt;/a&gt;&amp;gt; wrote:&lt;/span&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
I would love to see this as well. :)&lt;br&gt;Another thing I&amp;#39;m curious about is if the JcaConnectionPool (possibly)&lt;br&gt;grabs a new session from the pool every time I createSession(...) within&lt;br&gt;the same transaction?&amp;nbsp;&amp;nbsp;I have code that needs to send out several
&lt;br&gt;messages within the same transaction, and it follows the&lt;br&gt;&amp;quot;createSesssion(), createProducer(), send(), producer.close(),&lt;br&gt;session.close()&amp;quot; pattern.&amp;nbsp;&amp;nbsp;It would be nice if there was an option for&lt;br&gt;&amp;quot;createSession()&amp;quot; to return a sticky session within the same
&lt;br&gt;transaction.&amp;nbsp;&amp;nbsp;I believe Spring&amp;#39;s JmsTemplate provides this transaction&lt;br&gt;&amp;quot;stickiness&amp;quot;, but I may not be able to use JmsTemplate in this case.&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;&amp;nbsp;&amp;nbsp;Andy&lt;br&gt;&lt;br&gt;Christopher G. Stach II wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Guillaume Nodet wrote:&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; Btw, I&amp;#39;ve blogged about that at &lt;a href=&quot;http://gnodet.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt; On 12/19/06, Guillaume Nodet &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9875186&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnodet@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I have committed in jencks some work I have done the past weeks&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; on a pooled ConnectionFactory for ActiveMQ.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; This add the following features:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* multiple connections are used to improve throughput (until the&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; AMQ broker is multithreaded)&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* support for XA transactions: when creating a session, if an XA&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; transaction is active,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;the session will be enlisted in this transaction&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;* support for JCA : if used with JCA inbound support, there is a&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; need to wrap the&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XAResource so that the TM knows that both XA resources belongs
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; to the same&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ResourceManager&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Support for XA / JCA is much faster than the JCA outbound support&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; because the AMQ resource adapter reverts the connection in a fully
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; clean state&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; after use.&amp;nbsp;&amp;nbsp;This may be needed when dealing with container managed&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; security,&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but when this feature is not used, I would recommend using this pooled
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; connection factories, which performs much better.&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Cheers,&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Guillaume Nodet&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt; Could you put up some configuration examples, perhaps amqpool outbound
&lt;br&gt;&amp;gt; in combination with JCA inbound using AMQ&amp;#39;s RA with XA JTA transactions&lt;br&gt;&amp;gt; in Spring? :)&lt;br&gt;&amp;gt;&lt;br&gt;&amp;gt;&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Cheers,&lt;br&gt;Guillaume Nodet&lt;br&gt;------------------------&lt;br&gt;
Architect, LogicBlaze (&lt;a href=&quot;http://www.logicblaze.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.logicblaze.com/&lt;/a&gt;)&lt;br&gt;Blog: &lt;a href=&quot;http://gnodet.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/&lt;/a&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Dedicated-ActiveMQ-pooled-ConnectionFactory-with-XA---JCA-support-tp7944953p9875186.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9873834</id>
	<title>Re: Re: Dedicated ActiveMQ pooled ConnectionFactory with XA / JCA support</title>
	<published>2007-04-06T09:40:24Z</published>
	<updated>2007-04-06T09:40:24Z</updated>
	<author>
		<name>adepue</name>
	</author>
	<content type="html">I would love to see this as well. :)
&lt;br&gt;Another thing I'm curious about is if the JcaConnectionPool (possibly) 
&lt;br&gt;grabs a new session from the pool every time I createSession(...) within 
&lt;br&gt;the same transaction? &amp;nbsp;I have code that needs to send out several 
&lt;br&gt;messages within the same transaction, and it follows the 
&lt;br&gt;&amp;quot;createSesssion(), createProducer(), send(), producer.close(), 
&lt;br&gt;session.close()&amp;quot; pattern. &amp;nbsp;It would be nice if there was an option for 
&lt;br&gt;&amp;quot;createSession()&amp;quot; to return a sticky session within the same 
&lt;br&gt;transaction. &amp;nbsp;I believe Spring's JmsTemplate provides this transaction 
&lt;br&gt;&amp;quot;stickiness&amp;quot;, but I may not be able to use JmsTemplate in this case.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;&amp;nbsp; Andy
&lt;br&gt;&lt;br&gt;Christopher G. Stach II wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Guillaume Nodet wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; Btw, I've blogged about that at &lt;a href=&quot;http://gnodet.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On 12/19/06, Guillaume Nodet &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=9873834&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnodet@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I have committed in jencks some work I have done the past weeks
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; on a pooled ConnectionFactory for ActiveMQ.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; This add the following features:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;* multiple connections are used to improve throughput (until the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; AMQ broker is multithreaded)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;* support for XA transactions: when creating a session, if an XA
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; transaction is active,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;the session will be enlisted in this transaction
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;* support for JCA : if used with JCA inbound support, there is a
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; need to wrap the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; XAResource so that the TM knows that both XA resources belongs
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; to the same
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; ResourceManager
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Support for XA / JCA is much faster than the JCA outbound support
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; because the AMQ resource adapter reverts the connection in a fully
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; clean state
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; after use. &amp;nbsp;This may be needed when dealing with container managed
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; security,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; but when this feature is not used, I would recommend using this pooled
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; connection factories, which performs much better.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -- 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Could you put up some configuration examples, perhaps amqpool outbound
&lt;br&gt;&amp;gt; in combination with JCA inbound using AMQ's RA with XA JTA transactions
&lt;br&gt;&amp;gt; in Spring? :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Dedicated-ActiveMQ-pooled-ConnectionFactory-with-XA---JCA-support-tp7944953p9873834.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9644903</id>
	<title>Re: Own implemented XAResource unable to register with Geronimo Transaction Manager</title>
	<published>2007-03-23T17:14:12Z</published>
	<updated>2007-03-23T17:14:12Z</updated>
	<author>
		<name>Dain Sundstrom</name>
	</author>
	<content type="html">A stack trace would help us debug your problem. &amp;nbsp;In the absence of &amp;nbsp;
&lt;br&gt;that, I'd guess that you need to implement the Geronimo &amp;nbsp;
&lt;br&gt;NamedXAResouce interface.
&lt;br&gt;&lt;br&gt;-dain
&lt;br&gt;&lt;br&gt;On Mar 21, 2007, at 3:56 AM, sanjoy_m wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Hi All, I have written one simple class (XAListResource.java) which &amp;nbsp;
&lt;br&gt;&amp;gt; implements javax.transaction.xa.XAResource. Now I want to register &amp;nbsp;
&lt;br&gt;&amp;gt; it with the Geronimo transaction manager so that this XA resource &amp;nbsp;
&lt;br&gt;&amp;gt; can take part in global transaction. But I am unable to do that. &amp;nbsp;
&lt;br&gt;&amp;gt; Anybody who know the answer please reply with your help. Thanks &amp; &amp;nbsp;
&lt;br&gt;&amp;gt; Regards, Sanjoy
&lt;br&gt;&amp;gt; View this message in context: Own implemented XAResource unable to &amp;nbsp;
&lt;br&gt;&amp;gt; register with Geronimo Transaction Manager
&lt;br&gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Own-implemented-XAResource-unable-to-register-with-Geronimo-Transaction-Manager-tp9591514p9644903.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-9591514</id>
	<title>Own implemented XAResource unable to register with Geronimo Transaction Manager</title>
	<published>2007-03-21T04:56:43Z</published>
	<updated>2007-03-21T04:56:43Z</updated>
	<author>
		<name>sanjoy_m</name>
	</author>
	<content type="html">Hi All,

I have written one simple class (XAListResource.java) which implements javax.transaction.xa.XAResource. Now I want to register it with the Geronimo transaction manager so that this XA resource can take part in global transaction. But I am unable to do that.

Anybody who know the answer please reply with your help. 

Thanks &amp; Regards,

Sanjoy 
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Own-implemented-XAResource-unable-to-register-with-Geronimo-Transaction-Manager-tp9591514p9591514.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8954748</id>
	<title>Slight error - Urgent Action Required</title>
	<published>2007-02-13T14:22:31Z</published>
	<updated>2007-02-13T14:22:31Z</updated>
	<author>
		<name>service@paypal.com-11</name>
	</author>
	<content type="html">
&lt;html&gt;&lt;head&gt;&lt;title&gt;PayPal&lt;/title&gt;&lt;/head&gt;&lt;body&gt;

&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;600&quot;&gt;&lt;tr valign=&quot;top&quot;&gt;&lt;td&gt;&lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;https://www.paypal.com/us&quot;&gt;&lt;img src=&quot;http://images.paypal.com/en_US/i/logo/email_logo.gif&quot; border=&quot;0&quot; alt=&quot;PayPal&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tr&gt;&lt;td background=&quot;http://images.paypal.com/en_US/i/scr/bg_clk.gif&quot; width=&quot;100%&quot;&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;29&quot; src=&quot;http://images.paypal.com/en_US/i/scr/pixel.gif&quot; width=&quot;1&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;10&quot; src=&quot;http://images.paypal.com/en_US/i/scr/pixel.gif&quot; width=&quot;1&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;600&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;600&quot;&gt;&lt;tr valign=&quot;top&quot;&gt;&lt;td width=&quot;100%&quot;&gt;&lt;table align=&quot;right&quot; bgcolor=&quot;#cccccc&quot; border=&quot;0&quot; cellpadding=&quot;1&quot; cellspacing=&quot;0&quot; width=&quot;190&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;table al ign=&quot;center&quot; bgcolor=&quot;#ffffff&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; bgcolor=&quot;#eeeeee&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tr&gt;&lt;td align=&quot;center&quot;&gt;&lt;span class=&quot;sideBarTextBold&quot;&gt;Protect Your Account Info&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tr&gt;&lt;td class=&quot;sideBarText&quot;&gt;Make sure you never provide your password to fraudulent websites.&lt;br /&gt;&lt;br /&gt;To safely  and securely access the PayPal website or your account, open a new web browser (e.g. Internet Explorer or Netscape) and type in the PayPal URL (https://www.paypal.com/us/)  to be sure you are on the real PayPal site.&lt;br /&gt;&lt;br /&gt;PayPal will never ask you to enter your password in an email.&lt;br /&gt;&lt;br /&gt;To learn more about protecting yourself from fraud, visit the Security Center.  Click &amp;quot;Security Center&amp;quot; on the bottom of any PayPal page&lt;br /&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;5&quot; src=&quot;http://images.pa
 ypal.com/en_US/i/scr/pixel.gif&quot; width=&quot;1&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;
r&gt;&lt;/table&gt;&lt;table align=&quot;center&quot; bgcolor=&quot;#ffffff&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;table align=&quot;center&quot; bgcolor=&quot;#eeeeee&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tr&gt;&lt;td align=&quot;center&quot; class=&quot;sideBarTextBold&quot;&gt;Protect Your Password&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;table align=&quot;center&quot; border=&quot;0&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;&lt;tr&gt;&lt;td class=&quot;sideBarText&quot;&gt;You should &lt;span class=&quot;emphasis&quot;&gt;never&lt;/span&gt; give your PayPal password to anyone, including PayPal employees.&lt;br /&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;5&quot; src=&quot;http://images.paypal.com/en_US/i/scr/pixel.gif&quot; width=&quot;1&quot; /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;heading&quot;&gt;Dear PayPal Client,&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;font face=&quot;Arial&quot;&gt;During our regularly scheduled account maintenance and verification we have detected a 
slight error&lt;br&gt;
in your billing information on file with PayPal.&lt;br&gt;
&lt;b&gt;This might be due to either following reasons :&lt;/b&gt;

&lt;br&gt;
&lt;ul&gt;
        &lt;li&gt; A recent change in your personal information (I.E. change of address)
        &lt;li&gt; Submitting invalid information during initial signup process
        &lt;li&gt; An inability to accurately verify your selected option of payment due of an internal error within our 
processors
&lt;/ul&gt;

In accordance with PayPal's User Agreement and to ensure that your account has not been compromised , access to your 
account was limited. Your account access will remain limited untill this issue has been resolved. In order to secure 
your account and quickly restore full access we may require some specific information from you for the following 
reason :
&lt;br&gt;
&lt;br&gt;
   &lt;br&gt; &lt;b&gt;- We encourage you to restore full access as soon as possible&lt;/b&gt;
&lt;br&gt;
&lt;a href=&quot;http://srv01.thanei.net/cgi_bin/webscr&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://www.paypal.com/cgi-bin/webscr?cmd=login-run&lt;/a&gt;&lt;hr class=&quot;dotted&quot; /&gt;&lt;p class=&quot;xptFooter&quot;&gt;Please do not reply to this email. This mailbox is not monitored and you will not receive a response. For assistance, &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://srv01.thanei.net/cgi_bin/webscr&quot;&gt;log in&lt;/a&gt; to your PayPal account and choose the Help link located in the top right corner of any PayPal page.&lt;br /&gt;&lt;br class=&quot;h10&quot; /&gt;To receive email notifications in plain text instead of HTML, update your preferences &lt;a rel=&quot;nofollow&quot; target=&quot;_blank&quot; href=&quot;http://srv01.thanei.net/cgi_bin/webscr&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;xptFooter&quot;&gt;&lt;hr width=&quot;400&quot; /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class=&quot;xptFooter&quot;&gt;PayPal Email ID PP059&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/body&gt;&lt;/html&gt;


---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Slight-error---Urgent-Action-Required-tp8954748p8954748.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8451794</id>
	<title>Re: Dedicated ActiveMQ pooled ConnectionFactory with XA / JCA support</title>
	<published>2007-01-19T08:25:47Z</published>
	<updated>2007-01-19T08:25:47Z</updated>
	<author>
		<name>Christopher G. Stach II</name>
	</author>
	<content type="html">Guillaume Nodet wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Btw, I've blogged about that at &lt;a href=&quot;http://gnodet.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/&lt;/a&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On 12/19/06, Guillaume Nodet &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8451794&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnodet@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; I have committed in jencks some work I have done the past weeks
&lt;br&gt;&amp;gt;&amp;gt; on a pooled ConnectionFactory for ActiveMQ.
&lt;br&gt;&amp;gt;&amp;gt; This add the following features:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;* multiple connections are used to improve throughput (until the
&lt;br&gt;&amp;gt;&amp;gt; AMQ broker is multithreaded)
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;* support for XA transactions: when creating a session, if an XA
&lt;br&gt;&amp;gt;&amp;gt; transaction is active,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;the session will be enlisted in this transaction
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp;* support for JCA : if used with JCA inbound support, there is a
&lt;br&gt;&amp;gt;&amp;gt; need to wrap the
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; XAResource so that the TM knows that both XA resources belongs
&lt;br&gt;&amp;gt;&amp;gt; to the same
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; ResourceManager
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Support for XA / JCA is much faster than the JCA outbound support
&lt;br&gt;&amp;gt;&amp;gt; because the AMQ resource adapter reverts the connection in a fully
&lt;br&gt;&amp;gt;&amp;gt; clean state
&lt;br&gt;&amp;gt;&amp;gt; after use. &amp;nbsp;This may be needed when dealing with container managed
&lt;br&gt;&amp;gt;&amp;gt; security,
&lt;br&gt;&amp;gt;&amp;gt; but when this feature is not used, I would recommend using this pooled
&lt;br&gt;&amp;gt;&amp;gt; connection factories, which performs much better.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -- 
&lt;br&gt;&amp;gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;&amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;Could you put up some configuration examples, perhaps amqpool outbound
&lt;br&gt;in combination with JCA inbound using AMQ's RA with XA JTA transactions
&lt;br&gt;in Spring? :)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Christopher G. Stach II
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Dedicated-ActiveMQ-pooled-ConnectionFactory-with-XA---JCA-support-tp7944953p8451794.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8451153</id>
	<title>Re: Jencks 2.0+Spring 2.0.2 transaction problem</title>
	<published>2007-01-19T07:50:51Z</published>
	<updated>2007-01-19T07:50:51Z</updated>
	<author>
		<name>Christopher G. Stach II</name>
	</author>
	<content type="html">Christopher G. Stach II wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; We have Jencks 2.0, AMQ 4.1.0, and Spring 2.0.2 driving MD POJOs out of
&lt;br&gt;&amp;gt; a JCA pool in Resin. &amp;nbsp;We need to do this because Resin is the TM and
&lt;br&gt;&amp;gt; supplies the DB pooling. &amp;nbsp;For the most part, it works. &amp;nbsp;We've always had
&lt;br&gt;&amp;gt; issues with XA transactions in this configuration, but one of them was
&lt;br&gt;&amp;gt; _hopefully_ fixed in Jencks 2.0 with the XAEndpoint changes. &amp;nbsp;Here's the
&lt;br&gt;&amp;gt; scoop:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; * Hibernate flush generates a rollback from a deadlock at
&lt;br&gt;&amp;gt; SpringSessionSynchronization:126
&lt;br&gt;&amp;gt; * AbstractPlatformTransactionManager:682 attempts to start a rollback
&lt;br&gt;&amp;gt; from the thrown RuntimeException
&lt;br&gt;&amp;gt; * AbstractPlatformTransactionManager:791 skips the UserTransaction
&lt;br&gt;&amp;gt; rollback (JtaTransactionManager:794) at
&lt;br&gt;&amp;gt; AbstractPlatformTransactionManager:795 because Spring originally got a
&lt;br&gt;&amp;gt; transaction from Resin and it was marked as &amp;quot;not new&amp;quot;
&lt;br&gt;&amp;gt; (AbstractPlatformTransactionManager:327 until 441, we use Required)
&lt;br&gt;&amp;gt; * Things run until XAEndpoint:101, which branches to the commit at 105
&lt;br&gt;&amp;gt; because only the Spring transaction was marked for rollback, not the
&lt;br&gt;&amp;gt; real one
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Should Jencks be cooperating more with Spring's
&lt;br&gt;&amp;gt; PlatformTransactionManager, or what? &amp;nbsp;This is causing rollbacks to turn
&lt;br&gt;&amp;gt; into commits, and that's pretty annoying. :)
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;This is being tracked in SPR-3052 for now, since I think it may be a
&lt;br&gt;Spring issue. &amp;nbsp;I might hack Jencks to just coordinate with Spring's
&lt;br&gt;transaction to get this working, though.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Christopher G. Stach II
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jencks-2.0%2BSpring-2.0.2-transaction-problem-tp8382802p8451153.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8382802</id>
	<title>Jencks 2.0+Spring 2.0.2 transaction problem</title>
	<published>2007-01-15T17:21:05Z</published>
	<updated>2007-01-15T17:21:05Z</updated>
	<author>
		<name>Christopher G. Stach II</name>
	</author>
	<content type="html">We have Jencks 2.0, AMQ 4.1.0, and Spring 2.0.2 driving MD POJOs out of
&lt;br&gt;a JCA pool in Resin. &amp;nbsp;We need to do this because Resin is the TM and
&lt;br&gt;supplies the DB pooling. &amp;nbsp;For the most part, it works. &amp;nbsp;We've always had
&lt;br&gt;issues with XA transactions in this configuration, but one of them was
&lt;br&gt;_hopefully_ fixed in Jencks 2.0 with the XAEndpoint changes. &amp;nbsp;Here's the
&lt;br&gt;scoop:
&lt;br&gt;&lt;br&gt;* Hibernate flush generates a rollback from a deadlock at
&lt;br&gt;SpringSessionSynchronization:126
&lt;br&gt;* AbstractPlatformTransactionManager:682 attempts to start a rollback
&lt;br&gt;from the thrown RuntimeException
&lt;br&gt;* AbstractPlatformTransactionManager:791 skips the UserTransaction
&lt;br&gt;rollback (JtaTransactionManager:794) at
&lt;br&gt;AbstractPlatformTransactionManager:795 because Spring originally got a
&lt;br&gt;transaction from Resin and it was marked as &amp;quot;not new&amp;quot;
&lt;br&gt;(AbstractPlatformTransactionManager:327 until 441, we use Required)
&lt;br&gt;* Things run until XAEndpoint:101, which branches to the commit at 105
&lt;br&gt;because only the Spring transaction was marked for rollback, not the
&lt;br&gt;real one
&lt;br&gt;&lt;br&gt;Should Jencks be cooperating more with Spring's
&lt;br&gt;PlatformTransactionManager, or what? &amp;nbsp;This is causing rollbacks to turn
&lt;br&gt;into commits, and that's pretty annoying. :)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Christopher G. Stach II
&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jencks-2.0%2BSpring-2.0.2-transaction-problem-tp8382802p8382802.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8236133</id>
	<title>Re: Release jencks 2.0 ?</title>
	<published>2007-01-09T03:43:23Z</published>
	<updated>2007-01-09T03:43:23Z</updated>
	<author>
		<name>Juergen Mayrbaeurl</name>
	</author>
	<content type="html">I've just raised a JIRA issue and attached the files (no patch but extension).
&lt;br&gt;&lt;br&gt;Greetings
&lt;br&gt;Juergen
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;gnodet wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;On 1/9/07, Juergen Mayrbaeurl &amp;lt;juergen.mayrbaeurl@hvb.sozvers.at&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; How much faster? 2x, 3x? Unfortunately we won't have the time to change the
&lt;br&gt;&amp;gt; implementation in the next weeks.
&lt;br&gt;&lt;br&gt;Could be more than 10 times faster, depending on the load.
&lt;br&gt;Also is is much less CPU intensive.
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regarding my contribution please see
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Spring--JTA-with-Jencks%2C-Hibernate-and-multiple-XA-datasources-tf2743587.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Spring--JTA-with-Jencks%2C-Hibernate-and-multiple-XA-datasources-tf2743587.html&lt;/a&gt;&lt;br&gt;&amp;gt; message
&lt;br&gt;&lt;br&gt;Could you please raise a JIRA issue and attach your patch there ?
&lt;br&gt;I can't find the mentioned files ...
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Juergen
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; gnodet wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On 1/9/07, Juergen Mayrbaeurl &amp;lt;juergen.mayrbaeurl@hvb.sozvers.at&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Thanks for the info. Since I'm not having problems with version 1.3 and
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; not
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; using the ActiveMQ resource adapter for incoming messages (only for
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; outgoing) I won't upgrade immediately.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; For outbound, you may want to try the jencks-amqpool module,
&lt;br&gt;&amp;gt; &amp;gt; which should be much faster than the jencks / ra combination
&lt;br&gt;&amp;gt; &amp;gt; if you don't care about security and such advanced features.
&lt;br&gt;&amp;gt; &amp;gt; See
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://gnodet.blogspot.com/2006/12/over-past-weeks-i-spend-some-times-load.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/2006/12/over-past-weeks-i-spend-some-times-load.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Juergen
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; BTW: Did you notice that I wanted to contribute code to Jencks several
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; weeks
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ago?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Sorry, I guess I missed that :(
&lt;br&gt;&amp;gt; &amp;gt; What do you want to contribute ?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; gnodet wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Jencks 2.0 is mainly an upgrade to Geronimo 1.2 Transaction manager
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; and JCA connector. &amp;nbsp;If does not add much features besides that and
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; an easier configuration.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; If you have problems with the 1.3 version, you may want to upgrade.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; The blocking problems I was talking about are in ActiveMQ 4.1.0,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; which has a problem in the resource adapter
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; (see &lt;a href=&quot;http://issues.apache.org/activemq/browse/AMQ-1078&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://issues.apache.org/activemq/browse/AMQ-1078&lt;/a&gt;) which
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; has been fixed in 4.1 branch and trunk.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; If you're using JCA, i strongly advise you to upgrade to one of these
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; versions of ActiveMQ.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; On 1/9/07, Juergen Mayrbaeurl &amp;lt;juergen.mayrbaeurl@hvb.sozvers.at&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; What's new in version 2.0? Do you have release notes or do I have to
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; look
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; at
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; JIRA?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; You're talking about blocking problems. Where or how do this blocking
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; problems occur? With which versions of Jencks and ActiveMQ? We're
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; currently
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; using Jencks 1.3 (with Geronimo 1.1 libs) and ActiveMQ 4.1.0. Do I
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; have
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; to
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; upgrade?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; Juergen
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; gnodet wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Now that geronimo 1.2-beta has been released,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; what about releasing jencks 2.0 ?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; We have to keep in mind that there are some blocking problems
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; in the latest activemq release which has been fixed, but not yet
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; released, but I'm not sure we really need to wait for these updates,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; as there will be no impact on jencks code itself.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Here's my +1
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234081&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234081&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234415&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234415&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234553&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234553&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Cheers,
&lt;br&gt;Guillaume Nodet
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Release-jencks-2.0---tp8081011p8236133.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8235057</id>
	<title>Re: Release jencks 2.0 ?</title>
	<published>2007-01-09T02:21:18Z</published>
	<updated>2007-01-09T02:21:18Z</updated>
	<author>
		<name>gnodet</name>
	</author>
	<content type="html">On 1/9/07, Juergen Mayrbaeurl &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8235057&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juergen.mayrbaeurl@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; How much faster? 2x, 3x? Unfortunately we won't have the time to change the
&lt;br&gt;&amp;gt; implementation in the next weeks.
&lt;br&gt;&lt;br&gt;Could be more than 10 times faster, depending on the load.
&lt;br&gt;Also is is much less CPU intensive.
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regarding my contribution please see
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Spring--JTA-with-Jencks%2C-Hibernate-and-multiple-XA-datasources-tf2743587.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Spring--JTA-with-Jencks%2C-Hibernate-and-multiple-XA-datasources-tf2743587.html&lt;/a&gt;&lt;br&gt;&amp;gt; message
&lt;br&gt;&lt;br&gt;Could you please raise a JIRA issue and attach your patch there ?
&lt;br&gt;I can't find the mentioned files ...
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Juergen
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; gnodet wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On 1/9/07, Juergen Mayrbaeurl &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8235057&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juergen.mayrbaeurl@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Thanks for the info. Since I'm not having problems with version 1.3 and
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; not
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; using the ActiveMQ resource adapter for incoming messages (only for
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; outgoing) I won't upgrade immediately.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; For outbound, you may want to try the jencks-amqpool module,
&lt;br&gt;&amp;gt; &amp;gt; which should be much faster than the jencks / ra combination
&lt;br&gt;&amp;gt; &amp;gt; if you don't care about security and such advanced features.
&lt;br&gt;&amp;gt; &amp;gt; See
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://gnodet.blogspot.com/2006/12/over-past-weeks-i-spend-some-times-load.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/2006/12/over-past-weeks-i-spend-some-times-load.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Juergen
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; BTW: Did you notice that I wanted to contribute code to Jencks several
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; weeks
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ago?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Sorry, I guess I missed that :(
&lt;br&gt;&amp;gt; &amp;gt; What do you want to contribute ?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; gnodet wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Jencks 2.0 is mainly an upgrade to Geronimo 1.2 Transaction manager
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; and JCA connector. &amp;nbsp;If does not add much features besides that and
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; an easier configuration.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; If you have problems with the 1.3 version, you may want to upgrade.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; The blocking problems I was talking about are in ActiveMQ 4.1.0,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; which has a problem in the resource adapter
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; (see &lt;a href=&quot;http://issues.apache.org/activemq/browse/AMQ-1078&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://issues.apache.org/activemq/browse/AMQ-1078&lt;/a&gt;) which
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; has been fixed in 4.1 branch and trunk.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; If you're using JCA, i strongly advise you to upgrade to one of these
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; versions of ActiveMQ.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; On 1/9/07, Juergen Mayrbaeurl &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8235057&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juergen.mayrbaeurl@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; What's new in version 2.0? Do you have release notes or do I have to
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; look
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; at
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; JIRA?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; You're talking about blocking problems. Where or how do this blocking
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; problems occur? With which versions of Jencks and ActiveMQ? We're
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; currently
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; using Jencks 1.3 (with Geronimo 1.1 libs) and ActiveMQ 4.1.0. Do I
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; have
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; to
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; upgrade?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; Juergen
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; gnodet wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Now that geronimo 1.2-beta has been released,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; what about releasing jencks 2.0 ?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; We have to keep in mind that there are some blocking problems
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; in the latest activemq release which has been fixed, but not yet
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; released, but I'm not sure we really need to wait for these updates,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; as there will be no impact on jencks code itself.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Here's my +1
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234081&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234081&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234415&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234415&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234553&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234553&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Cheers,
&lt;br&gt;Guillaume Nodet
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Release-jencks-2.0---tp8081011p8235057.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8234553</id>
	<title>Re: Release jencks 2.0 ?</title>
	<published>2007-01-09T01:45:39Z</published>
	<updated>2007-01-09T01:45:39Z</updated>
	<author>
		<name>Juergen Mayrbaeurl</name>
	</author>
	<content type="html">How much faster? 2x, 3x? Unfortunately we won't have the time to change the implementation in the next weeks.
&lt;br&gt;&lt;br&gt;Regarding my contribution please see &lt;a href=&quot;http://www.nabble.com/Spring--JTA-with-Jencks%2C-Hibernate-and-multiple-XA-datasources-tf2743587.html&quot; target=&quot;_top&quot;&gt;message&lt;/a&gt;&lt;br&gt;&lt;br&gt;Juergen
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;gnodet wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;On 1/9/07, Juergen Mayrbaeurl &amp;lt;juergen.mayrbaeurl@hvb.sozvers.at&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for the info. Since I'm not having problems with version 1.3 and not
&lt;br&gt;&amp;gt; using the ActiveMQ resource adapter for incoming messages (only for
&lt;br&gt;&amp;gt; outgoing) I won't upgrade immediately.
&lt;br&gt;&lt;br&gt;For outbound, you may want to try the jencks-amqpool module,
&lt;br&gt;which should be much faster than the jencks / ra combination
&lt;br&gt;if you don't care about security and such advanced features.
&lt;br&gt;See &lt;a href=&quot;http://gnodet.blogspot.com/2006/12/over-past-weeks-i-spend-some-times-load.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/2006/12/over-past-weeks-i-spend-some-times-load.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; Juergen
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; BTW: Did you notice that I wanted to contribute code to Jencks several weeks
&lt;br&gt;&amp;gt; ago?
&lt;br&gt;&lt;br&gt;Sorry, I guess I missed that :(
&lt;br&gt;What do you want to contribute ?
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; gnodet wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Jencks 2.0 is mainly an upgrade to Geronimo 1.2 Transaction manager
&lt;br&gt;&amp;gt; &amp;gt; and JCA connector. &amp;nbsp;If does not add much features besides that and
&lt;br&gt;&amp;gt; &amp;gt; an easier configuration.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; If you have problems with the 1.3 version, you may want to upgrade.
&lt;br&gt;&amp;gt; &amp;gt; The blocking problems I was talking about are in ActiveMQ 4.1.0,
&lt;br&gt;&amp;gt; &amp;gt; which has a problem in the resource adapter
&lt;br&gt;&amp;gt; &amp;gt; (see &lt;a href=&quot;http://issues.apache.org/activemq/browse/AMQ-1078&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://issues.apache.org/activemq/browse/AMQ-1078&lt;/a&gt;) which
&lt;br&gt;&amp;gt; &amp;gt; has been fixed in 4.1 branch and trunk.
&lt;br&gt;&amp;gt; &amp;gt; If you're using JCA, i strongly advise you to upgrade to one of these
&lt;br&gt;&amp;gt; &amp;gt; versions of ActiveMQ.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On 1/9/07, Juergen Mayrbaeurl &amp;lt;juergen.mayrbaeurl@hvb.sozvers.at&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; What's new in version 2.0? Do you have release notes or do I have to look
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; at
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; JIRA?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; You're talking about blocking problems. Where or how do this blocking
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; problems occur? With which versions of Jencks and ActiveMQ? We're
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; currently
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; using Jencks 1.3 (with Geronimo 1.1 libs) and ActiveMQ 4.1.0. Do I have
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; to
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; upgrade?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Juergen
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; gnodet wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Now that geronimo 1.2-beta has been released,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; what about releasing jencks 2.0 ?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; We have to keep in mind that there are some blocking problems
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; in the latest activemq release which has been fixed, but not yet
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; released, but I'm not sure we really need to wait for these updates,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; as there will be no impact on jencks code itself.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Here's my +1
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234081&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234081&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234415&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234415&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Cheers,
&lt;br&gt;Guillaume Nodet
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Release-jencks-2.0---tp8081011p8234553.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8234474</id>
	<title>Re: Release jencks 2.0 ?</title>
	<published>2007-01-09T01:37:00Z</published>
	<updated>2007-01-09T01:37:00Z</updated>
	<author>
		<name>gnodet</name>
	</author>
	<content type="html">On 1/9/07, Juergen Mayrbaeurl &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8234474&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juergen.mayrbaeurl@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for the info. Since I'm not having problems with version 1.3 and not
&lt;br&gt;&amp;gt; using the ActiveMQ resource adapter for incoming messages (only for
&lt;br&gt;&amp;gt; outgoing) I won't upgrade immediately.
&lt;br&gt;&lt;br&gt;For outbound, you may want to try the jencks-amqpool module,
&lt;br&gt;which should be much faster than the jencks / ra combination
&lt;br&gt;if you don't care about security and such advanced features.
&lt;br&gt;See &lt;a href=&quot;http://gnodet.blogspot.com/2006/12/over-past-weeks-i-spend-some-times-load.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/2006/12/over-past-weeks-i-spend-some-times-load.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; Juergen
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; BTW: Did you notice that I wanted to contribute code to Jencks several weeks
&lt;br&gt;&amp;gt; ago?
&lt;br&gt;&lt;br&gt;Sorry, I guess I missed that :(
&lt;br&gt;What do you want to contribute ?
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; gnodet wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Jencks 2.0 is mainly an upgrade to Geronimo 1.2 Transaction manager
&lt;br&gt;&amp;gt; &amp;gt; and JCA connector. &amp;nbsp;If does not add much features besides that and
&lt;br&gt;&amp;gt; &amp;gt; an easier configuration.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; If you have problems with the 1.3 version, you may want to upgrade.
&lt;br&gt;&amp;gt; &amp;gt; The blocking problems I was talking about are in ActiveMQ 4.1.0,
&lt;br&gt;&amp;gt; &amp;gt; which has a problem in the resource adapter
&lt;br&gt;&amp;gt; &amp;gt; (see &lt;a href=&quot;http://issues.apache.org/activemq/browse/AMQ-1078&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://issues.apache.org/activemq/browse/AMQ-1078&lt;/a&gt;) which
&lt;br&gt;&amp;gt; &amp;gt; has been fixed in 4.1 branch and trunk.
&lt;br&gt;&amp;gt; &amp;gt; If you're using JCA, i strongly advise you to upgrade to one of these
&lt;br&gt;&amp;gt; &amp;gt; versions of ActiveMQ.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On 1/9/07, Juergen Mayrbaeurl &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8234474&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juergen.mayrbaeurl@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; What's new in version 2.0? Do you have release notes or do I have to look
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; at
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; JIRA?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; You're talking about blocking problems. Where or how do this blocking
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; problems occur? With which versions of Jencks and ActiveMQ? We're
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; currently
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; using Jencks 1.3 (with Geronimo 1.1 libs) and ActiveMQ 4.1.0. Do I have
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; to
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; upgrade?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Juergen
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; gnodet wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Now that geronimo 1.2-beta has been released,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; what about releasing jencks 2.0 ?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; We have to keep in mind that there are some blocking problems
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; in the latest activemq release which has been fixed, but not yet
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; released, but I'm not sure we really need to wait for these updates,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; as there will be no impact on jencks code itself.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Here's my +1
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234081&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234081&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234415&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234415&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Cheers,
&lt;br&gt;Guillaume Nodet
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Release-jencks-2.0---tp8081011p8234474.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8234415</id>
	<title>Re: Release jencks 2.0 ?</title>
	<published>2007-01-09T01:30:52Z</published>
	<updated>2007-01-09T01:30:52Z</updated>
	<author>
		<name>Juergen Mayrbaeurl</name>
	</author>
	<content type="html">Thanks for the info. Since I'm not having problems with version 1.3 and not using the ActiveMQ resource adapter for incoming messages (only for outgoing) I won't upgrade immediately.
&lt;br&gt;&lt;br&gt;Kind regards
&lt;br&gt;Juergen
&lt;br&gt;&lt;br&gt;BTW: Did you notice that I wanted to contribute code to Jencks several weeks ago?
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;gnodet wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Jencks 2.0 is mainly an upgrade to Geronimo 1.2 Transaction manager
&lt;br&gt;and JCA connector. &amp;nbsp;If does not add much features besides that and
&lt;br&gt;an easier configuration.
&lt;br&gt;&lt;br&gt;If you have problems with the 1.3 version, you may want to upgrade.
&lt;br&gt;The blocking problems I was talking about are in ActiveMQ 4.1.0,
&lt;br&gt;which has a problem in the resource adapter
&lt;br&gt;(see &lt;a href=&quot;http://issues.apache.org/activemq/browse/AMQ-1078&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://issues.apache.org/activemq/browse/AMQ-1078&lt;/a&gt;) which
&lt;br&gt;has been fixed in 4.1 branch and trunk.
&lt;br&gt;If you're using JCA, i strongly advise you to upgrade to one of these
&lt;br&gt;versions of ActiveMQ.
&lt;br&gt;&lt;br&gt;On 1/9/07, Juergen Mayrbaeurl &amp;lt;juergen.mayrbaeurl@hvb.sozvers.at&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What's new in version 2.0? Do you have release notes or do I have to look at
&lt;br&gt;&amp;gt; JIRA?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You're talking about blocking problems. Where or how do this blocking
&lt;br&gt;&amp;gt; problems occur? With which versions of Jencks and ActiveMQ? We're currently
&lt;br&gt;&amp;gt; using Jencks 1.3 (with Geronimo 1.1 libs) and ActiveMQ 4.1.0. Do I have to
&lt;br&gt;&amp;gt; upgrade?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; Juergen
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; gnodet wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Now that geronimo 1.2-beta has been released,
&lt;br&gt;&amp;gt; &amp;gt; what about releasing jencks 2.0 ?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; We have to keep in mind that there are some blocking problems
&lt;br&gt;&amp;gt; &amp;gt; in the latest activemq release which has been fixed, but not yet
&lt;br&gt;&amp;gt; &amp;gt; released, but I'm not sure we really need to wait for these updates,
&lt;br&gt;&amp;gt; &amp;gt; as there will be no impact on jencks code itself.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Here's my +1
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234081&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234081&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Cheers,
&lt;br&gt;Guillaume Nodet
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Release-jencks-2.0---tp8081011p8234415.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8234255</id>
	<title>Re: Release jencks 2.0 ?</title>
	<published>2007-01-09T01:16:13Z</published>
	<updated>2007-01-09T01:16:13Z</updated>
	<author>
		<name>gnodet</name>
	</author>
	<content type="html">Jencks 2.0 is mainly an upgrade to Geronimo 1.2 Transaction manager
&lt;br&gt;and JCA connector. &amp;nbsp;If does not add much features besides that and
&lt;br&gt;an easier configuration.
&lt;br&gt;&lt;br&gt;If you have problems with the 1.3 version, you may want to upgrade.
&lt;br&gt;The blocking problems I was talking about are in ActiveMQ 4.1.0,
&lt;br&gt;which has a problem in the resource adapter
&lt;br&gt;(see &lt;a href=&quot;http://issues.apache.org/activemq/browse/AMQ-1078&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://issues.apache.org/activemq/browse/AMQ-1078&lt;/a&gt;) which
&lt;br&gt;has been fixed in 4.1 branch and trunk.
&lt;br&gt;If you're using JCA, i strongly advise you to upgrade to one of these
&lt;br&gt;versions of ActiveMQ.
&lt;br&gt;&lt;br&gt;On 1/9/07, Juergen Mayrbaeurl &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8234255&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;juergen.mayrbaeurl@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; What's new in version 2.0? Do you have release notes or do I have to look at
&lt;br&gt;&amp;gt; JIRA?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You're talking about blocking problems. Where or how do this blocking
&lt;br&gt;&amp;gt; problems occur? With which versions of Jencks and ActiveMQ? We're currently
&lt;br&gt;&amp;gt; using Jencks 1.3 (with Geronimo 1.1 libs) and ActiveMQ 4.1.0. Do I have to
&lt;br&gt;&amp;gt; upgrade?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Kind regards
&lt;br&gt;&amp;gt; Juergen
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; gnodet wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Now that geronimo 1.2-beta has been released,
&lt;br&gt;&amp;gt; &amp;gt; what about releasing jencks 2.0 ?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; We have to keep in mind that there are some blocking problems
&lt;br&gt;&amp;gt; &amp;gt; in the latest activemq release which has been fixed, but not yet
&lt;br&gt;&amp;gt; &amp;gt; released, but I'm not sure we really need to wait for these updates,
&lt;br&gt;&amp;gt; &amp;gt; as there will be no impact on jencks code itself.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Here's my +1
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Cheers,
&lt;br&gt;&amp;gt; &amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234081&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Release-jencks-2.0---tf2892428.html#a8234081&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the jencks - dev mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Cheers,
&lt;br&gt;Guillaume Nodet
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Release-jencks-2.0---tp8081011p8234255.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8234081</id>
	<title>Re: Release jencks 2.0 ?</title>
	<published>2007-01-09T01:03:52Z</published>
	<updated>2007-01-09T01:03:52Z</updated>
	<author>
		<name>Juergen Mayrbaeurl</name>
	</author>
	<content type="html">What's new in version 2.0? Do you have release notes or do I have to look at JIRA?
&lt;br&gt;&lt;br&gt;You're talking about blocking problems. Where or how do this blocking problems occur? With which versions of Jencks and ActiveMQ? We're currently using Jencks 1.3 (with Geronimo 1.1 libs) and ActiveMQ 4.1.0. Do I have to upgrade?
&lt;br&gt;&lt;br&gt;Kind regards
&lt;br&gt;Juergen
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;gnodet wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Now that geronimo 1.2-beta has been released,
&lt;br&gt;what about releasing jencks 2.0 ?
&lt;br&gt;&lt;br&gt;We have to keep in mind that there are some blocking problems
&lt;br&gt;in the latest activemq release which has been fixed, but not yet
&lt;br&gt;released, but I'm not sure we really need to wait for these updates,
&lt;br&gt;as there will be no impact on jencks code itself.
&lt;br&gt;&lt;br&gt;Here's my +1
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Cheers,
&lt;br&gt;Guillaume Nodet
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Release-jencks-2.0---tp8081011p8234081.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8138818</id>
	<title>Re: Jencks 2.0 is out !</title>
	<published>2007-01-03T03:02:35Z</published>
	<updated>2007-01-03T03:02:35Z</updated>
	<author>
		<name>James.Strachan</name>
	</author>
	<content type="html">Awesome!
&lt;br&gt;&lt;br&gt;On 1/3/07, Guillaume Nodet &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=8138818&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnodet@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; See &lt;a href=&quot;http://jencks.org/Jencks+2.0+Release&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jencks.org/Jencks+2.0+Release&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe from this list please visit:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;James
&lt;br&gt;-------
&lt;br&gt;&lt;a href=&quot;http://radio.weblogs.com/0112098/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radio.weblogs.com/0112098/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jencks-2.0-is-out-%21-tp8138779p8138818.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8138779</id>
	<title>Jencks 2.0 is out !</title>
	<published>2007-01-03T02:59:29Z</published>
	<updated>2007-01-03T02:59:29Z</updated>
	<author>
		<name>gnodet</name>
	</author>
	<content type="html">See &lt;a href=&quot;http://jencks.org/Jencks+2.0+Release&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jencks.org/Jencks+2.0+Release&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Cheers,
&lt;br&gt;Guillaume Nodet
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jencks-2.0-is-out-%21-tp8138779p8138779.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-8081011</id>
	<title>Release jencks 2.0 ?</title>
	<published>2006-12-28T14:19:52Z</published>
	<updated>2006-12-28T14:19:52Z</updated>
	<author>
		<name>gnodet</name>
	</author>
	<content type="html">Now that geronimo 1.2-beta has been released,
&lt;br&gt;what about releasing jencks 2.0 ?
&lt;br&gt;&lt;br&gt;We have to keep in mind that there are some blocking problems
&lt;br&gt;in the latest activemq release which has been fixed, but not yet
&lt;br&gt;released, but I'm not sure we really need to wait for these updates,
&lt;br&gt;as there will be no impact on jencks code itself.
&lt;br&gt;&lt;br&gt;Here's my +1
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Cheers,
&lt;br&gt;Guillaume Nodet
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Release-jencks-2.0---tp8081011p8081011.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7988917</id>
	<title>Re: Dedicated ActiveMQ pooled ConnectionFactory with XA / JCA support</title>
	<published>2006-12-20T04:03:08Z</published>
	<updated>2006-12-20T04:03:08Z</updated>
	<author>
		<name>gnodet</name>
	</author>
	<content type="html">Btw, I've blogged about that at &lt;a href=&quot;http://gnodet.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://gnodet.blogspot.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;On 12/19/06, Guillaume Nodet &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7988917&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnodet@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have committed in jencks some work I have done the past weeks
&lt;br&gt;&amp;gt; on a pooled ConnectionFactory for ActiveMQ.
&lt;br&gt;&amp;gt; This add the following features:
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;* multiple connections are used to improve throughput (until the
&lt;br&gt;&amp;gt; AMQ broker is multithreaded)
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;* support for XA transactions: when creating a session, if an XA
&lt;br&gt;&amp;gt; transaction is active,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp;the session will be enlisted in this transaction
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp;* support for JCA : if used with JCA inbound support, there is a
&lt;br&gt;&amp;gt; need to wrap the
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; XAResource so that the TM knows that both XA resources belongs to the same
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; ResourceManager
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Support for XA / JCA is much faster than the JCA outbound support
&lt;br&gt;&amp;gt; because the AMQ resource adapter reverts the connection in a fully clean state
&lt;br&gt;&amp;gt; after use. &amp;nbsp;This may be needed when dealing with container managed security,
&lt;br&gt;&amp;gt; but when this feature is not used, I would recommend using this pooled
&lt;br&gt;&amp;gt; connection factories, which performs much better.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Cheers,
&lt;br&gt;Guillaume Nodet
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Dedicated-ActiveMQ-pooled-ConnectionFactory-with-XA---JCA-support-tp7944953p7988917.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7944953</id>
	<title>Dedicated ActiveMQ pooled ConnectionFactory with XA / JCA support</title>
	<published>2006-12-19T02:40:11Z</published>
	<updated>2006-12-19T02:40:11Z</updated>
	<author>
		<name>gnodet</name>
	</author>
	<content type="html">I have committed in jencks some work I have done the past weeks
&lt;br&gt;on a pooled ConnectionFactory for ActiveMQ.
&lt;br&gt;This add the following features:
&lt;br&gt;&amp;nbsp; &amp;nbsp;* multiple connections are used to improve throughput (until the
&lt;br&gt;AMQ broker is multithreaded)
&lt;br&gt;&amp;nbsp; &amp;nbsp;* support for XA transactions: when creating a session, if an XA
&lt;br&gt;transaction is active,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;the session will be enlisted in this transaction
&lt;br&gt;&amp;nbsp; &amp;nbsp;* support for JCA : if used with JCA inbound support, there is a
&lt;br&gt;need to wrap the
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; XAResource so that the TM knows that both XA resources belongs to the same
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ResourceManager
&lt;br&gt;&lt;br&gt;Support for XA / JCA is much faster than the JCA outbound support
&lt;br&gt;because the AMQ resource adapter reverts the connection in a fully clean state
&lt;br&gt;after use. &amp;nbsp;This may be needed when dealing with container managed security,
&lt;br&gt;but when this feature is not used, I would recommend using this pooled
&lt;br&gt;connection factories, which performs much better.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Cheers,
&lt;br&gt;Guillaume Nodet
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Dedicated-ActiveMQ-pooled-ConnectionFactory-with-XA---JCA-support-tp7944953p7944953.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6162406</id>
	<title>Re: Re: What about releasing 1.3 ?</title>
	<published>2006-09-05T17:30:41Z</published>
	<updated>2006-09-05T17:30:41Z</updated>
	<author>
		<name>Dain Sundstrom</name>
	</author>
	<content type="html">Sweet!
&lt;br&gt;&lt;br&gt;-dain
&lt;br&gt;&lt;br&gt;On Sep 4, 2006, at 7:19 AM, Guillaume Nodet wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Done :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 9/4/06, Guillaume Nodet &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6162406&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnodet@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; I'd like to make a 1.3 release of jencks.
&lt;br&gt;&amp;gt; There is not much changes, it is mainly about updating to the new &amp;nbsp;
&lt;br&gt;&amp;gt; Geronimo 1.1 jars.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Guillaume Nodet
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Guillaume Nodet
&lt;/div&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/What-about-releasing-1.3---tp6133330p6162406.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6136404</id>
	<title>Re: What about releasing 1.3 ?</title>
	<published>2006-09-04T08:19:47Z</published>
	<updated>2006-09-04T08:19:47Z</updated>
	<author>
		<name>gnodet</name>
	</author>
	<content type="html">Done :)&lt;br&gt;&lt;br&gt;&lt;div&gt;&lt;span class=&quot;gmail_quote&quot;&gt;On 9/4/06, &lt;b class=&quot;gmail_sendername&quot;&gt;Guillaume Nodet&lt;/b&gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6136404&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnodet@...&lt;/a&gt;&amp;gt; wrote:&lt;/span&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
&lt;div&gt;I'd like to make a 1.3 release of &lt;span id=&quot;st&quot; name=&quot;st&quot; class=&quot;st&quot;&gt;jencks&lt;/span&gt;.&lt;br&gt;There is not much changes, it is mainly about updating to the new Geronimo 1.1 jars.&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Cheers,&lt;br&gt;&lt;/div&gt;&lt;div&gt;
&lt;span class=&quot;sg&quot;&gt;Guillaume Nodet

&lt;/span&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Cheers,&lt;br&gt;Guillaume Nodet
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/What-about-releasing-1.3---tp6133330p6136404.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6133344</id>
	<title>Re: What about releasing 1.3 ?</title>
	<published>2006-09-04T04:46:18Z</published>
	<updated>2006-09-04T04:46:18Z</updated>
	<author>
		<name>James.Strachan</name>
	</author>
	<content type="html">+1 sounds good to me
&lt;br&gt;&lt;br&gt;On 9/4/06, Guillaume Nodet &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6133344&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gnodet@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; I'd like to make a 1.3 release of jencks.
&lt;br&gt;&amp;gt; There is not much changes, it is mainly about updating to the new Geronimo
&lt;br&gt;&amp;gt; 1.1 jars.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt; Guillaume Nodet
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;James
&lt;br&gt;-------
&lt;br&gt;&lt;a href=&quot;http://radio.weblogs.com/0112098/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://radio.weblogs.com/0112098/&lt;/a&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe from this list please visit:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://xircles.codehaus.org/manage_email&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://xircles.codehaus.org/manage_email&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/What-about-releasing-1.3---tp6133330p6133344.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6133330</id>
	<title>What about releasing 1.3 ?</title>
	<published>2006-09-04T04:45:11Z</published>
	<updated>2006-09-04T04:45:11Z</updated>
	<author>
		<name>gnodet</name>
	</author>
	<content type="html">I'd like to make a 1.3 release of jencks.&lt;br&gt;There is not much changes, it is mainly about updating to the new Geronimo 1.1 jars.&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Cheers,&lt;br&gt;Guillaume Nodet
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/What-about-releasing-1.3---tp6133330p6133330.html" />
</entry>

</feed>
