Flex arraycollection to Coldfusion

I have an arraycollection that is populated from a
webservice. Users can edit all fields, and it is possible that
every row in the database will need to be modified. I'm trying to
find the best way to get this data back to coldfusion to modify
several database rows at once. Is there a way to pass the
arraycollection back to coldfusion as an object or array and loop
through it on the server side. Any help (including code samples or
tutorials) would be greatly appreciated.
Eric

Flex ArrayCollection have more columns than CF Arrary,It
doesn't work.

Similar Messages

  • Passing null/empty values from Flex to a Coldfusion ORM object

    This is the situation.
    If you have an actionscript VO that binds to a Coldfusion ORM object via the RemoteClass metadata and some of the values are not set, null, or empty strings and you pass it from Flex to Coldfusion then the Coldfusion deserialization barfs saying the values are not acceptable date values (for type="date") or valid emails (for validation="email") or other such validations, even if required="false" on the property.
    For instance, if you have the following actionscript VO:
    package vo
        [RemoteClass(alias="com.companyname.Person")]
        [Bindable]
        public class Person
            public var person_id:Number;
            public var last_name:String;
            public var first_name:String;
            public var email:String;
            public var created_date:date;
         public function Person() {}
    And you have the corresponding Coldfusion component:
    <cfcomponent displayname="person" output="false"
        alias="com.companyname.Person"
        schema="dbo" persistent="true"
        table="PERSON">
        <cfproperty name="person_id" type="numeric" fieldtype="id" validate="integer" required="true" column="PERSON_ID"/>
        <cfproperty name="last_name" type="string" column="LAST_NAME" required="true"/>
        <cfproperty name="first_name" type="string" required="true" column="FIRST_NAME"/>
        <cfproperty name="email" type="string" validate="email" required="false" column="EMAIL"/>
        <cfproperty name="date_created" type="date" required="false" column="DATE_CREATED"/>
    </cfcomponent>
    Then if you pass the actionscript VO as is to Coldfusion, the deserialization complains that you do not have a valid email or a valid date for date_created.  This is bad, bad, bad.  Essentially if you have a validation of certain types (email being one) or a date property, or probably some other cases, then you essentially can not make it not required, it automatically makes it required because the Coldfusion serializer considers null/empty values as invalid dates or emails.  But the serializer should not care for values that are not required, there has to be a way to pass null/empty values to these data types, but apparently there's not.  If you pass an empty string ("") you still have the same problem.  I know Coldfusion does not have null values, but there has to be a way to do this, otherwise it defeats the purpose of having required="false" and some kind of validation on the property.
    There seems to be two ways around it.  One is to override the implicit setters for the properties on the Coldfusion side and check for 0 length values yourself, then set the property if it is not, or create your own validation routine.  I ended up creating my own validation function since I didn't want to have to write a setter function for everyone of these cases and I can pass back user friendly validation messages.
    Have other people encountered this problem?  How have you gotten around it?  Thanks.

    Looks like a known workaround to this issue is to wrap the Flex object in an array.
    The ColdFusion CFC will accept that as an array, with the first an only element being a struct, which is the object you built in Flex.

  • Is there a maximum size in either Flex, AMF or ColdFusion

    I wish there was an AMF forum.
    I have CF version 8,0,0,176276, Flex 3.0.214193, and Oracle 10g.
    I am trying to build an application in Flex, using RemoteObject access to a ColdFusion .cfc via the AMF channel. The application has several comment fields with are allowed to be over 4000 characters in length, so in Oracle they are defined as CLOBs. It all was going pretty well until I started to test it with some very long comments. Then the updates stopped working, but there was no error. I used CFFILE to dump the passed arguments out to a file, and found that one of the CLOB fields in the where clause was truncated. But then I don't know for sure that the CFFILE wasn't the one doing the truncating. All I know for sure is the update doesn't complete. None of the logs show anything. I can't use a TRY/CATCH in the .cfc because the CFQUERY runs without an error.
    Is there a size limit in Flex RemoteObject? or maybe the limit is in AMF.
    I don't even know where to start on this one. Any help you can give my is appreciated.
    Scott

    About CLOB size, it's 4Go not 4000 characters - VARCHAR2 supports up to 4000 bytes. Pay attention also to unicode encoding!
    Are you using CFQUERYPARAM to insert into the CLOB fields ?
         <CFQUERYPARAM CFSQLTYPE="CF_SQL_CLOB" VALUE="    ">
    use the Firebug extension (https://addons.mozilla.org/en-US/firefox/addon/1843) in Firefox3 and do some network monitoring: let me know what you're seeing there.
    Hope it will help...

  • Flex 3 missing Coldfusion CRUD

    I just installed Flex 3, and I get RDS working fine. I was
    going to quickly build an app to test using the Coldfusion CRUD
    Wizard, but it appears to be non-existent in Flex 3?
    Help! Where did it go? Am I missing something? The only thing
    I found was a CFC wizard on the the RDS Dataview tab, but I need
    the entire CRUD application wizard, not just a few CFCs.
    Thanks!

    This appears to be a bug in the Windows Vista x64
    functionality with Flex 3 (even when the program is run as
    Administrator). I have posted a bug report and the work-around I
    discovered here at Adobe's Flex Bug and Issue Management System:
    https://bugs.adobe.com/jira/browse/FB-12276
    In case the link above becomes invalid, the problem is that
    NONE of the Wizard Folder expand to show and of the wizards
    available in the Wizard Selection window when you click to expand
    any folder and show its contents. The work-around is to type part
    of the name of the particular wizard you want to run in the search
    field above the wizard folder listings. This will cause the folder
    to expand and reveal the wizards matching what the user has typed.
    In my case I had to install Flex 3 on my Windows XP system to know
    the names of what I was searching for, and typing "cold" brought up
    the ColdFusion CRUD wizard below the folder.

  • Flex 3 and ColdFusion MX 702

    I have seen a few posts on similar problems in the Flex 2
    forums, but unfortunately no solution that would help me!
    Everything is working perfectly if I run Flex 3 on the same
    server as Cf is installed but if I try to set up the Flex project
    on my workstation I only get "Invalid root. The WEB-INF/flex folder
    must contain either flex-config.xml or services-config.xml."!
    So, obviously there is something wrong in how I specify the
    web root and url. I am running the J2EE version of CF and the IIS
    instead of the built-in webserver. I have tried so many different
    settings, changing the location of the config file, switching to
    the cf webserver, verifying that I can browse to the same location
    and that the flash2gateway is correct...
    Does anyone know how I should configure this correctly?
    Hi, Johan

    Hi Eastweb,
    I presume you have Flex Builder Beta 3. I think you should
    choose CF with ColdFusion Flash Remoting on the first page of the
    wizard. Second page of the wizard you should select:
    - Deployed to J2EE server;
    - Web root - browse to IIS web root folder
    - uncheck ColdFusion WAR is located in Web root and browse to
    WAR folder of the deployed ColdFusion (for example
    C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\).
    This should do the trick.
    regards,
    Mihai

  • From Adobe Workspace+Flex : ArrayCollection to ArrayList

    Hi all
    I have created a flex application which sends an ArrayCollection to LCDS 3.1 installed on JBoss. This ArrayCollection is converted into ArrayList which successfuly is converted into Array by a server java program.
    The Problem:
    I incorporate the flex application into Adobe LC PBM ES 2.5. The first time, I execute the process, the flex application is executed successfuly and the ArrayCollection is converted into ArrayList which is also converted into Array. The second time, I execute the process, an error occurs at the server and the cause is that the java program can not figure the mirror java class on the server. But, if I refresh the Adobe Workspace, we go bakc to sequere one where the flex application is executed successfuly the first time.
    Any idea how to over come this issue?
    Best regards
    Khaled

    Hi all
    I have created a flex application which sends an ArrayCollection to LCDS 3.1 installed on JBoss. This ArrayCollection is converted into ArrayList which successfuly is converted into Array by a server java program.
    The Problem:
    I incorporate the flex application into Adobe LC PBM ES 2.5. The first time, I execute the process, the flex application is executed successfuly and the ArrayCollection is converted into ArrayList which is also converted into Array. The second time, I execute the process, an error occurs at the server and the cause is that the java program can not figure the mirror java class on the server. But, if I refresh the Adobe Workspace, we go bakc to sequere one where the flex application is executed successfuly the first time.
    Any idea how to over come this issue?
    Best regards
    Khaled

  • Flex ArrayCollection to Java HashSet

    Hi,
    I got a problem that I cannot resolve by googleing. I need your     expertise:
    Here s the part of the story:
    1 Bdc have many BdcDetails, so in Flex Bdc.as ==>       public var bdcdetails:ArrayCollection; in Java Bdc.java       ==> private Set<BdcDetails> bdcdetails = new       HashSet<BdcDetails>();
    It works perfectly in Flex which means Flex understand what is     inside a Java HashSet. But when a Bdc is sent to Java. Java don't     understand what is inside ArrayCollection, everything is ASObject.     So ((BdcDetails)bdc.getBdcdetails().toArray()[0]) ==> give       ClassCastException
    Please help! Thanks
    P/S: I am using Blaze DS 4.5.0.0-SNAPSHOT

    Thanks, i ve found the work around.
    I create a setter for Bdc.as
    funtion set bdcDetails in which i loop through the arraycollection, cast
    each item to BdcDetails  then put back to the arraycollection.
    That s it. I dont know it s good or not but it works

  • Running a Flex App using Coldfusion Flash Remoting Services gives me a blank SWF file but no errors

    I cannot get flex to compile to display anything. even if its
    just a single panel and some text. If I use the wizard and choose
    "Basic" or whatever, I get a flex app. But i am using cfcs so I
    selected "Coldfusion Flash Remoting Services" and when I select
    run, the browser pops up with a nice big blank screen. No loading
    progress bar, no errors, nothing.
    I am running cf8 as a standalone (developers edition)
    under project properites --> server
    root folder: C:\ColdFusion8\wwwroot
    root url
    http://localhost:8500/
    context: (blank)
    I have messed with context and webroot.
    I doesn't matter if I use a remoteObject or not. Nothing
    happens
    i through in a crossdomain.xml into the root to open it up,
    just to be sure.
    I am really stumped. I had this working fine on a previous pc
    (running cf7)
    any ideas anyone???

    I tried with some of the AS3 files from Adobe samples (http://www.adobe.com/devnet/actionscript/samples.html), for eg., the Drawing API. There are slider components in the flash app that don't show up either. Does that give anyone a clue as to what might be wrong? Thanks, Ramesh

  • Flex ArrayCollection changing values

    We are using the following code to create a string that we
    can use as the "data" value in a Flex 2 combobox. The data is
    originally being pulled from our Active Directeory.
    q_GetAllEmployeesMod.data is in the form of a GUID.
    <cfset temp =
    querySetCell(q_getAllEmployeesFinal,"Data",'#binaryEncode(toBinary(toBase64(q_getAllEmplo yeesMod.data)),'hex')#'&':'&'#q_getAllEmployeesMod.mailnickname#')>
    One example of the string that we get is
    35EFBFBD2A4EEFBFBD3A6F47EFBFBDEFBFBDEFBFBDEFBFBD1D67EFBFBD5:bsmith
    The query that we are creating works just fine. However, when
    that query is called through a CFC and passed to flex 2 in a Remote
    Object and create an ArrayCollection we get the following value
    353F2A4E3F3A6F473F3F3F3F1D673F5A:bsmith
    It appears that the connector is converting the first Hex
    number that we are passing as a string into another Hex number. Of
    course then when we attempt to use those values against a db they
    don't match. Has anyone run across this?
    Thanks.
    Mark F.

    Thanks I was in there with little luck. Can you explain this please?
    itemUpdated(item:Object, property:Object = null, oldValue:Object = null, newValue:Object = null):void
    Notifies the view that an item has been updated.

  • Flex CRUD connecting ColdFusion

    I have a question about Flex 4 Service authentication - Remote authentication.
    In the username and password, I enter the data from the RDS or enter username and password for my MySQL database ...?

    Neither. The Remote Authentication screen refers to hard-coded credentials in the CF server configuration as described here:
    http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec115d2 -7ffc.html#WSc3ff6d0ea77859461172e0811cbec115d2-7ff7
    Dave Watts, CTO, Fig Leaf Software
    http://www.figleaf.com/
    http://training.figleaf.com/

  • Flex 3 and ColdFusion

    Not sure if I posted too much the first time, so lets take
    this one stap.
    I am so confused on this flex2gateway directory and cannot
    find a single answer in Google or the groups.
    Is the flex2gateway directory something that needs to be
    added to each app to access CF? I am getting this error on my app
    (Flex3 and BlueDragon 7):
    faultCode:Client.Error.MessageSend
    faultString:'Send failed'
    faultDetail:'Channel.Connect.Failed error
    NetConnection.Call.Failed: HTTP: Status 403: url: '
    http://med.umich.edu/flex2gateway/''
    If I need to add this directory (flex2gateway), what goes in
    it? I just want to connect to my CFC and populate the Flex app with
    my data!

    Ok, here is the answer since no one seems to know it. You
    cannot connect to CF if you A.) are running blue dragon or B.) Dont
    have the config files set up in Adobe CF.....
    If A or B, you need to use WebService or
    HTTPRequest...

  • Regarding Flex ArrayCollection

    Hi All,
    I have a ArrayCollection which gets filled up by an DS fill()
    method.
    The ArrayCollection holds a single object.
    When i bind this ArrayCollection to <mxLDataGrid/> the
    results are displayed fine.
    But when i try to get the Object by using getItemAt(0), am
    getting this exception
    RangeError: Index '0' specified is out of bounds.
    at mx.collections::ListCollectionView/getItemAt()
    at emp/::employeeChange()
    at emp/__dgEmployee_change()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.core::UIComponent/dispatchEvent()
    at
    mx.controls.listClasses::ListBase/mx.controls.listClasses:ListBase::mouseUpHandler()
    at
    mx.controls::DataGrid/mx.controls:DataGrid::mouseUpHandler()
    Here is the code am trying to get the object..
    <mx:DataGrid id="dgEmployee" dataProvider="{employees}"
    width="100%" height="100%"
    alternatingItemColors="[#e6e6e6]" editable="false"
    change="employeeChange()" valueCommit="employeeChange()">
    <mx:columns>
    <mx:DataGridColumn dataField="companyID"
    headerText="Company Id" />
    <mx:DataGridColumn dataField="name"
    headerText="Name"/>
    </mx:columns>
    </mx:DataGrid>
    private function employeeChange():void
    if (dgEmployee.selectedIndex > -1)
    if (employee !=
    employees.getItemAt(dgEmployee.selectedIndex))
    employee = employees.getItemAt(dgEmployee.selectedIndex) as
    EmployeeDetails;
    dsEmployeeFinancial.fill(employeeFinancials, "by-employee",
    employee.id);
    var myCursor:IViewCursor =
    employeeFinancials.createCursor();
    employeeFinancial = employeeFinancials.getItemAt(0) as
    EmployeeFinancial;
    Alert.show("Employee PF :
    "+employeeFinancial.providendFund);
    Error Occures in the function employeeChange() when getting
    the Object from employeeFinancials.getItemAt(0) ;
    But the Follwoing DataGrid is working fine without any
    exception
    <mx:DataGrid id="dgFinance"
    dataProvider="{employeeFinancials}" width="100%" height="100%"
    alternatingItemColors="[#e6e6e6]" editable="false">
    <mx:columns>
    <mx:DataGridColumn dataField="basic" headerText="Basic"
    />
    <mx:DataGridColumn dataField="houseRentAllowance"
    headerText="House Rent Allowance"/>
    </mx:columns>
    </mx:dataGrid>

    You could try testing to see if your ArrayCollection actually
    has any objects in it yet. It also seems like you could use the
    selectedItem in your code as below:
    private function employeeChange():void
    if (dgEmployee.selectedIndex > -1)
    if (employee != dgEmployee.selectedItem)
    employee = dgEmployee.selectedItem as EmployeeDetails;
    dsEmployeeFinancial.fill(employeeFinancials, "by-employee",
    employee.id);
    var myCursor:IViewCursor = employeeFinancials.createCursor();
    if (employeeFinancials.length > 0) {
    employeeFinancial = employeeFinancials.getItemAt(0) as
    EmployeeFinancial;
    Alert.show("Employee PF : "+employeeFinancial.providendFund);
    Vygo

  • Flex charting with Coldfusion data

    Can anyone tell me if there is a way to do charting with data
    coming from Coldfusion? I'm not a newbie, but not quite there yet
    with coding yet either so an example might be helpful. I was
    looking at converting a cfc. file to as. but started doubting if
    that can actually be done (just a stab in the dark on my
    part)

    Should have spotted this last time. Try using
    event.lastResult.getCDDDataResult.
    I am presuming that updateCDDChart is being called as the
    result of an HTTPService.
    EDIT: No, that won't work. You use lastResult when using
    HTTPService a different way. Not entirely sure what your problem is
    at the moment. I'll maybe get a chance to look more closely this
    evening.

  • How to convert java map collection to flex arraycollection

    Dear all:
    as title, any sample code?  thank for helping
    java map [{"id":140,"state":"Alabama","obama":6,"mccain":5,"ec":3},
                   {"id":91,"state":"Alaska","obama":4,"mccain":5,"ec":3}

    I think the closes thing to an .exe in Java is developing you program as an application, and packing it into an "executable jar" file.

  • Java.lang.NoClassDefFoundError: coldfusion/flex/CFEventGatewayAdapter

    When I start EventGateway of DataServicesMessaging, I got an
    exception like below.
    How should I do for fixing this problem???
    I installed ColdFusion 801 without LiveCycle Data Services.
    I installed LiveCycle Data Services on same machine.
    We can't do this?? We have to install LiveCycle Data Services
    by CF installer???
    500
    ROOT CAUSE:
    java.lang.NoClassDefFoundError:
    coldfusion/flex/CFEventGatewayAdapter
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at
    java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
    at java.lang.Class.getConstructor0(Class.java:2699)
    at java.lang.Class.getConstructor(Class.java:1657)
    at
    coldfusion.eventgateway.EventServiceImpl.allocateEventGateway(EventServiceImpl.java:1031)
    at
    coldfusion.eventgateway.EventServiceImpl.startEventGateway(EventServiceImpl.java:398)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at coldfusion.runtime.StructBean.invoke(StructBean.java:511)
    at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2300)
    at
    cfgateways2ecfm251583696._factor5(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\even tgateway\gateways.cfm:261)
    at
    cfgateways2ecfm251583696._factor20(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\eve ntgateway\gateways.cfm:251)
    at
    cfgateways2ecfm251583696.runPage(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\event gateway\gateways.cfm:1)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196)
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370)
    at
    coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:279)
    at
    coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
    at
    coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
    at
    coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
    at
    coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at coldfusion.CfmServlet.service(CfmServlet.java:175)
    at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
    at
    coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 )
    at
    coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
    at jrun.servlet.FilterChain.service(FilterChain.java:101)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Caused by: java.lang.ClassNotFoundException:
    coldfusion.flex.CFEventGatewayAdapter
    at
    coldfusion.bootstrap.BootstrapClassLoader.loadClass(BootstrapClassLoader.java:235)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at
    java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    ... 45 more
    javax.servlet.ServletException: ROOT CAUSE:
    java.lang.NoClassDefFoundError:
    coldfusion/flex/CFEventGatewayAdapter
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at
    java.lang.Class.privateGetDeclaredConstructors(Class.java:2389)
    at java.lang.Class.getConstructor0(Class.java:2699)
    at java.lang.Class.getConstructor(Class.java:1657)
    at
    coldfusion.eventgateway.EventServiceImpl.allocateEventGateway(EventServiceImpl.java:1031)
    at
    coldfusion.eventgateway.EventServiceImpl.startEventGateway(EventServiceImpl.java:398)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at coldfusion.runtime.StructBean.invoke(StructBean.java:511)
    at coldfusion.runtime.CfJspPage._invoke(CfJspPage.java:2300)
    at
    cfgateways2ecfm251583696._factor5(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\even tgateway\gateways.cfm:261)
    at
    cfgateways2ecfm251583696._factor20(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\eve ntgateway\gateways.cfm:251)
    at
    cfgateways2ecfm251583696.runPage(E:\cf8_updates\cfusion\wwwroot\CFIDE\administrator\event gateway\gateways.cfm:1)
    at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:196)
    at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:370)
    at
    coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
    at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:279)
    at
    coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
    at
    coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
    at coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
    at
    coldfusion.filter.LicenseFilter.invoke(LicenseFilter.java:27)
    at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
    at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
    at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
    at
    coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
    at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
    at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
    at coldfusion.CfmServlet.service(CfmServlet.java:175)
    at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
    at
    coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 )
    at
    coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
    at jrun.servlet.FilterChain.service(FilterChain.java:101)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    Caused by: java.lang.ClassNotFoundException:
    coldfusion.flex.CFEventGatewayAdapter
    at
    coldfusion.bootstrap.BootstrapClassLoader.loadClass(BootstrapClassLoader.java:235)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at
    java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    ... 45 more
    at
    coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:70 )
    at
    coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
    at jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
    at jrun.servlet.FilterChain.service(FilterChain.java:101)
    at
    jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
    at
    jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at
    jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
    at
    jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at
    jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
    at
    jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at
    jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

    Someone suggested it could be a serialisation issue but I I'm not sure how to go about checking that.
    Any suggestions ?

Maybe you are looking for

  • Blu-Ray 5.1 DD SS Audio Glitch after import into Encore.

    Working on burning a full length blu-ray with two audio track options (stereo audio, 5.1 DD SS)  I'm not having any problems connecting menu's or burning.  After the initial burn everything was working flawlessly except when I played the video with t

  • Trouble with RMI codebase

    Hi, i've created a file transfer application via RMI, it work very well, i can transfer file longer than 1 GB without any problem. But when i copy my project with all classes to another directory, it doesn't work. I'm sure that the trouble is in the

  • Logging after Capture Now

    1. How do you log the video after being captured through Capture Now? 2. What is the benefit of doing this since it was all captured? With logging before capturing it helps determine what you want... Thanks.

  • AQ messages will not progress workflow

    Hi all, I am running WF 2.6.2 on an oracle 9.0.1.1 database on a windows 2000 server machine. We have messages being enqueued onto the WF_INBOUND_QUEUE, which instead of being processed seem to "disappear" the messages do not end up on the WF_INBOUND

  • Lancer un executable dans une fenêtre de mon VI

    Bonjour, Je souhaite lancer un executable dans mon VI, comme s'il faisait parti de mon code (pas à l'exterieur) Pour simplifier les choses, mon programme fera la liste de tous les executables disponibles dans un repertoire défini puis les proposera d