<?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: Tutorial: Flex and ColdFusion Communication via Event Gateways</title>
	<atom:link href="http://www.fusioncube.net/index.php/tutorial-flex-and-coldfusion-communication-via-event-gateways/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fusioncube.net/index.php/tutorial-flex-and-coldfusion-communication-via-event-gateways</link>
	<description>The online journey of a technophile, by Steve Brownlee</description>
	<lastBuildDate>Sun, 05 Sep 2010 08:44:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Steve Brownlee</title>
		<link>http://www.fusioncube.net/index.php/tutorial-flex-and-coldfusion-communication-via-event-gateways/comment-page-1#comment-35785</link>
		<dc:creator>Steve Brownlee</dc:creator>
		<pubDate>Mon, 24 May 2010 12:23:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.fusioncube.net/?p=606#comment-35785</guid>
		<description>Hey Jeff, check out this other article.  Might provide some ideas for you.

http://www.fusioncube.net/index.php/application-and-client-specific-messaging-in-flex</description>
		<content:encoded><![CDATA[<p>Hey Jeff, check out this other article.  Might provide some ideas for you.</p>
<p><a href="http://www.fusioncube.net/index.php/application-and-client-specific-messaging-in-flex" rel="nofollow">http://www.fusioncube.net/index.php/application-and-client-specific-messaging-in-flex</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Battershall</title>
		<link>http://www.fusioncube.net/index.php/tutorial-flex-and-coldfusion-communication-via-event-gateways/comment-page-1#comment-35784</link>
		<dc:creator>Jeff Battershall</dc:creator>
		<pubDate>Mon, 24 May 2010 10:49:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.fusioncube.net/?p=606#comment-35784</guid>
		<description>Steve,

Got  a question - when sending an outgoing message from the gateway, how do i ensure that the message goes only to a specific client?  In my situation, my flex app needs to receive messages of server actions completed, so its not two-way.  

Jeff</description>
		<content:encoded><![CDATA[<p>Steve,</p>
<p>Got  a question &#8211; when sending an outgoing message from the gateway, how do i ensure that the message goes only to a specific client?  In my situation, my flex app needs to receive messages of server actions completed, so its not two-way.  </p>
<p>Jeff</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephen Moretti</title>
		<link>http://www.fusioncube.net/index.php/tutorial-flex-and-coldfusion-communication-via-event-gateways/comment-page-1#comment-35196</link>
		<dc:creator>Stephen Moretti</dc:creator>
		<pubDate>Mon, 22 Feb 2010 22:52:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.fusioncube.net/?p=606#comment-35196</guid>
		<description>@Jeff Regan &amp; @Gordon K
The error message you are getting from &quot;it&quot; is that you are missing a destination or the destination is incorrectly configured. Destinations are configured manually in the messaging-config.xml file.

Be aware : 

x.headers[&#039;DSSubtopic&#039;] = “simpleChat”;

DSSubtopic is case sensitive. You have to call it in this fashion or ColdFusion/Flex will upper case the header value and make it inaccessible.</description>
		<content:encoded><![CDATA[<p>@Jeff Regan &amp; @Gordon K<br />
The error message you are getting from &#8220;it&#8221; is that you are missing a destination or the destination is incorrectly configured. Destinations are configured manually in the messaging-config.xml file.</p>
<p>Be aware : </p>
<p>x.headers['DSSubtopic'] = “simpleChat”;</p>
<p>DSSubtopic is case sensitive. You have to call it in this fashion or ColdFusion/Flex will upper case the header value and make it inaccessible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gordon K</title>
		<link>http://www.fusioncube.net/index.php/tutorial-flex-and-coldfusion-communication-via-event-gateways/comment-page-1#comment-35080</link>
		<dc:creator>Gordon K</dc:creator>
		<pubDate>Mon, 08 Feb 2010 11:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.fusioncube.net/?p=606#comment-35080</guid>
		<description>I got  mine to work.  The error is gone.  Im not 100% sure what I changed, but I was playing around in WEB_INF\flex\messaging_config.xml and I uncommented the property localhost.  I did a few other things that I dont think were signficant.  One was I defined my channel set in code instead of taking it from a config, meaning the app didnt need a services_config.xml reference in compiler settings.  I also made a copy of the default destination and called it MyGateway, so I could customize settings.

I still have some issues left.  I cant get subtopics to work  (I had commented out subtopics to start with), and my recieveChat event on the flex side is getting called twice for every chat msg, not sure why.

But at least I am getting a round trip message and no error.</description>
		<content:encoded><![CDATA[<p>I got  mine to work.  The error is gone.  Im not 100% sure what I changed, but I was playing around in WEB_INF\flex\messaging_config.xml and I uncommented the property localhost.  I did a few other things that I dont think were signficant.  One was I defined my channel set in code instead of taking it from a config, meaning the app didnt need a services_config.xml reference in compiler settings.  I also made a copy of the default destination and called it MyGateway, so I could customize settings.</p>
<p>I still have some issues left.  I cant get subtopics to work  (I had commented out subtopics to start with), and my recieveChat event on the flex side is getting called twice for every chat msg, not sure why.</p>
<p>But at least I am getting a round trip message and no error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Regan</title>
		<link>http://www.fusioncube.net/index.php/tutorial-flex-and-coldfusion-communication-via-event-gateways/comment-page-1#comment-35071</link>
		<dc:creator>Jeff Regan</dc:creator>
		<pubDate>Sun, 07 Feb 2010 16:35:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.fusioncube.net/?p=606#comment-35071</guid>
		<description>That&#039;s exactly what I am getting with the SendgatewayMessage call.

Keep me posted on what you find from the CFLOG.</description>
		<content:encoded><![CDATA[<p>That&#8217;s exactly what I am getting with the SendgatewayMessage call.</p>
<p>Keep me posted on what you find from the CFLOG.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gordon K</title>
		<link>http://www.fusioncube.net/index.php/tutorial-flex-and-coldfusion-communication-via-event-gateways/comment-page-1#comment-35064</link>
		<dc:creator>Gordon K</dc:creator>
		<pubDate>Sun, 07 Feb 2010 09:18:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.fusioncube.net/?p=606#comment-35064</guid>
		<description>Jeff, I am working on the same thing and having exactly the same problem, using stock CF9 install with blaze ds.  I added a sendGatewayMessage to the cfc and now the output count started incrementing on the cfgateway.  However, still nothing coming back to flex. I tried taking out the subtopic stuff but that didnt help. I am going to add a CFLOG and see what I get.</description>
		<content:encoded><![CDATA[<p>Jeff, I am working on the same thing and having exactly the same problem, using stock CF9 install with blaze ds.  I added a sendGatewayMessage to the cfc and now the output count started incrementing on the cfgateway.  However, still nothing coming back to flex. I tried taking out the subtopic stuff but that didnt help. I am going to add a CFLOG and see what I get.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Regan</title>
		<link>http://www.fusioncube.net/index.php/tutorial-flex-and-coldfusion-communication-via-event-gateways/comment-page-1#comment-35045</link>
		<dc:creator>Jeff Regan</dc:creator>
		<pubDate>Fri, 05 Feb 2010 18:23:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.fusioncube.net/?p=606#comment-35045</guid>
		<description>I also failed to note that the webroot of the installation is htdocs in Apache web server.</description>
		<content:encoded><![CDATA[<p>I also failed to note that the webroot of the installation is htdocs in Apache web server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Regan</title>
		<link>http://www.fusioncube.net/index.php/tutorial-flex-and-coldfusion-communication-via-event-gateways/comment-page-1#comment-35039</link>
		<dc:creator>Jeff Regan</dc:creator>
		<pubDate>Thu, 04 Feb 2010 23:21:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.fusioncube.net/?p=606#comment-35039</guid>
		<description>In that last message the page edited out the &quot;cfreturn x&quot; CF tag.</description>
		<content:encoded><![CDATA[<p>In that last message the page edited out the &#8220;cfreturn x&#8221; CF tag.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Regan</title>
		<link>http://www.fusioncube.net/index.php/tutorial-flex-and-coldfusion-communication-via-event-gateways/comment-page-1#comment-35038</link>
		<dc:creator>Jeff Regan</dc:creator>
		<pubDate>Thu, 04 Feb 2010 23:15:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.fusioncube.net/?p=606#comment-35038</guid>
		<description>It&#039;s when I try to pass the message back to Flex from ColdFusion. The it is the message.

I&#039;ve tried  and SendGatewayMessage(&quot;test&quot;, x). Neither worked.</description>
		<content:encoded><![CDATA[<p>It&#8217;s when I try to pass the message back to Flex from ColdFusion. The it is the message.</p>
<p>I&#8217;ve tried  and SendGatewayMessage(&#8220;test&#8221;, x). Neither worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Brownlee</title>
		<link>http://www.fusioncube.net/index.php/tutorial-flex-and-coldfusion-communication-via-event-gateways/comment-page-1#comment-35037</link>
		<dc:creator>Steve Brownlee</dc:creator>
		<pubDate>Thu, 04 Feb 2010 20:07:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.fusioncube.net/?p=606#comment-35037</guid>
		<description>What is &quot;it&quot; in your last comment?  Flex or ColdFusion?</description>
		<content:encoded><![CDATA[<p>What is &#8220;it&#8221; in your last comment?  Flex or ColdFusion?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
