<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: Using Lingo with Spring 2.0 Message Driven POJOs</title>
	<atom:link href="https://blackbeanbag.net/wp/2005/12/19/using-lingo-with-spring-20-message-driven-pojos/feed/" rel="self" type="application/rss+xml" />
	<link>https://blackbeanbag.net/wp/2005/12/19/using-lingo-with-spring-20-message-driven-pojos/</link>
	<description>Thoughts on software development and other stuff</description>
	<lastBuildDate>Sat, 20 Jul 2013 01:54:41 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=3.9.40</generator>
	<item>
		<title>By: Southin Simphoukham [Visitor]</title>
		<link>https://blackbeanbag.net/wp/2005/12/19/using-lingo-with-spring-20-message-driven-pojos/comment-page-1/#comment-30</link>
		<dc:creator><![CDATA[Southin Simphoukham [Visitor]]]></dc:creator>
		<pubDate>Wed, 18 Oct 2006 14:57:29 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=34#comment-30</guid>
		<description><![CDATA[Hi:&lt;br /&gt;
&lt;br /&gt;
Does anyone have a sample Spring 2.0 configure file for the MDP that uses Tibco JMS.  I am given the following information and trying to put the pieces together.&lt;br /&gt;
&lt;br /&gt;

]]></description>
		<content:encoded><![CDATA[<p>Hi:</p>
<p>Does anyone have a sample Spring 2.0 configure file for the MDP that uses Tibco JMS.  I am given the following information and trying to put the pieces together.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Cresswell [Visitor]</title>
		<link>https://blackbeanbag.net/wp/2005/12/19/using-lingo-with-spring-20-message-driven-pojos/comment-page-1/#comment-29</link>
		<dc:creator><![CDATA[Steve Cresswell [Visitor]]]></dc:creator>
		<pubDate>Thu, 05 Oct 2006 13:04:17 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=34#comment-29</guid>
		<description><![CDATA[Another example of creating MQ objects in Spring without JNDI...&lt;br /&gt;
&lt;br /&gt;
http://www.javaanswers.com/viewtopic.php?t=20
]]></description>
		<content:encoded><![CDATA[<p>Another example of creating MQ objects in Spring without JNDI&#8230;</p>
<p><a href="http://www.javaanswers.com/viewtopic.php?t=20" rel="nofollow">http://www.javaanswers.com/viewtopic.php?t=20</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gunawan [Visitor]</title>
		<link>https://blackbeanbag.net/wp/2005/12/19/using-lingo-with-spring-20-message-driven-pojos/comment-page-1/#comment-28</link>
		<dc:creator><![CDATA[gunawan [Visitor]]]></dc:creator>
		<pubDate>Fri, 24 Feb 2006 04:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=34#comment-28</guid>
		<description><![CDATA[Sorry this is my third try to display xml code, I have tried this with activeMQ. I make asynchronous client call and wait for reply. At server side, I have 2 xml, mdp-service.xml like this&lt;br /&gt;
&lt;br /&gt;
&lt;bean id=&quot;server&quot; class=&quot;org.logicblaze.lingo.jms.JmsServiceExporter&quot;&gt;&lt;br /&gt;
&lt;property name=&quot;service&quot;&gt;&lt;br /&gt;
&lt;bean class=&quot;service.RemoteServiceImpl&quot; /&gt;&lt;br /&gt;
&lt;/property&gt;&lt;br /&gt;
&lt;property name=&quot;serviceInterface&quot; &lt;br /&gt;
value=&quot;service.common.RemoteService&quot; /&gt;&lt;br /&gt;
&lt;property name=&quot;connectionFactory&quot;&gt;&lt;br /&gt;
&lt;ref bean=&quot;connectionFactory&quot; /&gt;&lt;br /&gt;
&lt;/property&gt;&lt;br /&gt;
&lt;/bean&gt;&lt;br /&gt;
&lt;bean id=&quot;messageListenerContainer&quot; class=&quot;org.springframework.jms.listener.DefaultMessageListenerContainer&quot;&gt;&lt;br /&gt;
&lt;property name=&quot;connectionFactory&quot; ref=&quot;connectionFactory&quot;/&gt;&lt;br /&gt;
&lt;property name=&quot;destination&quot; ref=&quot;destination&quot;/&gt;&lt;br /&gt;
&lt;property name=&quot;messageListener&quot; ref=&quot;server&quot;/&gt;&lt;br /&gt;
&lt;property name=&quot;concurrentConsumers&quot; value=&quot;5&quot;/&gt;&lt;br /&gt;
&lt;property name=&quot;receiveTimeout&quot; value=&quot;-1&quot; /&gt;&lt;br /&gt;
&lt;property name=&quot;transactionTimeout&quot; value=&quot;-1&quot;/&gt;&lt;br /&gt;
&lt;/bean&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
and mdp-common.xml like this&lt;br /&gt;
&lt;br /&gt;
&lt;bean id=&quot;connectionFactory&quot;&lt;br /&gt;
class=&quot;org.activemq.ActiveMQConnectionFactory&quot;&gt;&lt;br /&gt;
&lt;property name=&quot;brokerURL&quot; value=&quot;tcp://systech:61616&quot;/&gt;&lt;br /&gt;
&lt;/bean&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;bean id=&quot;destination&quot;&lt;br /&gt;
class=&quot;org.activemq.message.ActiveMQQueue&quot;&gt;&lt;br /&gt;
&lt;constructor-arg index=&quot;0&quot; value=&quot;Test.Asyn&quot; /&gt;&lt;br /&gt;
&lt;/bean&gt;&lt;br /&gt;
&lt;br /&gt;
At server side I also have 2 interface, RemoteService like this&lt;br /&gt;
&lt;br /&gt;
public interface RemoteService {&lt;br /&gt;
public void responseIt(String input,ResultListener listener);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
and ResultListener like this&lt;br /&gt;
&lt;br /&gt;
public interface ResultListener extends EventListener{&lt;br /&gt;
public void onResult(String data);&lt;br /&gt;
public void stop();&lt;br /&gt;
public boolean isStop();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
and then I Implement RemoteService like this&lt;br /&gt;
&lt;br /&gt;
public class RemoteServiceImpl implements RemoteService {&lt;br /&gt;
public void responseIt(String input, ResultListener listener) {&lt;br /&gt;
System.out.println(&quot;Data (&quot;+input+&quot;) in method ResponseIt&quot;);&lt;br /&gt;
listener.onResult(input);&lt;br /&gt;
listener.stop();&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
This method have 2 arguments, data and listener, when this method receive data, this method will pass data to listener(ResultListener Interface will be implemented at client) and call stop method at listener.&lt;br /&gt;
and I start server with simple code like this:&lt;br /&gt;
&lt;br /&gt;
public static void main(String[] args) {&lt;br /&gt;
ApplicationContext ctx = new&lt;br /&gt;
ClassPathXmlApplicationContext(&lt;br /&gt;
new String[]  {&quot;mdp-common.xml&quot;, &quot;mdp-service.xml&quot;});&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
At Client I have 2 xml, mdp-client.xml and mdp-common.xml(the same xml as mdp-common.xml at server), mdp-client.xml like this&lt;br /&gt;
&lt;br /&gt;
&lt;bean id=&quot;client&quot;&lt;br /&gt;
class=&quot;org.logicblaze.lingo.jms.JmsProxyFactoryBean&quot;&gt;&lt;br /&gt;
&lt;property name=&quot;serviceInterface&quot; &lt;br /&gt;
value=&quot;service.common.RemoteService&quot;/&gt;&lt;br /&gt;
&lt;property name=&quot;connectionFactory&quot; ref=&quot;connectionFactory&quot; /&gt;&lt;br /&gt;
&lt;property name=&quot;destination&quot; ref=&quot;destination&quot; /&gt;&lt;br /&gt;
&lt;property name=&quot;remoteInvocationFactory&quot; ref=&quot;invocationFactory&quot; /&gt;&lt;br /&gt;
&lt;/bean&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;bean id=&quot;invocationFactory&quot; class=&quot;org.logicblaze.lingo.LingoRemoteInvocationFactory&quot;&gt;&lt;br /&gt;
&lt;constructor-arg&gt;&lt;br /&gt;
&lt;bean class=&quot;org.logicblaze.lingo.SimpleMetadataStrategy&quot;&gt;&lt;br /&gt;
&lt;property name=&quot;oneWayForVoidMethods&quot; value=&quot;true&quot; /&gt;&lt;br /&gt;
&lt;/bean&gt;&lt;br /&gt;
&lt;/constructor-arg&gt;&lt;br /&gt;
&lt;/bean&gt;&lt;br /&gt;
&lt;br /&gt;
I use LingoRemoteInvocationFactory for asynchronous call like example at lingo site.&lt;br /&gt;
At client I have 2 interface ResultListener and RemoteService(the same code like ResultListener and RemoteService at server side)&lt;br /&gt;
and I implement ResultListener like this&lt;br /&gt;
&lt;br /&gt;
public class ResultListenerImpl implements ResultListener {&lt;br /&gt;
boolean llStop=false;&lt;br /&gt;
&lt;br /&gt;
public void onResult(String data) {&lt;br /&gt;
System.out.println(data);&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
public void stop() {&lt;br /&gt;
llStop=true;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
public boolean isStop() {&lt;br /&gt;
return llStop;&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
At method onResult(), I just display data that send by method responseIt from server.&lt;br /&gt;
At method stop(), I just assign instance variable llStop to true.&lt;br /&gt;
At client I have testing code like this&lt;br /&gt;
&lt;br /&gt;
public static void main(String[] args) {&lt;br /&gt;
ApplicationContext ctx = new&lt;br /&gt;
ClassPathXmlApplicationContext(&lt;br /&gt;
new String[] {&quot;mdp-common.xml&quot;,&quot;mdp-client.xml&quot;});&lt;br /&gt;
&lt;br /&gt;
RemoteService client = (RemoteService) ctx.getBean(&quot;client&quot;);&lt;br /&gt;
ResultListener result;&lt;br /&gt;
&lt;br /&gt;
System.out.println(&quot;Run ResponseIt&quot;);&lt;br /&gt;
result=new ResultListenerImpl();&lt;br /&gt;
client.responseIt(&quot;Hello&quot;,result);&lt;br /&gt;
System.out.println(&quot;Wait for Result&quot;);&lt;br /&gt;
&lt;br /&gt;
while(result.isStop()==false){&lt;br /&gt;
try {&lt;br /&gt;
Thread.sleep(10);&lt;br /&gt;
} catch (InterruptedException e) {&lt;br /&gt;
e.printStackTrace();&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
System.out.println(&quot;Test Finish&quot;);&lt;br /&gt;
System.exit(0);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
I get remoteService&lt;br /&gt;
I create object ResultListenerImpl&lt;br /&gt;
I call method responseIt() at remoteService and pass data with &quot;Hello&quot; and pass listener with object ResultListenerImpl.&lt;br /&gt;
I wait for result from server and monitor with flag isStop() at object ResultListenerImpl&lt;br /&gt;
&lt;br /&gt;
When I run server and client at the same machine, it&#039;s work, the result is:&lt;br /&gt;
Run ResponseIt&lt;br /&gt;
Wait for Result&lt;br /&gt;
Hello&lt;br /&gt;
Test Finish&lt;br /&gt;
&lt;br /&gt;
But when I split server and client with 2 machine it does not work, and result at client like this:&lt;br /&gt;
Run ResponseIt&lt;br /&gt;
Wait for Result&lt;br /&gt;
&lt;br /&gt;
No result at client, but activeMQ console displays message like this&lt;br /&gt;
&lt;br /&gt;
adding new client: ID:Cln-1093-....&lt;br /&gt;
&lt;br /&gt;
Cln is my client machine name&lt;br /&gt;
Systech is my server name&lt;br /&gt;
I use the same library at server and client, which are:&lt;br /&gt;
activemq-core-3.1-SNAPSHOT.jar&lt;br /&gt;
commons-logging-1.0.3.jar&lt;br /&gt;
concurrent-1.3.4.jar&lt;br /&gt;
geronimo-spec-j2ee-management-1.0-rc4.jar&lt;br /&gt;
geronimo-spec-jms-1.1-rc4.jar&lt;br /&gt;
lingo-1.0-SNAPSHOT.jar&lt;br /&gt;
lingo-1.1.jar&lt;br /&gt;
lingo-1.2-SNAPSHOT.jar&lt;br /&gt;
&lt;br /&gt;
Do I miss something?&lt;br /&gt;
log4j-1.2.9.jar&lt;br /&gt;
spring.jar
]]></description>
		<content:encoded><![CDATA[<p>Sorry this is my third try to display xml code, I have tried this with activeMQ. I make asynchronous client call and wait for reply. At server side, I have 2 xml, mdp-service.xml like this</p>
<p>&lt;bean id=&#8221;server&#8221; class=&#8221;org.logicblaze.lingo.jms.JmsServiceExporter&#8221;><br />
&lt;property name=&#8221;service&#8221;><br />
&lt;bean class=&#8221;service.RemoteServiceImpl&#8221; /><br />
&lt;/property><br />
&lt;property name=&#8221;serviceInterface&#8221; <br />
value=&#8221;service.common.RemoteService&#8221; /><br />
&lt;property name=&#8221;connectionFactory&#8221;><br />
&lt;ref bean=&#8221;connectionFactory&#8221; /><br />
&lt;/property><br />
&lt;/bean><br />
&lt;bean id=&#8221;messageListenerContainer&#8221; class=&#8221;org.springframework.jms.listener.DefaultMessageListenerContainer&#8221;><br />
&lt;property name=&#8221;connectionFactory&#8221; ref=&#8221;connectionFactory&#8221;/><br />
&lt;property name=&#8221;destination&#8221; ref=&#8221;destination&#8221;/><br />
&lt;property name=&#8221;messageListener&#8221; ref=&#8221;server&#8221;/><br />
&lt;property name=&#8221;concurrentConsumers&#8221; value=&#8221;5&#8243;/><br />
&lt;property name=&#8221;receiveTimeout&#8221; value=&#8221;-1&#8243; /><br />
&lt;property name=&#8221;transactionTimeout&#8221; value=&#8221;-1&#8243;/><br />
&lt;/bean></p>
<p>
and mdp-common.xml like this</p>
<p>&lt;bean id=&#8221;connectionFactory&#8221;<br />
class=&#8221;org.activemq.ActiveMQConnectionFactory&#8221;><br />
&lt;property name=&#8221;brokerURL&#8221; value=&#8221;tcp://systech:61616&#8243;/><br />
&lt;/bean></p>
<p>&lt;bean id=&#8221;destination&#8221;<br />
class=&#8221;org.activemq.message.ActiveMQQueue&#8221;><br />
&lt;constructor-arg index=&#8221;0&#8243; value=&#8221;Test.Asyn&#8221; /><br />
&lt;/bean></p>
<p>At server side I also have 2 interface, RemoteService like this</p>
<p>public interface RemoteService {<br />
public void responseIt(String input,ResultListener listener);<br />
}</p>
<p>and ResultListener like this</p>
<p>public interface ResultListener extends EventListener{<br />
public void onResult(String data);<br />
public void stop();<br />
public boolean isStop();<br />
}</p>
<p>and then I Implement RemoteService like this</p>
<p>public class RemoteServiceImpl implements RemoteService {<br />
public void responseIt(String input, ResultListener listener) {<br />
System.out.println(&#8220;Data (&#8220;+input+&#8221;) in method ResponseIt&#8221;);<br />
listener.onResult(input);<br />
listener.stop();<br />
}<br />
}<br />
This method have 2 arguments, data and listener, when this method receive data, this method will pass data to listener(ResultListener Interface will be implemented at client) and call stop method at listener.<br />
and I start server with simple code like this:</p>
<p>public static void main(String[] args) {<br />
ApplicationContext ctx = new<br />
ClassPathXmlApplicationContext(<br />
new String[]  {&#8220;mdp-common.xml&#8221;, &#8220;mdp-service.xml&#8221;});</p>
<p>}</p>
<p>At Client I have 2 xml, mdp-client.xml and mdp-common.xml(the same xml as mdp-common.xml at server), mdp-client.xml like this</p>
<p>&lt;bean id=&#8221;client&#8221;<br />
class=&#8221;org.logicblaze.lingo.jms.JmsProxyFactoryBean&#8221;><br />
&lt;property name=&#8221;serviceInterface&#8221; <br />
value=&#8221;service.common.RemoteService&#8221;/><br />
&lt;property name=&#8221;connectionFactory&#8221; ref=&#8221;connectionFactory&#8221; /><br />
&lt;property name=&#8221;destination&#8221; ref=&#8221;destination&#8221; /><br />
&lt;property name=&#8221;remoteInvocationFactory&#8221; ref=&#8221;invocationFactory&#8221; /><br />
&lt;/bean></p>
<p>&lt;bean id=&#8221;invocationFactory&#8221; class=&#8221;org.logicblaze.lingo.LingoRemoteInvocationFactory&#8221;><br />
&lt;constructor-arg><br />
&lt;bean class=&#8221;org.logicblaze.lingo.SimpleMetadataStrategy&#8221;><br />
&lt;property name=&#8221;oneWayForVoidMethods&#8221; value=&#8221;true&#8221; /><br />
&lt;/bean><br />
&lt;/constructor-arg><br />
&lt;/bean></p>
<p>I use LingoRemoteInvocationFactory for asynchronous call like example at lingo site.<br />
At client I have 2 interface ResultListener and RemoteService(the same code like ResultListener and RemoteService at server side)<br />
and I implement ResultListener like this</p>
<p>public class ResultListenerImpl implements ResultListener {<br />
boolean llStop=false;</p>
<p>public void onResult(String data) {<br />
System.out.println(data);</p>
<p>}</p>
<p>public void stop() {<br />
llStop=true;<br />
}</p>
<p>public boolean isStop() {<br />
return llStop;<br />
}<br />
}</p>
<p>At method onResult(), I just display data that send by method responseIt from server.<br />
At method stop(), I just assign instance variable llStop to true.<br />
At client I have testing code like this</p>
<p>public static void main(String[] args) {<br />
ApplicationContext ctx = new<br />
ClassPathXmlApplicationContext(<br />
new String[] {&#8220;mdp-common.xml&#8221;,&#8221;mdp-client.xml&#8221;});</p>
<p>RemoteService client = (RemoteService) ctx.getBean(&#8220;client&#8221;);<br />
ResultListener result;</p>
<p>System.out.println(&#8220;Run ResponseIt&#8221;);<br />
result=new ResultListenerImpl();<br />
client.responseIt(&#8220;Hello&#8221;,result);<br />
System.out.println(&#8220;Wait for Result&#8221;);</p>
<p>while(result.isStop()==false){<br />
try {<br />
Thread.sleep(10);<br />
} catch (InterruptedException e) {<br />
e.printStackTrace();<br />
}<br />
}</p>
<p>System.out.println(&#8220;Test Finish&#8221;);<br />
System.exit(0);<br />
}</p>
<p>I get remoteService<br />
I create object ResultListenerImpl<br />
I call method responseIt() at remoteService and pass data with &#8220;Hello&#8221; and pass listener with object ResultListenerImpl.<br />
I wait for result from server and monitor with flag isStop() at object ResultListenerImpl</p>
<p>When I run server and client at the same machine, it&#8217;s work, the result is:<br />
Run ResponseIt<br />
Wait for Result<br />
Hello<br />
Test Finish</p>
<p>But when I split server and client with 2 machine it does not work, and result at client like this:<br />
Run ResponseIt<br />
Wait for Result</p>
<p>No result at client, but activeMQ console displays message like this</p>
<p>adding new client: ID:Cln-1093-&#8230;.</p>
<p>Cln is my client machine name<br />
Systech is my server name<br />
I use the same library at server and client, which are:<br />
activemq-core-3.1-SNAPSHOT.jar<br />
commons-logging-1.0.3.jar<br />
concurrent-1.3.4.jar<br />
geronimo-spec-j2ee-management-1.0-rc4.jar<br />
geronimo-spec-jms-1.1-rc4.jar<br />
lingo-1.0-SNAPSHOT.jar<br />
lingo-1.1.jar<br />
lingo-1.2-SNAPSHOT.jar</p>
<p>Do I miss something?<br />
log4j-1.2.9.jar<br />
spring.jar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gunawan [Visitor]</title>
		<link>https://blackbeanbag.net/wp/2005/12/19/using-lingo-with-spring-20-message-driven-pojos/comment-page-1/#comment-27</link>
		<dc:creator><![CDATA[gunawan [Visitor]]]></dc:creator>
		<pubDate>Fri, 24 Feb 2006 04:00:21 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=34#comment-27</guid>
		<description><![CDATA[Sorry the xml code is not displayed in my prvious comment, so I resubmit and give html comment tag aroud it, I hope this work.&lt;br /&gt;
Hello, I have tried this with activeMQ. I make asynchronous client call and wait for reply. At server side, I have 2 xml, mdp-service.xml like this&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
and mdp-common.xml like this&lt;br /&gt;
&lt;br /&gt;
At server side I also have 2 interface, RemoteService like this&lt;br /&gt;
&lt;br /&gt;
public interface RemoteService {&lt;br /&gt;
public void responseIt(String input,ResultListener listener);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
and ResultListener like this&lt;br /&gt;
&lt;br /&gt;
public interface ResultListener extends EventListener{&lt;br /&gt;
public void onResult(String data);&lt;br /&gt;
public void stop();&lt;br /&gt;
public boolean isStop();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
and then I Implement RemoteService like this&lt;br /&gt;
&lt;br /&gt;
public class RemoteServiceImpl implements RemoteService {&lt;br /&gt;
public void responseIt(String input, ResultListener listener) {&lt;br /&gt;
System.out.println(&quot;Data (&quot;+input+&quot;) in method ResponseIt&quot;);&lt;br /&gt;
listener.onResult(input);&lt;br /&gt;
listener.stop();&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
This method have 2 arguments, data and listener, when this method receive data, this method will pass data to listener(ResultListener Interface will be implemented at client) and call stop method at listener.&lt;br /&gt;
and I start server with simple code like this:&lt;br /&gt;
&lt;br /&gt;
public static void main(String[] args) {&lt;br /&gt;
ApplicationContext ctx = new&lt;br /&gt;
ClassPathXmlApplicationContext(&lt;br /&gt;
new String[]  {&quot;mdp-common.xml&quot;, &quot;mdp-service.xml&quot;});&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
At Client I have 2 xml, mdp-client.xml and mdp-common.xml(the same xml as mdp-common.xml at server), mdp-client.xml like this&lt;br /&gt;
&lt;br /&gt;
I use LingoRemoteInvocationFactory for asynchronous call like example at lingo site.&lt;br /&gt;
At client I have 2 interface ResultListener and RemoteService(the same code like ResultListener and RemoteService at server side)&lt;br /&gt;
and I implement ResultListener like this&lt;br /&gt;
&lt;br /&gt;
public class ResultListenerImpl implements ResultListener {&lt;br /&gt;
boolean llStop=false;&lt;br /&gt;
&lt;br /&gt;
public void onResult(String data) {&lt;br /&gt;
System.out.println(data);&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
public void stop() {&lt;br /&gt;
llStop=true;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
public boolean isStop() {&lt;br /&gt;
return llStop;&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
At method onResult(), I just display data that send by method responseIt from server.&lt;br /&gt;
At method stop(), I just assign instance variable llStop to true.&lt;br /&gt;
At client I have testing code like this&lt;br /&gt;
&lt;br /&gt;
public static void main(String[] args) {&lt;br /&gt;
ApplicationContext ctx = new&lt;br /&gt;
ClassPathXmlApplicationContext(&lt;br /&gt;
new String[] {&quot;mdp-common.xml&quot;,&quot;mdp-client.xml&quot;});&lt;br /&gt;
&lt;br /&gt;
RemoteService client = (RemoteService) ctx.getBean(&quot;client&quot;);&lt;br /&gt;
ResultListener result;&lt;br /&gt;
&lt;br /&gt;
System.out.println(&quot;Run ResponseIt&quot;);&lt;br /&gt;
result=new ResultListenerImpl();&lt;br /&gt;
client.responseIt(&quot;Hello&quot;,result);&lt;br /&gt;
System.out.println(&quot;Wait for Result&quot;);&lt;br /&gt;
&lt;br /&gt;
while(result.isStop()==false){&lt;br /&gt;
try {&lt;br /&gt;
Thread.sleep(10);&lt;br /&gt;
} catch (InterruptedException e) {&lt;br /&gt;
e.printStackTrace();&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
System.out.println(&quot;Test Finish&quot;);&lt;br /&gt;
System.exit(0);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
I get remoteService&lt;br /&gt;
I create object ResultListenerImpl&lt;br /&gt;
I call method responseIt() at remoteService and pass data with &quot;Hello&quot; and pass listener with object ResultListenerImpl.&lt;br /&gt;
I wait for result from server and monitor with flag isStop() at object ResultListenerImpl&lt;br /&gt;
&lt;br /&gt;
When I run server and client at the same machine, it&#039;s work, the result is:&lt;br /&gt;
Run ResponseIt&lt;br /&gt;
Wait for Result&lt;br /&gt;
Hello&lt;br /&gt;
Test Finish&lt;br /&gt;
&lt;br /&gt;
But when I split server and client with 2 machine it does not work, and result at client like this:&lt;br /&gt;
Run ResponseIt&lt;br /&gt;
Wait for Result&lt;br /&gt;
&lt;br /&gt;
No result at client, but activeMQ console displays message like this&lt;br /&gt;
&lt;br /&gt;
adding new client: ID:Cln-1093-....&lt;br /&gt;
&lt;br /&gt;
Cln is my client machine name&lt;br /&gt;
Systech is my server name&lt;br /&gt;
I use the same library at server and client, which are:&lt;br /&gt;
activemq-core-3.1-SNAPSHOT.jar&lt;br /&gt;
commons-logging-1.0.3.jar&lt;br /&gt;
concurrent-1.3.4.jar&lt;br /&gt;
geronimo-spec-j2ee-management-1.0-rc4.jar&lt;br /&gt;
geronimo-spec-jms-1.1-rc4.jar&lt;br /&gt;
lingo-1.0-SNAPSHOT.jar&lt;br /&gt;
lingo-1.1.jar&lt;br /&gt;
lingo-1.2-SNAPSHOT.jar&lt;br /&gt;
&lt;br /&gt;
Do I miss something?&lt;br /&gt;
log4j-1.2.9.jar&lt;br /&gt;
spring.jar
]]></description>
		<content:encoded><![CDATA[<p>Sorry the xml code is not displayed in my prvious comment, so I resubmit and give html comment tag aroud it, I hope this work.<br />
Hello, I have tried this with activeMQ. I make asynchronous client call and wait for reply. At server side, I have 2 xml, mdp-service.xml like this</p>
<p>
and mdp-common.xml like this</p>
<p>At server side I also have 2 interface, RemoteService like this</p>
<p>public interface RemoteService {<br />
public void responseIt(String input,ResultListener listener);<br />
}</p>
<p>and ResultListener like this</p>
<p>public interface ResultListener extends EventListener{<br />
public void onResult(String data);<br />
public void stop();<br />
public boolean isStop();<br />
}</p>
<p>and then I Implement RemoteService like this</p>
<p>public class RemoteServiceImpl implements RemoteService {<br />
public void responseIt(String input, ResultListener listener) {<br />
System.out.println(&#8220;Data (&#8220;+input+&#8221;) in method ResponseIt&#8221;);<br />
listener.onResult(input);<br />
listener.stop();<br />
}<br />
}<br />
This method have 2 arguments, data and listener, when this method receive data, this method will pass data to listener(ResultListener Interface will be implemented at client) and call stop method at listener.<br />
and I start server with simple code like this:</p>
<p>public static void main(String[] args) {<br />
ApplicationContext ctx = new<br />
ClassPathXmlApplicationContext(<br />
new String[]  {&#8220;mdp-common.xml&#8221;, &#8220;mdp-service.xml&#8221;});</p>
<p>}</p>
<p>At Client I have 2 xml, mdp-client.xml and mdp-common.xml(the same xml as mdp-common.xml at server), mdp-client.xml like this</p>
<p>I use LingoRemoteInvocationFactory for asynchronous call like example at lingo site.<br />
At client I have 2 interface ResultListener and RemoteService(the same code like ResultListener and RemoteService at server side)<br />
and I implement ResultListener like this</p>
<p>public class ResultListenerImpl implements ResultListener {<br />
boolean llStop=false;</p>
<p>public void onResult(String data) {<br />
System.out.println(data);</p>
<p>}</p>
<p>public void stop() {<br />
llStop=true;<br />
}</p>
<p>public boolean isStop() {<br />
return llStop;<br />
}<br />
}</p>
<p>At method onResult(), I just display data that send by method responseIt from server.<br />
At method stop(), I just assign instance variable llStop to true.<br />
At client I have testing code like this</p>
<p>public static void main(String[] args) {<br />
ApplicationContext ctx = new<br />
ClassPathXmlApplicationContext(<br />
new String[] {&#8220;mdp-common.xml&#8221;,&#8221;mdp-client.xml&#8221;});</p>
<p>RemoteService client = (RemoteService) ctx.getBean(&#8220;client&#8221;);<br />
ResultListener result;</p>
<p>System.out.println(&#8220;Run ResponseIt&#8221;);<br />
result=new ResultListenerImpl();<br />
client.responseIt(&#8220;Hello&#8221;,result);<br />
System.out.println(&#8220;Wait for Result&#8221;);</p>
<p>while(result.isStop()==false){<br />
try {<br />
Thread.sleep(10);<br />
} catch (InterruptedException e) {<br />
e.printStackTrace();<br />
}<br />
}</p>
<p>System.out.println(&#8220;Test Finish&#8221;);<br />
System.exit(0);<br />
}</p>
<p>I get remoteService<br />
I create object ResultListenerImpl<br />
I call method responseIt() at remoteService and pass data with &#8220;Hello&#8221; and pass listener with object ResultListenerImpl.<br />
I wait for result from server and monitor with flag isStop() at object ResultListenerImpl</p>
<p>When I run server and client at the same machine, it&#8217;s work, the result is:<br />
Run ResponseIt<br />
Wait for Result<br />
Hello<br />
Test Finish</p>
<p>But when I split server and client with 2 machine it does not work, and result at client like this:<br />
Run ResponseIt<br />
Wait for Result</p>
<p>No result at client, but activeMQ console displays message like this</p>
<p>adding new client: ID:Cln-1093-&#8230;.</p>
<p>Cln is my client machine name<br />
Systech is my server name<br />
I use the same library at server and client, which are:<br />
activemq-core-3.1-SNAPSHOT.jar<br />
commons-logging-1.0.3.jar<br />
concurrent-1.3.4.jar<br />
geronimo-spec-j2ee-management-1.0-rc4.jar<br />
geronimo-spec-jms-1.1-rc4.jar<br />
lingo-1.0-SNAPSHOT.jar<br />
lingo-1.1.jar<br />
lingo-1.2-SNAPSHOT.jar</p>
<p>Do I miss something?<br />
log4j-1.2.9.jar<br />
spring.jar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gunawan [Visitor]</title>
		<link>https://blackbeanbag.net/wp/2005/12/19/using-lingo-with-spring-20-message-driven-pojos/comment-page-1/#comment-26</link>
		<dc:creator><![CDATA[gunawan [Visitor]]]></dc:creator>
		<pubDate>Fri, 24 Feb 2006 03:46:07 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=34#comment-26</guid>
		<description><![CDATA[Hello, I have tried this with activeMQ. I make asynchronous client call and wait for reply. At server side, I have 2 xml, mdp-service.xml like this&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
and mdp-common.xml like this&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
At server side I also have 2 interface, RemoteService like this&lt;br /&gt;
&lt;br /&gt;
public interface RemoteService {&lt;br /&gt;
public void responseIt(String input,ResultListener listener);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
and ResultListener like this&lt;br /&gt;
&lt;br /&gt;
public interface ResultListener extends EventListener{&lt;br /&gt;
public void onResult(String data);&lt;br /&gt;
public void stop();&lt;br /&gt;
public boolean isStop();&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
and then I Implement RemoteService like this&lt;br /&gt;
&lt;br /&gt;
public class RemoteServiceImpl implements RemoteService {&lt;br /&gt;
public void responseIt(String input, ResultListener listener) {&lt;br /&gt;
System.out.println(&quot;Data (&quot;+input+&quot;) in method ResponseIt&quot;);&lt;br /&gt;
listener.onResult(input);&lt;br /&gt;
listener.stop();&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
This method have 2 arguments, data and listener, when this method receive data, this method will pass data to listener(ResultListener Interface will be implemented at client) and call stop method at listener.&lt;br /&gt;
and I start server with simple code like this:&lt;br /&gt;
&lt;br /&gt;
public static void main(String[] args) {&lt;br /&gt;
ApplicationContext ctx = new&lt;br /&gt;
ClassPathXmlApplicationContext(&lt;br /&gt;
new String[]  {&quot;mdp-common.xml&quot;, &quot;mdp-service.xml&quot;});&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
At Client I have 2 xml, mdp-client.xml and mdp-common.xml(the same xml as mdp-common.xml at server), mdp-client.xml like this&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I use LingoRemoteInvocationFactory for asynchronous call like example at lingo site.&lt;br /&gt;
At client I have 2 interface ResultListener and RemoteService(the same code like ResultListener and RemoteService at server side)&lt;br /&gt;
and I implement ResultListener like this&lt;br /&gt;
&lt;br /&gt;
public class ResultListenerImpl implements ResultListener {&lt;br /&gt;
boolean llStop=false;&lt;br /&gt;
&lt;br /&gt;
public void onResult(String data) {&lt;br /&gt;
System.out.println(data);&lt;br /&gt;
&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
public void stop() {&lt;br /&gt;
llStop=true;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
public boolean isStop() {&lt;br /&gt;
return llStop;&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
At method onResult(), I just display data that send by method responseIt from server.&lt;br /&gt;
At method stop(), I just assign instance variable llStop to true.&lt;br /&gt;
At client I have testing code like this&lt;br /&gt;
&lt;br /&gt;
public static void main(String[] args) {&lt;br /&gt;
ApplicationContext ctx = new&lt;br /&gt;
ClassPathXmlApplicationContext(&lt;br /&gt;
new String[] {&quot;mdp-common.xml&quot;,&quot;mdp-client.xml&quot;});&lt;br /&gt;
&lt;br /&gt;
RemoteService client = (RemoteService) ctx.getBean(&quot;client&quot;);&lt;br /&gt;
ResultListener result;&lt;br /&gt;
&lt;br /&gt;
System.out.println(&quot;Run ResponseIt&quot;);&lt;br /&gt;
result=new ResultListenerImpl();&lt;br /&gt;
client.responseIt(&quot;Hello&quot;,result);&lt;br /&gt;
System.out.println(&quot;Wait for Result&quot;);&lt;br /&gt;
&lt;br /&gt;
while(result.isStop()==false){&lt;br /&gt;
try {&lt;br /&gt;
Thread.sleep(10);&lt;br /&gt;
} catch (InterruptedException e) {&lt;br /&gt;
e.printStackTrace();&lt;br /&gt;
}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
System.out.println(&quot;Test Finish&quot;);&lt;br /&gt;
System.exit(0);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
I get remoteService&lt;br /&gt;
I create object ResultListenerImpl&lt;br /&gt;
I call method responseIt() at remoteService and pass data with &quot;Hello&quot; and pass listener with object ResultListenerImpl.&lt;br /&gt;
I wait for result from server and monitor with flag isStop() at object ResultListenerImpl&lt;br /&gt;
&lt;br /&gt;
When I run server and client at the same machine, it&#039;s work, the result is:&lt;br /&gt;
Run ResponseIt&lt;br /&gt;
Wait for Result&lt;br /&gt;
Hello&lt;br /&gt;
Test Finish&lt;br /&gt;
&lt;br /&gt;
But when I split server and client with 2 machine it does not work, and result at client like this:&lt;br /&gt;
Run ResponseIt&lt;br /&gt;
Wait for Result&lt;br /&gt;
&lt;br /&gt;
No result at client, but activeMQ console displays message like this&lt;br /&gt;
&lt;br /&gt;
adding new client: ID:Cln-1093-....&lt;br /&gt;
&lt;br /&gt;
Cln is my client machine name&lt;br /&gt;
Systech is my server name&lt;br /&gt;
I use the same library at server and client, which are:&lt;br /&gt;
activemq-core-3.1-SNAPSHOT.jar&lt;br /&gt;
commons-logging-1.0.3.jar&lt;br /&gt;
concurrent-1.3.4.jar&lt;br /&gt;
geronimo-spec-j2ee-management-1.0-rc4.jar&lt;br /&gt;
geronimo-spec-jms-1.1-rc4.jar&lt;br /&gt;
lingo-1.0-SNAPSHOT.jar&lt;br /&gt;
lingo-1.1.jar&lt;br /&gt;
lingo-1.2-SNAPSHOT.jar&lt;br /&gt;
&lt;br /&gt;
Do I miss something?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;

]]></description>
		<content:encoded><![CDATA[<p>Hello, I have tried this with activeMQ. I make asynchronous client call and wait for reply. At server side, I have 2 xml, mdp-service.xml like this</p>
<p>
and mdp-common.xml like this</p>
<p>At server side I also have 2 interface, RemoteService like this</p>
<p>public interface RemoteService {<br />
public void responseIt(String input,ResultListener listener);<br />
}</p>
<p>and ResultListener like this</p>
<p>public interface ResultListener extends EventListener{<br />
public void onResult(String data);<br />
public void stop();<br />
public boolean isStop();<br />
}</p>
<p>and then I Implement RemoteService like this</p>
<p>public class RemoteServiceImpl implements RemoteService {<br />
public void responseIt(String input, ResultListener listener) {<br />
System.out.println(&#8220;Data (&#8220;+input+&#8221;) in method ResponseIt&#8221;);<br />
listener.onResult(input);<br />
listener.stop();<br />
}<br />
}<br />
This method have 2 arguments, data and listener, when this method receive data, this method will pass data to listener(ResultListener Interface will be implemented at client) and call stop method at listener.<br />
and I start server with simple code like this:</p>
<p>public static void main(String[] args) {<br />
ApplicationContext ctx = new<br />
ClassPathXmlApplicationContext(<br />
new String[]  {&#8220;mdp-common.xml&#8221;, &#8220;mdp-service.xml&#8221;});</p>
<p>}</p>
<p>At Client I have 2 xml, mdp-client.xml and mdp-common.xml(the same xml as mdp-common.xml at server), mdp-client.xml like this</p>
<p>
I use LingoRemoteInvocationFactory for asynchronous call like example at lingo site.<br />
At client I have 2 interface ResultListener and RemoteService(the same code like ResultListener and RemoteService at server side)<br />
and I implement ResultListener like this</p>
<p>public class ResultListenerImpl implements ResultListener {<br />
boolean llStop=false;</p>
<p>public void onResult(String data) {<br />
System.out.println(data);</p>
<p>}</p>
<p>public void stop() {<br />
llStop=true;<br />
}</p>
<p>public boolean isStop() {<br />
return llStop;<br />
}<br />
}</p>
<p>At method onResult(), I just display data that send by method responseIt from server.<br />
At method stop(), I just assign instance variable llStop to true.<br />
At client I have testing code like this</p>
<p>public static void main(String[] args) {<br />
ApplicationContext ctx = new<br />
ClassPathXmlApplicationContext(<br />
new String[] {&#8220;mdp-common.xml&#8221;,&#8221;mdp-client.xml&#8221;});</p>
<p>RemoteService client = (RemoteService) ctx.getBean(&#8220;client&#8221;);<br />
ResultListener result;</p>
<p>System.out.println(&#8220;Run ResponseIt&#8221;);<br />
result=new ResultListenerImpl();<br />
client.responseIt(&#8220;Hello&#8221;,result);<br />
System.out.println(&#8220;Wait for Result&#8221;);</p>
<p>while(result.isStop()==false){<br />
try {<br />
Thread.sleep(10);<br />
} catch (InterruptedException e) {<br />
e.printStackTrace();<br />
}<br />
}</p>
<p>System.out.println(&#8220;Test Finish&#8221;);<br />
System.exit(0);<br />
}</p>
<p>I get remoteService<br />
I create object ResultListenerImpl<br />
I call method responseIt() at remoteService and pass data with &#8220;Hello&#8221; and pass listener with object ResultListenerImpl.<br />
I wait for result from server and monitor with flag isStop() at object ResultListenerImpl</p>
<p>When I run server and client at the same machine, it&#8217;s work, the result is:<br />
Run ResponseIt<br />
Wait for Result<br />
Hello<br />
Test Finish</p>
<p>But when I split server and client with 2 machine it does not work, and result at client like this:<br />
Run ResponseIt<br />
Wait for Result</p>
<p>No result at client, but activeMQ console displays message like this</p>
<p>adding new client: ID:Cln-1093-&#8230;.</p>
<p>Cln is my client machine name<br />
Systech is my server name<br />
I use the same library at server and client, which are:<br />
activemq-core-3.1-SNAPSHOT.jar<br />
commons-logging-1.0.3.jar<br />
concurrent-1.3.4.jar<br />
geronimo-spec-j2ee-management-1.0-rc4.jar<br />
geronimo-spec-jms-1.1-rc4.jar<br />
lingo-1.0-SNAPSHOT.jar<br />
lingo-1.1.jar<br />
lingo-1.2-SNAPSHOT.jar</p>
<p>Do I miss something?</p>
<p></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pperalta [Member]</title>
		<link>https://blackbeanbag.net/wp/2005/12/19/using-lingo-with-spring-20-message-driven-pojos/comment-page-1/#comment-25</link>
		<dc:creator><![CDATA[pperalta [Member]]]></dc:creator>
		<pubDate>Thu, 23 Feb 2006 14:30:20 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=34#comment-25</guid>
		<description><![CDATA[Thanks for the comment Alex!  Good to see that this setup works in other environments...
]]></description>
		<content:encoded><![CDATA[<p>Thanks for the comment Alex!  Good to see that this setup works in other environments&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexandre  Victoor [Visitor]</title>
		<link>https://blackbeanbag.net/wp/2005/12/19/using-lingo-with-spring-20-message-driven-pojos/comment-page-1/#comment-24</link>
		<dc:creator><![CDATA[Alexandre  Victoor [Visitor]]]></dc:creator>
		<pubDate>Thu, 23 Feb 2006 11:07:22 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=34#comment-24</guid>
		<description><![CDATA[last try :&lt;br /&gt;
&lt;bean id=&quot;connectionFactory&quot;&lt;br /&gt;
class=&quot;com.ibm.mq.jms.MQQueueConnectionFactory&quot;&gt;&lt;br /&gt;
&lt;/bean&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;bean id=&quot;Queue&quot;&lt;br /&gt;
class=&quot;com.ibm.mq.jms.MQQueue&quot;&gt;&lt;br /&gt;
&lt;constructor-arg index=&quot;0&quot; value=&quot;queue://YOUR_QMGR/YOUR_QUEUE&quot; /&gt;&lt;br /&gt;
&lt;/bean&gt;
]]></description>
		<content:encoded><![CDATA[<p>last try :<br />
&lt;bean id=&#8221;connectionFactory&#8221;<br />
class=&#8221;com.ibm.mq.jms.MQQueueConnectionFactory&#8221;&gt;<br />
&lt;/bean&gt;</p>
<p>&lt;bean id=&#8221;Queue&#8221;<br />
class=&#8221;com.ibm.mq.jms.MQQueue&#8221;&gt;<br />
&lt;constructor-arg index=&#8221;0&#8243; value=&#8221;queue://YOUR_QMGR/YOUR_QUEUE&#8221; /&gt;<br />
&lt;/bean&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexandre  Victoor [Visitor]</title>
		<link>https://blackbeanbag.net/wp/2005/12/19/using-lingo-with-spring-20-message-driven-pojos/comment-page-1/#comment-23</link>
		<dc:creator><![CDATA[Alexandre  Victoor [Visitor]]]></dc:creator>
		<pubDate>Thu, 23 Feb 2006 11:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=34#comment-23</guid>
		<description><![CDATA[same thing with a &#039;code&#039; tag :&lt;br /&gt;
&lt;code&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;/code&gt;&lt;br /&gt;

]]></description>
		<content:encoded><![CDATA[<p>same thing with a &#8216;code&#8217; tag :<br />
<code></p>
<p></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alexandre  Victoor [Visitor]</title>
		<link>https://blackbeanbag.net/wp/2005/12/19/using-lingo-with-spring-20-message-driven-pojos/comment-page-1/#comment-22</link>
		<dc:creator><![CDATA[Alexandre  Victoor [Visitor]]]></dc:creator>
		<pubDate>Thu, 23 Feb 2006 10:58:37 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=34#comment-22</guid>
		<description><![CDATA[Hello&lt;br /&gt;
FYI, I had tried a while ago to inject via Spring Websphere MQ ressources (connection factories ans so on...) and it just worked fine :)&lt;br /&gt;
I had in my spring xml files something like this:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Alex&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;

]]></description>
		<content:encoded><![CDATA[<p>Hello<br />
FYI, I had tried a while ago to inject via Spring Websphere MQ ressources (connection factories ans so on&#8230;) and it just worked fine <img src="https://blackbeanbag.net/wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> <br />
I had in my spring xml files something like this:</p>
<p>Alex</p>
<p></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gunawan [Visitor]</title>
		<link>https://blackbeanbag.net/wp/2005/12/19/using-lingo-with-spring-20-message-driven-pojos/comment-page-1/#comment-21</link>
		<dc:creator><![CDATA[gunawan [Visitor]]]></dc:creator>
		<pubDate>Mon, 20 Feb 2006 01:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://blackbeanbag.net/wp/?p=34#comment-21</guid>
		<description><![CDATA[Thank&#039;s for your respons, I already try, for server and client in the same computer, it&#039;s work, but when I split application to 2 computer, it&#039;s not work.&lt;br /&gt;
Do you have any reference or someone already try that?, sorry for my english :)
]]></description>
		<content:encoded><![CDATA[<p>Thank&#8217;s for your respons, I already try, for server and client in the same computer, it&#8217;s work, but when I split application to 2 computer, it&#8217;s not work.<br />
Do you have any reference or someone already try that?, sorry for my english <img src="https://blackbeanbag.net/wp/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
