<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Messaging using Flex and Blaze DS</title>
	<atom:link href="http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/feed/" rel="self" type="application/rss+xml" />
	<link>http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/</link>
	<description></description>
	<lastBuildDate>Mon, 16 Nov 2009 08:57:21 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Tuyen Nguyen</title>
		<link>http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27741</link>
		<dc:creator>Tuyen Nguyen</dc:creator>
		<pubDate>Tue, 27 Oct 2009 02:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27741</guid>
		<description>Question:
when i select a user and type in a message and click Send all i get is a popup which says

[object Object]

Answer:

Suppose you have object Message(title,content,responseTime)

You setup the AsyncMessage as follow in the PRODUCER:
var aMsg:AsyncMessage=new AsyncMessage();
msg.body.title= txtTitle.text;
msg.body.content=txtContent.text;
msg.body.responseTime=txtResponseTime.text;
....
producer.send(msg);

You&#039;ll read AsyncMessage as follow in the CONSUMER:
strTitle = msg.body.title;
strContent = msg.body.content;
strResponseTime = msg.body.responseTime;

This works for me, but I feel annoying if you want to send an object which contains several objects inside it, the setup and reading information procedure is not fun at all. I wish Adobe help us the &quot;body&quot; attribute in AsyncMessage as Object class in Java.

Tuyen Nguyen</description>
		<content:encoded><![CDATA[<p>Question:<br />
when i select a user and type in a message and click Send all i get is a popup which says</p>
<p>[object Object]</p>
<p>Answer:</p>
<p>Suppose you have object Message(title,content,responseTime)</p>
<p>You setup the AsyncMessage as follow in the PRODUCER:<br />
var aMsg:AsyncMessage=new AsyncMessage();<br />
msg.body.title= txtTitle.text;<br />
msg.body.content=txtContent.text;<br />
msg.body.responseTime=txtResponseTime.text;<br />
&#8230;.<br />
producer.send(msg);</p>
<p>You&#8217;ll read AsyncMessage as follow in the CONSUMER:<br />
strTitle = msg.body.title;<br />
strContent = msg.body.content;<br />
strResponseTime = msg.body.responseTime;</p>
<p>This works for me, but I feel annoying if you want to send an object which contains several objects inside it, the setup and reading information procedure is not fun at all. I wish Adobe help us the &#8220;body&#8221; attribute in AsyncMessage as Object class in Java.</p>
<p>Tuyen Nguyen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sujit Reddy G</title>
		<link>http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27514</link>
		<dc:creator>Sujit Reddy G</dc:creator>
		<pubDate>Mon, 07 Sep 2009 13:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27514</guid>
		<description>Hi Arun,

Please check if your Flex Builder project is pointing to right configuration file and try running a clean command on your Flex project. Also restart your server.

Hope this helps.</description>
		<content:encoded><![CDATA[<p>Hi Arun,</p>
<p>Please check if your Flex Builder project is pointing to right configuration file and try running a clean command on your Flex project. Also restart your server.</p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arun</title>
		<link>http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27488</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Thu, 03 Sep 2009 02:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27488</guid>
		<description>remote-config.xml
------------------
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;service id=&quot;remoting-service&quot; class=&quot;flex.messaging.services.RemotingService&quot;&gt;
	&lt;adapters&gt;
		&lt;adapter-definition id=&quot;java-object&quot; class=&quot;flex.messaging.services.remoting.adapters.JavaAdapter&quot; default=&quot;true&quot;/&gt;
	&lt;/adapters&gt;
	&lt;default-channels&gt;
		&lt;channel ref=&quot;my-amf&quot;/&gt;
	&lt;/default-channels&gt;
	&lt;destination id=&quot;CreatingRpc&quot;&gt;
		&lt;properties&gt;
			&lt;source&gt;org.user.UserService&lt;/source&gt;
			&lt;scope&gt;application&lt;/scope&gt;
		&lt;/properties&gt;
		&lt;adapter ref=&quot;java-object&quot;/&gt;
	&lt;/destination&gt;
&lt;/service&gt;


&quot;Channel&quot; part of the services-config.xml
_________________________________________
&lt;channels&gt;
        &lt;channel-definition id=&quot;my-amf&quot; class=&quot;mx.messaging.channels.AMFChannel&quot;&gt;
            &lt;endpoint url=&quot;http://localhost:8080/blaze/messagebroker/amf&quot; class=&quot;flex.messaging.endpoints.AMFEndpoint&quot;/&gt;
        &lt;/channel-definition&gt;
        &lt;channel-definition id=&quot;my-secure-amf&quot; class=&quot;mx.messaging.channels.SecureAMFChannel&quot;&gt;
            &lt;endpoint url=&quot;http://localhost:8080/blaze/messagebroker/amfsecure&quot; class=&quot;flex.messaging.endpoints.SecureAMFEndpoint&quot;/&gt;
            &lt;properties&gt;
                &lt;add-no-cache-headers&gt;false&lt;/add-no-cache-headers&gt;
            &lt;/properties&gt;
        &lt;/channel-definition&gt;
        &lt;channel-definition id=&quot;my-polling-amf&quot; class=&quot;mx.messaging.channels.AMFChannel&quot;&gt;
            &lt;endpoint url=&quot;http://localhost:8080/blaze/messagebroker/amfpolling&quot; class=&quot;flex.messaging.endpoints.AMFEndpoint&quot;/&gt;
            &lt;properties&gt;
                &lt;polling-enabled&gt;true&lt;/polling-enabled&gt;
                &lt;polling-interval-seconds&gt;4&lt;/polling-interval-seconds&gt;
            &lt;/properties&gt;
        &lt;/channel-definition&gt;
    &lt;/channels&gt;

No other XML files is modified and the flash part is a copy paste from your blog source.

Regards,
  Arun</description>
		<content:encoded><![CDATA[<p>remote-config.xml<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt;<br />
&lt;service id=&#8221;remoting-service&#8221; class=&#8221;flex.messaging.services.RemotingService&#8221;&gt;<br />
	&lt;adapters&gt;<br />
		&lt;adapter-definition id=&#8221;java-object&#8221; class=&#8221;flex.messaging.services.remoting.adapters.JavaAdapter&#8221; default=&#8221;true&#8221;/&gt;<br />
	&lt;/adapters&gt;<br />
	&lt;default-channels&gt;<br />
		&lt;channel ref=&#8221;my-amf&#8221;/&gt;<br />
	&lt;/default-channels&gt;<br />
	&lt;destination id=&#8221;CreatingRpc&#8221;&gt;<br />
		&lt;properties&gt;<br />
			&lt;source&gt;org.user.UserService&lt;/source&gt;<br />
			&lt;scope&gt;application&lt;/scope&gt;<br />
		&lt;/properties&gt;<br />
		&lt;adapter ref=&#8221;java-object&#8221;/&gt;<br />
	&lt;/destination&gt;<br />
&lt;/service&gt;</p>
<p>&#8220;Channel&#8221; part of the services-config.xml<br />
_________________________________________<br />
&lt;channels&gt;<br />
        &lt;channel-definition id=&#8221;my-amf&#8221; class=&#8221;mx.messaging.channels.AMFChannel&#8221;&gt;<br />
            &lt;endpoint url=&#8221;http://localhost:8080/blaze/messagebroker/amf&#8221; class=&#8221;flex.messaging.endpoints.AMFEndpoint&#8221;/&gt;<br />
        &lt;/channel-definition&gt;<br />
        &lt;channel-definition id=&#8221;my-secure-amf&#8221; class=&#8221;mx.messaging.channels.SecureAMFChannel&#8221;&gt;<br />
            &lt;endpoint url=&#8221;http://localhost:8080/blaze/messagebroker/amfsecure&#8221; class=&#8221;flex.messaging.endpoints.SecureAMFEndpoint&#8221;/&gt;<br />
            &lt;properties&gt;<br />
                &lt;add-no-cache-headers&gt;false&lt;/add-no-cache-headers&gt;<br />
            &lt;/properties&gt;<br />
        &lt;/channel-definition&gt;<br />
        &lt;channel-definition id=&#8221;my-polling-amf&#8221; class=&#8221;mx.messaging.channels.AMFChannel&#8221;&gt;<br />
            &lt;endpoint url=&#8221;http://localhost:8080/blaze/messagebroker/amfpolling&#8221; class=&#8221;flex.messaging.endpoints.AMFEndpoint&#8221;/&gt;<br />
            &lt;properties&gt;<br />
                &lt;polling-enabled&gt;true&lt;/polling-enabled&gt;<br />
                &lt;polling-interval-seconds&gt;4&lt;/polling-interval-seconds&gt;<br />
            &lt;/properties&gt;<br />
        &lt;/channel-definition&gt;<br />
    &lt;/channels&gt;</p>
<p>No other XML files is modified and the flash part is a copy paste from your blog source.</p>
<p>Regards,<br />
  Arun</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arun</title>
		<link>http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27487</link>
		<dc:creator>Arun</dc:creator>
		<pubDate>Thu, 03 Sep 2009 02:11:38 +0000</pubDate>
		<guid isPermaLink="false">http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27487</guid>
		<description>Hi Sujit,
  Each time I click the button I am getting the error
&quot;Destination CreatingRpc either does not exist....&quot;
I know the error is quite informative but I am not able to figure out what went wrong. Would u please help me out... Thanks in advance.

remote-config.xml
___________________



	
		
	
	
		
	
	
		
			org.user.UserService
			application
		
		
	

services-config.xml
___________________

    
        
            
        
        
            
            
                false
            
        
        
            
            
                true
                4
            
        
    

Thanks,
Arun</description>
		<content:encoded><![CDATA[<p>Hi Sujit,<br />
  Each time I click the button I am getting the error<br />
&#8220;Destination CreatingRpc either does not exist&#8230;.&#8221;<br />
I know the error is quite informative but I am not able to figure out what went wrong. Would u please help me out&#8230; Thanks in advance.</p>
<p>remote-config.xml<br />
___________________</p>
<p>			org.user.UserService<br />
			application</p>
<p>services-config.xml<br />
___________________</p>
<p>                false</p>
<p>                true<br />
                4</p>
<p>Thanks,<br />
Arun</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sujit Reddy G</title>
		<link>http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27453</link>
		<dc:creator>Sujit Reddy G</dc:creator>
		<pubDate>Fri, 28 Aug 2009 14:24:25 +0000</pubDate>
		<guid isPermaLink="false">http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27453</guid>
		<description>Hi Christian,

Java classes are not converted to AS3 directly. AMF is the format used to represent the objects to transfer between server and Flash Player. You can try not returning from the class invoked until your zip files are downloaded. You can also try pushing the data to the client when the data is ready as explained in this URL http://sujitreddyg.wordpress.com/2008/08/14/sending-messages-from-java-to-blazeds-destinations-using-messagebroker/

Hope this helps.</description>
		<content:encoded><![CDATA[<p>Hi Christian,</p>
<p>Java classes are not converted to AS3 directly. AMF is the format used to represent the objects to transfer between server and Flash Player. You can try not returning from the class invoked until your zip files are downloaded. You can also try pushing the data to the client when the data is ready as explained in this URL <a href="http://sujitreddyg.wordpress.com/2008/08/14/sending-messages-from-java-to-blazeds-destinations-using-messagebroker/" rel="nofollow">http://sujitreddyg.wordpress.com/2008/08/14/sending-messages-from-java-to-blazeds-destinations-using-messagebroker/</a></p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christian</title>
		<link>http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27380</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Thu, 20 Aug 2009 16:58:59 +0000</pubDate>
		<guid isPermaLink="false">http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27380</guid>
		<description>Hello folks, well i am a little confused about the use of Flex and java, this is my problem: My java application must read two .zip files from an online server. These classes will load and parse the data in a Thread and perform certain actions depending on such info. The problem occurs when my flex application calls the java method that queries such data. I need to WAIT until the loading has finished. Any ideas?
Another doubt is if the Java classes are being compiled and transformed into some form of ActionScript classes.
Maybe I&#039;m lost in space, so please I need a light in the darkness, thank you.</description>
		<content:encoded><![CDATA[<p>Hello folks, well i am a little confused about the use of Flex and java, this is my problem: My java application must read two .zip files from an online server. These classes will load and parse the data in a Thread and perform certain actions depending on such info. The problem occurs when my flex application calls the java method that queries such data. I need to WAIT until the loading has finished. Any ideas?<br />
Another doubt is if the Java classes are being compiled and transformed into some form of ActionScript classes.<br />
Maybe I&#8217;m lost in space, so please I need a light in the darkness, thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yang</title>
		<link>http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27273</link>
		<dc:creator>Yang</dc:creator>
		<pubDate>Wed, 22 Jul 2009 12:53:21 +0000</pubDate>
		<guid isPermaLink="false">http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27273</guid>
		<description>Hi, Sujit. I also like to know how to get all the online (subscribed) users in real time. Is is possible to achieve this from the client side instead of having to call a java method from the server side constantly to update the subscribers information.
If java methods have to be used, what information should I send to the client? I have read your article about sending messages from server to client but still have no idea about how to tackle this problem.
It&#039;d be great if you can give us a more detailed explaination about this.
Thanks for your help

Regards,
Yang</description>
		<content:encoded><![CDATA[<p>Hi, Sujit. I also like to know how to get all the online (subscribed) users in real time. Is is possible to achieve this from the client side instead of having to call a java method from the server side constantly to update the subscribers information.<br />
If java methods have to be used, what information should I send to the client? I have read your article about sending messages from server to client but still have no idea about how to tackle this problem.<br />
It&#8217;d be great if you can give us a more detailed explaination about this.<br />
Thanks for your help</p>
<p>Regards,<br />
Yang</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sujit Reddy G</title>
		<link>http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27249</link>
		<dc:creator>Sujit Reddy G</dc:creator>
		<pubDate>Mon, 20 Jul 2009 15:43:31 +0000</pubDate>
		<guid isPermaLink="false">http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27249</guid>
		<description>Hi Priya,

Looks like your messaging-config.xml contains tags which are not allowed. Please try removing the tag creating problem and restart your server.

Hope this helps.</description>
		<content:encoded><![CDATA[<p>Hi Priya,</p>
<p>Looks like your messaging-config.xml contains tags which are not allowed. Please try removing the tag creating problem and restart your server.</p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sujit Reddy G</title>
		<link>http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27233</link>
		<dc:creator>Sujit Reddy G</dc:creator>
		<pubDate>Mon, 20 Jul 2009 14:52:58 +0000</pubDate>
		<guid isPermaLink="false">http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27233</guid>
		<description>Hi daslicht,

Please check if the article at the URL below

http://sujitreddyg.wordpress.com/2008/08/14/sending-messages-from-java-to-blazeds-destinations-using-messagebroker/

Hope this helps.</description>
		<content:encoded><![CDATA[<p>Hi daslicht,</p>
<p>Please check if the article at the URL below</p>
<p><a href="http://sujitreddyg.wordpress.com/2008/08/14/sending-messages-from-java-to-blazeds-destinations-using-messagebroker/" rel="nofollow">http://sujitreddyg.wordpress.com/2008/08/14/sending-messages-from-java-to-blazeds-destinations-using-messagebroker/</a></p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Priya</title>
		<link>http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27098</link>
		<dc:creator>Priya</dc:creator>
		<pubDate>Mon, 06 Jul 2009 08:21:54 +0000</pubDate>
		<guid isPermaLink="false">http://sujitreddyg.wordpress.com/2008/01/17/messaging-using-flex-and-blaze-ds/#comment-27098</guid>
		<description>Hi

Nice article.
I tried setting up the chat application and it showed up the UI fine, but the message is not getting sent.
I get an exception:
**** MessageBrokerServlet failed to initialize due to runtime exception:   Exception: flex.messaging.config.ConfigurationException: Unrecognized tag found in .  Please consult the documentation to determine if the tag is invalid or belongs inside of a different tag: 
  &#039;/jms&#039; in destination with id: &#039;chatApplication&#039; from file: messaging-config.xml
	at flex.messaging.config.MessagingConfiguration.reportUnusedProperties(MessagingConfiguration.java:682)
	at flex.messaging.MessageBrokerServlet.init(MessageBrokerServlet.java:160)
	at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1161)
	at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:981)
	at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4045)
	at org.apache.catalina.core.StandardContext.start(StandardContext.java:4351)
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
	at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
	at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
	at org.apache.catalina.core.StandardService.start(StandardService.java:516)
	at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
	at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)

Jul 6, 2009 1:50:01 PM org.apache.catalina.core.ApplicationContext log
INFO: Marking servlet MessageBrokerServlet as unavailable
Jul 6, 2009 1:50:01 PM org.apache.catalina.core.StandardContext loadOnStartup
SEVERE: Servlet /BlazeDSPOC threw load() exception
javax.servlet.UnavailableException: Unrecognized tag found in .  Please consult the documentation to determine if the tag is invalid or belongs inside of a different tag: 
  &#039;/jms&#039; in destination with id: &#039;chatApplication&#039; from file: messaging-config.xml
	at flex.messaging.MessageBrokerServlet.init(MessageBrokerServlet.java:170)
	at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1161)
	at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:981)
	at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4045)
	at org.apache.catalina.core.StandardContext.start(StandardContext.java:4351)
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
	at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
	at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
	at org.apache.catalina.core.StandardService.start(StandardService.java:516)
	at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
	at org.apache.catalina.startup.Catalina.start(Catalina.java:566)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
	at java.lang.reflect.Method.invoke(Unknown Source)
	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
Jul 6, 2009 1:50:01 PM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8080
Jul 6, 2009 1:50:01 PM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Jul 6, 2009 1:50:01 PM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/31  config=null
Jul 6, 2009 1:50:01 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 4300 ms

Please help.

Thanks
Priya</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Nice article.<br />
I tried setting up the chat application and it showed up the UI fine, but the message is not getting sent.<br />
I get an exception:<br />
**** MessageBrokerServlet failed to initialize due to runtime exception:   Exception: flex.messaging.config.ConfigurationException: Unrecognized tag found in .  Please consult the documentation to determine if the tag is invalid or belongs inside of a different tag:<br />
  &#8216;/jms&#8217; in destination with id: &#8216;chatApplication&#8217; from file: messaging-config.xml<br />
	at flex.messaging.config.MessagingConfiguration.reportUnusedProperties(MessagingConfiguration.java:682)<br />
	at flex.messaging.MessageBrokerServlet.init(MessageBrokerServlet.java:160)<br />
	at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1161)<br />
	at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:981)<br />
	at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4045)<br />
	at org.apache.catalina.core.StandardContext.start(StandardContext.java:4351)<br />
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)<br />
	at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)<br />
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)<br />
	at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)<br />
	at org.apache.catalina.core.StandardService.start(StandardService.java:516)<br />
	at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)<br />
	at org.apache.catalina.startup.Catalina.start(Catalina.java:566)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)<br />
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)<br />
	at java.lang.reflect.Method.invoke(Unknown Source)<br />
	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)<br />
	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)</p>
<p>Jul 6, 2009 1:50:01 PM org.apache.catalina.core.ApplicationContext log<br />
INFO: Marking servlet MessageBrokerServlet as unavailable<br />
Jul 6, 2009 1:50:01 PM org.apache.catalina.core.StandardContext loadOnStartup<br />
SEVERE: Servlet /BlazeDSPOC threw load() exception<br />
javax.servlet.UnavailableException: Unrecognized tag found in .  Please consult the documentation to determine if the tag is invalid or belongs inside of a different tag:<br />
  &#8216;/jms&#8217; in destination with id: &#8216;chatApplication&#8217; from file: messaging-config.xml<br />
	at flex.messaging.MessageBrokerServlet.init(MessageBrokerServlet.java:170)<br />
	at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1161)<br />
	at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:981)<br />
	at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4045)<br />
	at org.apache.catalina.core.StandardContext.start(StandardContext.java:4351)<br />
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)<br />
	at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)<br />
	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)<br />
	at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)<br />
	at org.apache.catalina.core.StandardService.start(StandardService.java:516)<br />
	at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)<br />
	at org.apache.catalina.startup.Catalina.start(Catalina.java:566)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)<br />
	at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)<br />
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)<br />
	at java.lang.reflect.Method.invoke(Unknown Source)<br />
	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)<br />
	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)<br />
Jul 6, 2009 1:50:01 PM org.apache.coyote.http11.Http11Protocol start<br />
INFO: Starting Coyote HTTP/1.1 on http-8080<br />
Jul 6, 2009 1:50:01 PM org.apache.jk.common.ChannelSocket init<br />
INFO: JK: ajp13 listening on /0.0.0.0:8009<br />
Jul 6, 2009 1:50:01 PM org.apache.jk.server.JkMain start<br />
INFO: Jk running ID=0 time=0/31  config=null<br />
Jul 6, 2009 1:50:01 PM org.apache.catalina.startup.Catalina start<br />
INFO: Server startup in 4300 ms</p>
<p>Please help.</p>
<p>Thanks<br />
Priya</p>
]]></content:encoded>
	</item>
</channel>
</rss>
