You're probably missing fds.swc in your build path. That swc ships in LCDS. 



--- In [email protected], "Michael Sumner" <msum...@...> wrote:
>
> The error showed up after recompiling the project.  There may be an issue
> with that it was an old flex 2 project originally.
> 
>  
> 
> The current project I am working on is communicating, I started from scratch
> with it, but I had tried to get a jumpstart by using the CF/Flex wizard and
> I had the same error show up.
> 
>  
> 
> <?xml version="1.0" encoding="UTF-8"?>
> 
> <services-config>
> 
>  
> 
>     <services>
> 
>         <service-include file-path="remoting-config.xml" />
> 
>         <service-include file-path="proxy-config.xml" />
> 
>         <service-include file-path="messaging-config.xml" />
> 
>         <service-include file-path="data-management-config.xml" />
> 
>     </services>
> 
>  
> 
>     <security>
> 
>         <login-command class="flex.messaging.security.JRunLoginCommand"
> server="JRun"/>
> 
>         <!-- Uncomment the correct app server
> 
>         <login-command class="flex.messaging.security.TomcatLoginCommand"
> server="Tomcat"/>
> 
>         <login-command class="flex.messaging.security.WeblogicLoginCommand"
> server="Weblogic"/>
> 
>         <login-command class="flex.messaging.security.WebSphereLoginCommand"
> server="WebSphere"/>
> 
>         -->
> 
>         <!--
> 
>         <security-constraint id="basic-read-access">
> 
>             <auth-method>Basic</auth-method>
> 
>             <roles>
> 
>                 <role>guests</role>
> 
>                 <role>accountants</role>
> 
>                 <role>employees</role>
> 
>                 <role>managers</role>
> 
>             </roles>
> 
>         </security-constraint>
> 
>         -->
> 
>     </security>
> 
>  
> 
>     <channels>
> 
>  
> 
>         <!--  CF Based Endpoints -->
> 
>         <channel-definition id="my-cfamf"
> class="mx.messaging.channels.AMFChannel">
> 
>             <endpoint
> uri="http://{server.name}:{server.port}{context.root}/flex2gateway/";
> class="flex.messaging.endpoints.AMFEndpoint"/>
> 
>             <properties>
> 
>                 <polling-enabled>false</polling-enabled>
> 
>                 <serialization>
> 
>                     <instantiate-types>false</instantiate-types>
> 
>                 </serialization>
> 
>             </properties>
> 
>         </channel-definition>
> 
>  
> 
>         <channel-definition id="cf-polling-amf"
> class="mx.messaging.channels.AMFChannel">
> 
>             <endpoint
> uri="http://{server.name}:{server.port}{context.root}/flex2gateway/cfamfpoll
> ing" class="flex.messaging.endpoints.AMFEndpoint"/>
> 
>             <properties>
> 
>                 <polling-enabled>true</polling-enabled>
> 
>                 <polling-interval-seconds>8</polling-interval-seconds>
> 
>                 <serialization>
> 
>                     <instantiate-types>false</instantiate-types>
> 
>                 </serialization>
> 
>             </properties>
> 
>         </channel-definition>
> 
>  
> 
>         <channel-definition id="my-cfamf-secure"
> class="mx.messaging.channels.SecureAMFChannel">
> 
>             <endpoint
> uri="https://{server.name}:{server.port}{context.root}/flex2gateway/cfamfsec
> ure" class="flex.messaging.endpoints.SecureAMFEndpoint"/>
> 
>             <properties>
> 
>                 <polling-enabled>false</polling-enabled>
> 
>                 <serialization>
> 
>                     <instantiate-types>false</instantiate-types>
> 
>                 </serialization>
> 
>             </properties>
> 
>         </channel-definition>
> 
>         
> 
>         <!--  ColdFusion specific RTMP channel -->
> 
>        
> 
>         <channel-definition id="cf-rtmp"
> class="mx.messaging.channels.RTMPChannel">
> 
>             <endpoint uri="rtmp://{server.name}:2048"
> class="flex.messaging.endpoints.RTMPEndpoint"/>
> 
>             <properties>
> 
>                 <idle-timeout-minutes>20</idle-timeout-minutes>
> 
>                 <serialization>
> 
>                     <instantiate-types>false</instantiate-types>
> 
>                 </serialization>
> 
>             </properties>
> 
>         </channel-definition>
> 
>        
> 
>  
> 
>         <!--  Java Based Endpoints -->
> 
>         <!--
> 
>         <channel-definition id="java-amf"
> class="mx.messaging.channels.AMFChannel">
> 
>             <endpoint
> uri="http://{server.name}:{server.port}{context.root}/flex2gateway/amf";
> class="flex.messaging.endpoints.AMFEndpoint"/>
> 
>         </channel-definition>
> 
>  
> 
>         <channel-definition id="java-secure-amf"
> class="mx.messaging.channels.SecureAMFChannel">
> 
>             <endpoint
> uri="https://{server.name}:{server.port}{context.root}/flex2gateway/amfsecur
> e" class="flex.messaging.endpoints.SecureAMFEndpoint"/>
> 
>         </channel-definition>
> 
>  
> 
>         <channel-definition id="java-polling-amf"
> class="mx.messaging.channels.AMFChannel">
> 
>             <endpoint
> uri="http://{server.name}:{server.port}{context.root}/flex2gateway/amfpollin
> g" class="flex.messaging.endpoints.AMFEndpoint"/>
> 
>             <properties>
> 
>                 <polling-enabled>true</polling-enabled>
> 
>                 <polling-interval-seconds>8</polling-interval-seconds>
> 
>             </properties>
> 
>         </channel-definition>
> 
>  
> 
>         <channel-definition id="java-rtmp"
> class="mx.messaging.channels.RTMPChannel">
> 
>             <endpoint uri="rtmp://{server.name}:2036"
> class="flex.messaging.endpoints.RTMPEndpoint"/>
> 
>             <properties>
> 
>                 <idle-timeout-minutes>20</idle-timeout-minutes>
> 
>             </properties>
> 
>         </channel-definition>
> 
>         -->
> 
>  
> 
>         <channel-definition id="java-http"
> class="mx.messaging.channels.HTTPChannel">
> 
>             <endpoint
> uri="http://{server.name}:{server.port}{context.root}/flex2gateway/http";
> class="flex.messaging.endpoints.HTTPEndpoint"/>
> 
>         </channel-definition>
> 
>  
> 
>         <channel-definition id="java-secure-http"
> class="mx.messaging.channels.SecureHTTPChannel">
> 
>             <endpoint
> uri="https://{server.name}:{server.port}{context.root}/flex2gateway/httpsecu
> re" class="flex.messaging.endpoints.SecureHTTPEndpoint"/>
> 
>         </channel-definition>
> 
>     </channels>
> 
>  
> 
>     <logging>
> 
>         <target class="flex.messaging.log.ConsoleTarget" level="Error">
> 
>             <properties>
> 
>                 <prefix>[Flex] </prefix>
> 
>                 <includeDate>false</includeDate>
> 
>                 <includeTime>false</includeTime>
> 
>                 <includeLevel>false</includeLevel>
> 
>                 <includeCategory>false</includeCategory>
> 
>             </properties>
> 
>             <filters>
> 
>                 <pattern>Endpoint.*</pattern>
> 
>                 <pattern>Service.*</pattern>
> 
>                 <pattern>Configuration</pattern>
> 
>                 <pattern>Message.*</pattern>
> 
>             </filters>
> 
>         </target>
> 
>     </logging>
> 
>  
> 
>     <system>
> 
>         <manageable>false</manageable>
> 
>         <!-- 
> 
>         <redeploy>
> 
>             <enabled>true</enabled>
> 
>             <watch-interval>20</watch-interval>
> 
>  
> <watch-file>{context.root}/WEB-INF/flex/services-config.xml</watch-file>
> 
>  
> <watch-file>{context.root}/WEB-INF/flex/proxy-config.xml</watch-file>
> 
>  
> <watch-file>{context.root}/WEB-INF/flex/remoting-config.xml</watch-file>
> 
>  
> <watch-file>{context.root}/WEB-INF/flex/messaging-config.xml</watch-file>
> 
>  
> <watch-file>{context.root}/WEB-INF/flex/data-management-config.xml</watch-fi
> le>
> 
>             <touch-file>{context.root}/WEB-INF/web.xml</touch-file>
> 
>         </redeploy>
> 
>          -->
> 
>     </system>
> 
>  
> 
> </services-config>
> 
>  
> 
> Michael Sumner
> 
> Nations Best Sports
> 
> 817-788-0034 ext 244
> 
> 817-788-8542 fax
> 
>  
> 
> From: [email protected] [mailto:[email protected]] On
> Behalf Of valdhor
> Sent: Thursday, July 16, 2009 10:21 AM
> To: [email protected]
> Subject: [flexcoders] Re: error message
> 
>  
> 
>   
> 
> What code generates the error?
> 
> Can you post your services-config file?
> 
> --- In [email protected] <mailto:flexcoders%40yahoogroups.com> ,
> "Michael Sumner" <msumner@> wrote:
> >
> > Is anyone familiar with this error message. I think I have a problem in my
> > services-config file.
> > 
> > 
> > 
> > Channel definition, mx.messaging.channels.RTMPChannel, cannot be found.
> > 
> > 
> > 
> > I am using the default WEB-INF folder, and have a mapping to it as I have
> it
> > at c:\InetPub\wwwroot\
> > 
> > 
> > 
> > I would appreciate any insight.
> > 
> > 
> > 
> > Michael Sumner
> > 
> > Nations Best Sports
> >
>


Reply via email to