<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community : Popular Discussions - Event Gateways</title>
    <link>https://forums.adobe.com/community/coldfusion/coldfusion_event_gateways?view=discussions</link>
    <description>Popular Discussion Threads in Event Gateways</description>
    <language>en</language>
    <pubDate>Fri, 25 Jun 2010 11:18:04 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2010-06-25T11:18:04Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Queueing with cflock on Coldfusion 9</title>
      <link>https://forums.adobe.com/thread/666288</link>
      <description>&lt;!-- [DocumentBodyStart:f94a48d6-ddee-45d4-901a-3584a0ae7cea] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;We've been dealing with a problem with our event gateways since we upgraded from ColdFusion 8 Enterprise to ColdFusion 9 Enterprise.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We have an event gateway setup to establish a connection to a third party. They went us updates at least every 10 seconds and sometimes many times a second.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We have a Java class configured as the Event Gateway listener, and it pushes events and data to a CFC function. In that function we actually use a *named* &amp;lt;cflock&amp;gt; to ensure that requests are dealt with in order, and requests will be queued at this point to have exclusive access to the named lock. This lock has a *30 second* timeout.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I've also got lots of debugging in this function, and I've noticed a few things:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;ul&gt;&lt;li&gt;Requests will queue up before the &amp;lt;cflock&amp;gt; tag, waiting for the lock, and this queue can be over 40 events long&lt;/li&gt;&lt;li&gt;All requests are processed when they get the lock within 6 seconds. The average is actually 1.5 to 2 sec from when they get the lock to when they complete processing&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So the problem is that, now and again, I will have a lock timeout occur, and it's after 30 seconds. First I log if the request is waiting for the lock. It looks like this:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Information","Thread-23","06/23/10","15:45:18","APP1","F4B42A5A-F34D-C614-DE01B150E6906F 78 (1277304318606) : PRE LOCK"&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;And then further down the logs, I see this for the same request:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;span style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Error","Thread-23","06/23/10","15:45:48","APP1","F4B42A5A-F34D-C614-DE01B150E6906F78 (1277304348607) : LOCK ERROR: A timeout occurred while attempting to lock lock_ResponseDispatcher."&lt;/span&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;There's 30 seconds between them. The requests and any event data associated with it is lost at this point. Not good for me.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So I thought I'd see if the queue was being processed fast enough. I'm unsure how events are queued by &amp;lt;cflock&amp;gt;. Is there a hard limit?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Anyway, on this particular run, I saw that:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;The request went onto the queue when there was 6 requests there already, so it's number 7 in the queuea&lt;/li&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Over the next 30 seconds about 17 requests are removed from the queue&lt;/li&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;About the same number of requests are added to the queue&lt;/li&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;In this period, the request in question is not processed and after 30 seconds times out&lt;/li&gt;&lt;/ul&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I can't believe my eyes! It's as if the &amp;lt;cflock&amp;gt; queue is not processed as first in first out (FIFO), but first in last out (FILO)!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Is such a thing possible? Has anyone else every seen this kind of behaviour?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Many thanks in advance to anyone with any thoughts.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Ciaran&lt;/p&gt;&lt;div&gt; &lt;/div&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f94a48d6-ddee-45d4-901a-3584a0ae7cea] --&gt;&lt;img src='/beacon?t=1415919726410' /&gt;</description>
      <pubDate>Wed, 23 Jun 2010 16:33:44 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/666288</guid>
      <dc:date>2010-06-23T16:33:44Z</dc:date>
      <clearspace:dateToText>4 years 5 months ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Event Gateway for Weblogic JMS</title>
      <link>https://forums.adobe.com/thread/593591</link>
      <description>&lt;!-- [DocumentBodyStart:5f01d236-00eb-47d8-8664-b23b73e44a3b] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi there, just learning about event gateways in Coldfusion.&amp;nbsp; After a day playing and reading, I'm still unable to figure out if it is possible, using the default JMS and ActiveMQ event gateway type, to listen to a Oracle Weblogic JMS queue. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;When trying to configure a JMS gateway instance to listen to Weblogic JMS queue, I get a "Gateway 'testJMS (examples.JMS.JMSGateway)' has taken more than 30 seconds to start." error.&amp;nbsp; When I use the ActiveMQ gateway type, I get an "Could not create Transport. Reason: java.io.IOException: Transport scheme NOT recognized: [t3]".&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm no expert on CF event gateway or Weblogic JMS messaging so would appreciate it if someone could tell me if this is even possible using the default supplied gateway types with CF8 or if a custom gateway type has to be built.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks in advance everyone.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:5f01d236-00eb-47d8-8664-b23b73e44a3b] --&gt;</description>
      <pubDate>Wed, 10 Mar 2010 18:13:00 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/593591</guid>
      <dc:date>2010-03-10T18:13:00Z</dc:date>
      <clearspace:dateToText>3 years 3 months ago</clearspace:dateToText>
      <clearspace:messageCount>3</clearspace:messageCount>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Directory watcher gateway stops seeing files added after working fine for awhile</title>
      <link>https://forums.adobe.com/thread/753527</link>
      <description>&lt;!-- [DocumentBodyStart:b50e7ad1-6449-4a23-8efd-1088d2b461dd] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;We have a directory watcher gateway that has worked quite well in the past, but over the past couple days has started having problems. What seems to happen is that the gateway cfc stops firing when a file is added to a directory. Stopping and restarting the gateway doesn't fix the problem. However we are running 4 instances on the server, so I removed the gateway from one instance and added it to another. Things started working again. Then the next day, the new gateway stopped working. Moved it back to the original instance, and it's working again.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We also have a scheduled task that cleans up files that the gateway misses, it runs every 3 minutes. The gateway does log some "file does not exist" errors but it seems to only happen when the scheduled task runs - that is, it seems like the gateway doesn't notice the files until another process tries to do something with them!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Incidentally we have been doing a pretty high volume of traffic lately and the server has had some other issues (another process has brought it down multiple times in the past week) - so the server has actually been restarted a few times lately (it's in a cluster of 2). I'm not sure how these things would really affect the gateway's operaion though.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Does anyone know what might be going on here? Thanks in advance!&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b50e7ad1-6449-4a23-8efd-1088d2b461dd] --&gt;</description>
      <pubDate>Wed, 17 Nov 2010 15:52:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/753527</guid>
      <dc:date>2010-11-17T15:52:05Z</dc:date>
      <clearspace:dateToText>3 years 12 months ago</clearspace:dateToText>
      <clearspace:messageCount>4</clearspace:messageCount>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>OpenMQ ColdFusion JMS Gateway</title>
      <link>https://forums.adobe.com/thread/932686</link>
      <description>&lt;!-- [DocumentBodyStart:87437406-7854-49d3-925f-4425a90243d0] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Has anyone used OpenMQ with the generic gateway that ships with ColdFusion 8?&amp;nbsp; Also, is it true that the generic gateway only supports topics and not queues?&lt;/p&gt;&lt;p&gt;Why does the ActiveMQ example provide both but no the generic one?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm guessing being that Jrun is a j2ee &lt;a class="jive-link-external-small" href="http://www.adobe.com/products/jrun/productinfo/newfeatures/" rel="nofollow"&gt;1.3&lt;/a&gt; app server, and Open MQ latest needs ee&lt;a class="jive-link-external-small" href="http://mq.java.net/features.html" rel="nofollow"&gt; 1.4&lt;/a&gt; that this is a no go.&amp;nbsp; &lt;/p&gt;&lt;p&gt;Also being that the generic gateway works with 1.0.2 compliant server (jms compliancy guessing) and openMQ is JMS 1.1 standard this is a no go.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Why doesn't anyone respond to any Gateway questions in the adobe forum? ;-)&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Time to lose Jrun &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:87437406-7854-49d3-925f-4425a90243d0] --&gt;</description>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=2229">gateway</category>
      <category domain="https://forums.adobe.com/tags#/?containerType=14&amp;container=2229">jms</category>
      <pubDate>Sun, 04 Dec 2011 21:33:45 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/932686</guid>
      <dc:date>2011-12-04T21:33:45Z</dc:date>
      <clearspace:dateToText>2 years 11 months ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>SMS Event Gateway problem</title>
      <link>https://forums.adobe.com/thread/900712</link>
      <description>&lt;!-- [DocumentBodyStart:89f0a38c-20c4-48fd-9334-1d48ccd830e9] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hello, &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I am having a strange problem with my SMS Gateway. The SMPP connection to the external gateway is fine, and outgoing messages are never a problem.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The problem is to do with my incoming.cfc - the gateway instance points to "incoming.cfc" and that file is set up to send an auto reply to the incoming message and add some details to a database. Simple and it works as tested. &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Every couple of days though the incoming messages stop getting added to the database, and the auto reply messages don't get generated. The log files indicate that (allthough no changes have been made to either the incoming.cfc file or any other files or configuration settings) we have somehow "switched back" to an earlier version of the incoming.cfc file - I can tell this because the wording of the return message in the logs matches this earlier version.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I have read Adobe documentation that says the gateway will use whatever incoming.cfc it is pointed to and you don't need to refresh the event gateway instance if you change the cfc - even though the old cfc has been deleted off the server entirely and the new one not changed - when the problem occurs (every other day) an instance refresh appears to fix it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Has anyone seen anything like this?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks for listening!&amp;nbsp; &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Simon&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:89f0a38c-20c4-48fd-9334-1d48ccd830e9] --&gt;</description>
      <pubDate>Fri, 09 Sep 2011 05:18:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/900712</guid>
      <dc:date>2011-09-09T05:18:49Z</dc:date>
      <clearspace:dateToText>3 years 1 month ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Is there a way to restart directory watcher interface from javascript?</title>
      <link>https://forums.adobe.com/thread/848046</link>
      <description>&lt;!-- [DocumentBodyStart:399dc2a1-dbc2-481a-9da8-89458e117fd1] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Running the directory watcher gateway interface under CF8, watching a network directory, the connection to the remote server is occasionally lost, causing the interface to "fail".&amp;nbsp; Is it possible to code javascript or cf to test the status of the interface and restart it? I see the start(), stop(), restart() and status() methods but I'm not sure (need an example) how they might be used.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:399dc2a1-dbc2-481a-9da8-89458e117fd1] --&gt;</description>
      <pubDate>Thu, 05 May 2011 17:04:27 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/848046</guid>
      <dc:date>2011-05-05T17:04:27Z</dc:date>
      <clearspace:dateToText>3 years 6 months ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>401.2 - Logon failed due to server configuration.</title>
      <link>https://forums.adobe.com/thread/527234</link>
      <description>&lt;!-- [DocumentBodyStart:08f6277c-a799-48bb-93d5-0b4786463dd8] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have set up a new server, and there are 3 flex applications on there that can't get session variables and gives this error.&amp;nbsp; I have this working on two other servers, but I don't know where the configuration might be wrong on the server.&amp;nbsp; The app uses getAuthUser() to authenticate with AD, and server is setup as Integrated Windows Authentication.All of the CFM work, only the SWF are getting the error.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:08f6277c-a799-48bb-93d5-0b4786463dd8] --&gt;</description>
      <pubDate>Thu, 19 Nov 2009 15:05:36 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/527234</guid>
      <dc:date>2009-11-19T15:05:36Z</dc:date>
      <clearspace:dateToText>4 years 12 months ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>EVENT GATEWAYS LAWSUIT - INFO NEEDED</title>
      <link>https://forums.adobe.com/thread/430364</link>
      <description>&lt;!-- [DocumentBodyStart:77f99bf7-d8bc-4ec1-a484-1b4b95a31ee5] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;GATEWAYS QUESTION: I need the names of companies that are using COld Fusion gateways to handle SMS, and IM simultaneously, better if they're also using a POP gateway at the same time with the same application. Not going to market with this, need it do defend a law suit from someone who claims no one else but them are doing this. Thank you! RLS&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:77f99bf7-d8bc-4ec1-a484-1b4b95a31ee5] --&gt;</description>
      <pubDate>Fri, 08 May 2009 18:48:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/430364</guid>
      <dc:date>2009-05-08T18:48:24Z</dc:date>
      <clearspace:dateToText>5 years 3 months ago</clearspace:dateToText>
      <clearspace:messageCount>14</clearspace:messageCount>
      <clearspace:replyCount>13</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Unable to access the Flex Message Broker</title>
      <link>https://forums.adobe.com/thread/422207</link>
      <description>&lt;!-- [DocumentBodyStart:6a185dae-27ab-4d0d-a07a-1a08f839608a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi everyone,&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Basically, I am trying to do a simple connection of message between a form (with only a text message) to send a message to Flex. The Flex is suppose to display the message. All this use a Event Gateway I created in ColdFusion. I also manipulated XML config files based on the Ben Forta example (&lt;a class="jive-link-external-small" href="http://www.forta.com/blog/index.cfm/2006/2/1/Getting-Started-With-ColdFusion-And-Flex-Enterprise-Services" rel="nofollow"&gt;http://www.forta.com/blog/index.cfm/2006/2/1/Getting-Started-With-ColdFusion-And-Flex-Ente rprise-Services&lt;/a&gt;) but ColdFusion 8 (as it is the version I am using) is not set the same way as CF7 (I am not sure but for me, it is not seems to be the same for config files). I manipulated the messagin-config.xml includes in my path "C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\flex" to include the host (127.0.0.1) and a channel for RTMP.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;But everything I am doing always returning me the error "Unable to access the Flex Message Broker". First, I am not sure at which step I am in the full process - but I think I can say that I reach the Event Gateway when I am getting this error - is it?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;If somebody can explain me a bit better what this message is about exactly, it should help me a lot (and maybe a lot of other user trying to make this work).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I includes a file here that contains the following information:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1) The code I use from the Coldfusion to create the message to pass to;&lt;/p&gt;&lt;p&gt;2) The code I use to read the message in the Flex;&lt;/p&gt;&lt;p&gt;3) The CFC I use to transfer the message through the Event Gateway I created;&lt;/p&gt;&lt;p&gt;3) The messaging-config.xml;&lt;/p&gt;&lt;p&gt;4) The data-management-config.xml.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The Event Gateway I created is called testFlexGateway and it ibased on Data Management and pointing to the CFC I include in my file.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any help will be great as we have a big project that is dependant of this success!!!&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thank's&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:6a185dae-27ab-4d0d-a07a-1a08f839608a] --&gt;</description>
      <pubDate>Tue, 21 Apr 2009 12:25:51 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/422207</guid>
      <dc:date>2009-04-21T12:25:51Z</dc:date>
      <clearspace:dateToText>4 years 3 months ago</clearspace:dateToText>
      <clearspace:messageCount>2</clearspace:messageCount>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>get sms from modems</title>
      <link>https://forums.adobe.com/thread/414550</link>
      <description>&lt;!-- [DocumentBodyStart:6cc1c3f0-a71e-42c9-b880-daa7f54a098a] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Hi i have connected a gsm modem to my sever to receive sms replys, just not sure how to get these from the modem to process them?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;i would like to use the onincoming event if i can?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:6cc1c3f0-a71e-42c9-b880-daa7f54a098a] --&gt;</description>
      <pubDate>Mon, 06 Apr 2009 10:11:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/414550</guid>
      <dc:date>2009-04-06T10:11:24Z</dc:date>
      <clearspace:dateToText>5 years 7 months ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>java.lang.NoClassDefFoundError: coldfusion/flex/CFEventGatewayAdapter</title>
      <link>https://forums.adobe.com/thread/244205</link>
      <description>&lt;!-- [DocumentBodyStart:0e78b684-f55e-4ac7-8e0a-cb7e6064a05c] --&gt;&lt;div class="jive-rendered-content"&gt;When I start EventGateway of DataServicesMessaging, I got an
exception like below.
&lt;br/&gt;How should I do for fixing this problem???
&lt;br/&gt;
&lt;br/&gt;I installed ColdFusion 801 without LiveCycle Data Services.
&lt;br/&gt;I installed LiveCycle Data Services on same machine.
&lt;br/&gt;We can't do this?? We have to install LiveCycle Data Services
by CF installer???
&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;500
&lt;br/&gt;
&lt;br/&gt;ROOT CAUSE: 
&lt;br/&gt;java.lang.NoClassDefFoundError:
coldfusion/flex/CFEventGatewayAdapter
&lt;br/&gt; at java.lang.Class.getDeclaredConstructors0(Native Method)
&lt;br/&gt; at
java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
&lt;br/&gt; at java.lang.Class.getConstructor0(Class.java:2699)
&lt;br/&gt; at java.lang.Class.getConstructor(Class.java:1657)
&lt;br/&gt; at
coldfusion.eventgateway.EventServiceImpl.allocateEventGateway(EventServiceImpl.java:1031)
&lt;br/&gt; at
coldfusion.eventgateway.EventServiceImpl.startEventGateway(EventServiceImpl.java:398)
&lt;br/&gt; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
&lt;br/&gt; at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br/&gt; at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br/&gt; at java.lang.reflect.Method.invoke(Method.java:597)
&lt;br/&gt; at coldfusion.runtime.StructBean.invoke(StructBean.java:511)
&lt;br/&gt; at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2300)
&lt;br/&gt; at
cfgateways2ecfm251583696._factor5(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\even tgateway\gateways.cfm:261)
&lt;br/&gt; at
cfgateways2ecfm251583696._factor20(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\eve ntgateway\gateways.cfm:251)
&lt;br/&gt; at
cfgateways2ecfm251583696.runPage(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\event gateway\gateways.cfm:1)
&lt;br/&gt; at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196)
&lt;br/&gt; at
coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370)
&lt;br/&gt; at
coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
&lt;br/&gt; at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:279)
&lt;br/&gt; at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
&lt;br/&gt; at
coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
&lt;br/&gt; at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
&lt;br/&gt; at
coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
&lt;br/&gt; at
coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
&lt;br/&gt; at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
&lt;br/&gt; at
coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
&lt;br/&gt; at
coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
&lt;br/&gt; at
coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
&lt;br/&gt; at
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
&lt;br/&gt; at coldfusion.CfmServlet.service(CfmServlet.java:175)
&lt;br/&gt; at
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
&lt;br/&gt; at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
&lt;br/&gt; at
coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 )
&lt;br/&gt; at
coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
&lt;br/&gt; at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
&lt;br/&gt; at jrun.servlet.FilterChain.service(FilterChain.java:101)
&lt;br/&gt; at
jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
&lt;br/&gt; at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
&lt;br/&gt; at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
&lt;br/&gt; at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
&lt;br/&gt; at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
&lt;br/&gt; at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
&lt;br/&gt; at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
&lt;br/&gt; at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
&lt;br/&gt; at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
&lt;br/&gt;Caused by: java.lang.ClassNotFoundException:
coldfusion.flex.CFEventGatewayAdapter
&lt;br/&gt; at
coldfusion.bootstrap.BootstrapClassLoader.loadClass(BootstrapClassLoader.java:235)
&lt;br/&gt; at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
&lt;br/&gt; at
java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
&lt;br/&gt; ... 45 more
&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;javax.servlet.ServletException: ROOT CAUSE: 
&lt;br/&gt;java.lang.NoClassDefFoundError:
coldfusion/flex/CFEventGatewayAdapter
&lt;br/&gt; at java.lang.Class.getDeclaredConstructors0(Native Method)
&lt;br/&gt; at
java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
&lt;br/&gt; at java.lang.Class.getConstructor0(Class.java:2699)
&lt;br/&gt; at java.lang.Class.getConstructor(Class.java:1657)
&lt;br/&gt; at
coldfusion.eventgateway.EventServiceImpl.allocateEventGateway(EventServiceImpl.java:1031)
&lt;br/&gt; at
coldfusion.eventgateway.EventServiceImpl.startEventGateway(EventServiceImpl.java:398)
&lt;br/&gt; at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
Method)
&lt;br/&gt; at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
&lt;br/&gt; at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&lt;br/&gt; at java.lang.reflect.Method.invoke(Method.java:597)
&lt;br/&gt; at coldfusion.runtime.StructBean.invoke(StructBean.java:511)
&lt;br/&gt; at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2300)
&lt;br/&gt; at
cfgateways2ecfm251583696._factor5(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\even tgateway\gateways.cfm:261)
&lt;br/&gt; at
cfgateways2ecfm251583696._factor20(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\eve ntgateway\gateways.cfm:251)
&lt;br/&gt; at
cfgateways2ecfm251583696.runPage(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\event gateway\gateways.cfm:1)
&lt;br/&gt; at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196)
&lt;br/&gt; at
coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370)
&lt;br/&gt; at
coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
&lt;br/&gt; at
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:279)
&lt;br/&gt; at
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
&lt;br/&gt; at
coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
&lt;br/&gt; at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
&lt;br/&gt; at
coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
&lt;br/&gt; at
coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
&lt;br/&gt; at
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
&lt;br/&gt; at
coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
&lt;br/&gt; at
coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
&lt;br/&gt; at
coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
&lt;br/&gt; at
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
&lt;br/&gt; at coldfusion.CfmServlet.service(CfmServlet.java:175)
&lt;br/&gt; at
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
&lt;br/&gt; at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
&lt;br/&gt; at
coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 )
&lt;br/&gt; at
coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
&lt;br/&gt; at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
&lt;br/&gt; at jrun.servlet.FilterChain.service(FilterChain.java:101)
&lt;br/&gt; at
jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
&lt;br/&gt; at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
&lt;br/&gt; at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
&lt;br/&gt; at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
&lt;br/&gt; at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
&lt;br/&gt; at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
&lt;br/&gt; at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
&lt;br/&gt; at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
&lt;br/&gt; at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
&lt;br/&gt;Caused by: java.lang.ClassNotFoundException:
coldfusion.flex.CFEventGatewayAdapter
&lt;br/&gt; at
coldfusion.bootstrap.BootstrapClassLoader.loadClass(BootstrapClassLoader.java:235)
&lt;br/&gt; at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
&lt;br/&gt; at
java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
&lt;br/&gt; ... 45 more
&lt;br/&gt;
&lt;br/&gt; at
coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:70 )
&lt;br/&gt; at
coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
&lt;br/&gt; at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
&lt;br/&gt; at jrun.servlet.FilterChain.service(FilterChain.java:101)
&lt;br/&gt; at
jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
&lt;br/&gt; at
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
&lt;br/&gt; at
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
&lt;br/&gt; at
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
&lt;br/&gt; at
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
&lt;br/&gt; at
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
&lt;br/&gt; at
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
&lt;br/&gt; at
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
&lt;br/&gt; at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
&lt;br/&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:0e78b684-f55e-4ac7-8e0a-cb7e6064a05c] --&gt;</description>
      <pubDate>Fri, 04 Jul 2008 02:21:53 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/244205</guid>
      <dc:date>2008-07-04T02:21:53Z</dc:date>
      <clearspace:dateToText>6 years 4 months ago</clearspace:dateToText>
      <clearspace:messageCount>1</clearspace:messageCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Error invoking CFC for gateway</title>
      <link>https://forums.adobe.com/thread/222801</link>
      <description>&lt;!-- [DocumentBodyStart:fd689919-5af0-456c-9aa8-33818d840017] --&gt;&lt;div class="jive-rendered-content"&gt;Am getting the following error while invoking the event
gateway
&lt;br/&gt;
&lt;br/&gt;"Error invoking CFC for gateway myGateway: Event Handler
Exception. An exception occurred when invoking a event handler
method from Application.cfc The method name is: onRequestStart."
&lt;br/&gt;
&lt;br/&gt;Please advice&lt;/div&gt;&lt;!-- [DocumentBodyEnd:fd689919-5af0-456c-9aa8-33818d840017] --&gt;</description>
      <pubDate>Tue, 24 Feb 2009 12:12:25 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/thread/222801</guid>
      <dc:date>2009-02-24T12:12:25Z</dc:date>
      <clearspace:dateToText>10 months 1 week ago</clearspace:dateToText>
      <clearspace:messageCount>4</clearspace:messageCount>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

