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.

Similar Messages

  • Anyone know how to gernerate CRUD applications with flex and coldfusion?

    Anyone know how to gernerate CRUD applications with flex and
    coldfusion? I am working with a remote coldsfusion installation
    with MS SQL and I don't have RDS.

    You might investigate "squidhead". It is CF based. I'm not
    sure if it has any Flex related features.
    http://squidhead.riaforge.org/

  • How do I save a file to a server using flex and coldfusion?

    How do I save a file to a server using flex and coldfusion?
    On the CF side I might need to use this:
    <cffile action="UPLOAD" filefield="Filedata"
    destination="#expandpath('..\somepath)#"
    nameconflict="overwrite">
    And on the flex side I might need to use something like this:
    var sendVars:URLVariables = new URLVariables();
    sendVars.action = "upload";
    var request:URLRequest = new URLRequest();
    request.data = sendVars;
    request.url = _strUploadScript;
    request.method = URLRequestMethod.POST;
    _refUploadFile = new FileReference();
    _refUploadFile = _arrUploadFiles[_numCurrentUpload].data;
    _refUploadFile.addEventListener(ProgressEvent.PROGRESS,
    onUploadProgress);
    _refUploadFile.addEventListener(Event.COMPLETE,
    onUploadComplete);
    _refUploadFile.addEventListener(IOErrorEvent.IO_ERROR,
    onUploadIoError);
    _refUploadFile.addEventListener(SecurityErrorEvent.SECURITY_ERROR,
    onUploadSecurityError);
    _refUploadFile.upload(request, "file", false);
    I just don't know how to put it all together in Coldfusion.

    try this...
    http://cf-creations.co.uk/blog/index.cfm/2008/9/20/Flex--File-Upload-Form--Part-One--Build ing-The-Initial-Form

  • Dynamic value objects in flex and coldfusion 9

    I'm writing a program for a company that does registrations for conventions and trade-shows.  The problem I'm having is that each different client wants to store different data for each show.  Most of the data is the same (attendee's name, address, etc...), but each show has some customizations that it wants to have...  So each database for each show is going to be different...
    Right now, the only way I know how to transfer data from Flex to ColdFusion is via a Value Object.  (Well, the only good way to do it, that is.)  My problem comes when a client wants a particular database customized.  I have MANY questions about this...
    1) How do I tell my Value Object what fields we've added to or changed in the database without re-writing the entire VO (in both the .AS and .CFC files) and re-compiling my program?  In other words, I need a dynamic VO that changes automatcially with the database.
    2) If there is a way to dynamically create a VO in Flex (and from a few blog posts I've seen, it seems there is a way), how do I tell CF9 what the structure of that dynamically-created VO is?  Without re-writing a bunch of .CFC files every time I add or change a field in the database, that is...
    3) How do I reference the dynamically-created fields in my Flex program?  Right now, for example, I can define a variable called attendeeInfo as type attendeeInfoVO, and then reference things like attendeeInfo.first_name, attendeeInfo.last_name, etc...  How do I reference a field programmatcially when I don't know what it's going to be called beforehand?
    4) How do I make my program display/modify those dynamically-created fields?  Right now, using the attendeeInfo example above, I can create a TextInput with an id="firstNameInput" and just say firstNameInput.text = "{attendeeInfo.first_name}".  That won't work when I have no clue how many dynamically-created fields there are, or even what kind of data they're going to store...  How do I deal with this?
    5) Is there something other than VOs that would fit this situation better?  Am I limiting myself by using VOs in the first place?  Is it just plain impossible to do this with VOs?  And if so, what are my alternatives?  I need a structured object that can be passed around with a single reference -- I absolutely DO NOT want to pass a bunch of references to a bunch of different variables -- that's why I used VOs from the very beginning.
    6) Can I simply PAY someone at Adobe for one-on-one help here?  Do they have experts that you can "buy" for a few hours?  What's the charge for that, if such a thing is available?  Or, is this problem well-explained somewhere on the Web, and I just haven't found it yet?
    I'm very confused here, and it seems like I might have to re-write a ton of code, which I'm not looking forward to...  Ugh...  I appreciate any help you can give me...
    Thanks,
    Laurence MacNeill
    Mableton, Georgia, USA

    This blog post is pretty close to what I want:
    http://justinjmoses.wordpress.com/2008/10/10/flex-dynamic-bindable-value-objects/
    So there are the dynamic value objects I was looking for.  But the blog-poster is using LINQ and .Net 3.5.  I'm using ColdFusion9.
    So, how do I get ColdFusion9 to deal with that?  How do you get CF9 to recognize the fact that you've changed the VO, and deal with it appropriately?
    Thanks,
    L.

  • Flex preventing ColdFusion server from logging exceptions!

    Hello all,
    Whenever I invoke a CFC from Flex, if the CFC throws an
    exception, that exception is not logged in the ColdFusion server
    logs. I built an html page that invokes the same page, and when the
    exception is thrown it is indeed logged on the server.
    Why is Flex preventing ColdFusion from logging the
    exceptions!?

    I've never realized that but you can add a cflog tag to your
    CFC or debug the error taking a look at the stacktrace withing FB
    debugger.

  • Problem retrieving Session variables in Flex from Coldfusion

    For about a year I've been using a cfc that allows me to remote call from within Flex to retrieve session-level variables.  I much prefer this to using FlashVars because with the remote call the session values don't show up in the page source.
    This was working fine when I was using an Application.cfm file to manage my Coldfusion pages.  However when I switched to using an Application.cfc file, the cfc stopped working.  Neither the cfc or the cfm file contain any code to manage these session variables (they are set in other pages), so the only real difference seems to be changing from Application.cfm to Application.cfc.
    Any thoughts why?  Thanks.

    Ok, this is resolved.
    The problem seems to have been related to the scope of Application.cfc and Application.cfm.  The directory which contained the cfc files had an Application.cfm controlling the session, while the directory with the pages that included the flex swf files had an Application.cfc file.  Apparently these two don't talk to each other.
    The solution is to use either Application.cfc or Application.cfm files, but not to mix them.  In other words, use either -- but be consistent.

  • Flex and Coldfusion error handling

    Hello! I was wondering if someone could point me in the right direction regarding error handling in a Flex app thats using an HTTPSERVICE RPC to a Coldfusion component.
    If a user is entering form data in Flex and clicks submit... the data is sent via the HTTPSERVICE send method as XML to the CFC. But what if there is a Coldfusion SQL insert statement error? Say a user enters a character in a number field (now i know the best thing to do would be to have actionscript ensure that the values entered are numbers but lets keep that aside just for this example). How could I alert the user to let them know the CFC encountered a SQL error? Or better yet... alert them that everything went "A" ok and their data was successfully submitted.
    I originally thought to put CFTRY and CFCATCH around the CFC code. I could do that fine, but had trouble passing back a message string so that FLEX could use it in an Alert.Show window.
    Thanks!
    -BosDog

    Hey Mike,
    Sorry after I posted I thought "this may be a question for CF guys as well".
    I definitely use and love RemoteObjects. Its great for binding to datagrids and to run SQL to return data from the server back to Flex. I've struggled with successfully passing variables from Flex to CF using RemoteObject though. Say a dataform with 5 text fields & 2 combo box dropdowns.
    I think you may have forgotten to post the link to the article for me to read... i didnt see it in your last post?
    Thanks!

  • Flex and ColdFusion and session facade?

    I want to deploy a flex application on an existing ColdFusion
    server. This server is already in production and uses a root
    Application.cfc to set session variables as well as authenticate
    the user to AD with getAuthUser. When I deploy my flex application,
    it fails because of the OnRequestStart cfcomponent within
    Application.cfc. I am wondering if this would be proper use of
    session facade? How do I best encapsulate session variables from
    the root Application.cfc within my new flex application? Basically
    I will need to follow the same authentication and cfset session
    guidelines that all of my other CF applications use, and my flex
    app needs to have theses session variables available to it, but I
    am not sure the best approach. Any insight is welcome.

    Did you enable session management in the Application.cfc or
    Application.cfm?

  • Flex and ColdFusion web services

    I have a simple CFC created that encompasses a function that
    has a query. I want to be able to use the web service in my Flex
    app, but I am having issues with getting the information from the
    CFC.
    My function is simple:
    <cffunction name="listBySubject" access="remote"
    returntype="query" output="false" hint="I grab the newest
    stories">
    <cfargument name="subject" type="string"
    required="yes">
    <cfquery name="list" datasource="#myDataSource#">
    SELECT linktext, story, photo
    FROM pressreleases
    WHERE rss_feed = <cfqueryparam
    value="#arguments.subject#" />
    OR rss_feed2 = <cfqueryparam value="#arguments.subject#"
    />
    ORDER BY releaseDate DESC
    </cfquery>
    <cfreturn list>
    </cffunction>
    How can I modify that to use in a Flex app's
    <mx:WebService>? Do I have to use cfsavecontent and return
    XML or can I keep it a query and use it with an ArrayCollection?
    Something like:
    <cffunction name="listBySubject" access="remote"
    returntype="xml" output="false" hint="I grab the newest
    stories">
    <cfargument name="subject" type="string"
    required="yes">
    <cfquery name="list" datasource="prmc-media">
    SELECT linktext, story, photo
    FROM pressreleases
    WHERE rss_feed = <cfqueryparam
    value="#arguments.subject#" />
    OR rss_feed2 = <cfqueryparam value="#arguments.subject#"
    />
    ORDER BY releaseDate DESC
    </cfquery>
    <cfsavecontent variable="storyList">
    <magStories>
    <cfoutput query="list">
    <magStory id="#ISBN#">
    <linkURL>#XMLFormat(linkURL)#</booktitle>
    <story>#XMLFormat(story)#</teaser>
    <photo>#XMLFormat(photo)#</price>
    </magStory>
    </cfoutput>
    </magStories>
    </cfsavecontent>
    <cfreturn storyList>
    </cffunction>
    Locally I can use RemoteObject all day with the way it is
    normally, but since UofMichigan has BlueDragon, I am forced to
    convert my apps to WebServices.

    Hi,
    Here is how to do the web services in coldfsuion.
    http://www.quackit.com/coldfusion/tutorial/coldfusion_web_services.cfm
    No in flex you call the webservices like:
    <mx:WebService id="webService"
    wsdl="
    http://www.flash-mx.com/ws/months.cfc?wsdl">
    <mx:operation name="getMonths"
    resultFormat="object"
    result="getMonths_result(event);"
    fault="getMonths_fault(event);" />
    </mx:WebService>
    http://blog.flexexamples.com/2008/04/14/calling-a-simple-web-service-from-flex-using-the-w ebservice-class/
    I hope this give you the idea.
    Rgds
    JFB

  • Flex + BlazeDS + ColdFusion + SQL

    Ok, I'm relatively new to this whole Flex thing -- I've been
    through a few tutorials, written a few apps, but I'm still unclear
    on a few things.
    I just want to write an app that reads record(s) from an SQL
    database, and allows the user to modify and update those record(s).
    Should be extremely simple, and yet somehow it's been overly
    complicated by a dozen layers of (seemingly unnecessary) software.
    So here are my questions:
    #1) Why can't Flex talk to an SQL database directly? Why do I
    need ColdFusion for this?
    #2) What the heck is BlazeDS? (Yes, I've read the FAQ and I
    still don't understand why I need it.) If I'm running BlazeDS, do I
    really need ColdFusion? If so, why?
    #3) In the BlazeDS FAQ, it mentions something about accessing
    server-side Java objects -- so do I need to install JavaEE on top
    of CF and the SQL database now, too?
    It just seems so overly complicated for such a simple task.
    If someone could explain all this to me, I would greatly
    appreciate it.

    "Laurence MacNeill" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    quote:
    Originally posted by:
    riesvantwisk
    >
    > 1) Flex (AIR) can talk to SQLite directly and I believe
    there is a MySQL
    > driver (Also air??) that can talk to MySQL directly.
    Other databases are
    > not
    > supported.
    > The main reason for this is that flex (browser) needs a
    client/server
    > architecture. It more or less is the same reason that
    javascript doesn't
    > talk
    > to any DB directly. And the reason is that http protocol
    is the 'standard'
    > to
    > communicate between a web-browser and a remote server,
    works across
    > firewalls
    > etc... For AIR there are simple no drivers yet, but I
    believe some are
    > currently in development.
    > Ok, so basically if I want web functionality in my Flex
    app, I have to use
    > CF
    > because HTTP breaks the direct connection between the
    Flex app and the SQL
    > database. Fine...
    >
    >
    >
    >
    quote:
    2) If you want to use Blaze-DS then you need java on the
    server.
    > Blaze-DS
    > is your middle layer that accepts a AMF request and
    passes the request to
    > a
    > pojo. Blaze-DS makes it simple to make that middle layer
    you hate so much.
    > It
    > can do more, like sending messages to attached clients
    from the
    > server.
    > Got no idea what a 'pojo' is. Or really what an AMF
    request is. I know
    > AMF
    > has something to do with remote-control of clients, or
    something like
    > that?
    >
    >
    >
    >
    quote:
    3) TO use Blaze-DS you can use a simple tomcat server if you
    want to,
    > and I
    > believe on the of the Blaze-DS samples even comes with
    tomcat.
    > Got no idea what a 'Tomcat server' is either. Never even
    heard of it.
    >
    >
    >
    >
    quote:
    The whole system is not really over-complex ... <SNIP>
    ... May be you
    > can
    > explain what environment you are running?
    > Yeah, I'll need my app to run in both a web-browser and
    on a desktop.
    > It's
    > the main reason I chose Flex, since it's just a simple
    re-compile to go
    > from
    > web to desktop (as long as I'm not interested in
    Air-specific
    > local-filesystem
    > calls, which I'm not because all our data is going to be
    stored on the web
    > server.) Technically I could run everything through a
    Flash-equipped
    > web-browser -- but why bother with using a web-browser
    on local intranet
    > machines? Just takes up extra bandwidth on the local
    network. So we'll
    > run
    > the app in Air on local machines, and customers will run
    it through their
    > Flash-equipped web-browsers on their home machines.
    >
    > But I still don't get why BlazeDS is needed. What does
    it do, exactly?
    > And
    > how hard is it to set up all the J2EE and Tomcat stuff
    (whatever the heck
    > Tomcat is) before you're able to run BlazeDS? It just
    seems like such a
    > hassle. (Heck, CF is enough of a hassle -- I can't even
    get that to
    > install
    > without killing IIS...)
    BlazeDS handles all the messaging for you. If you don't need
    your apps to
    be informed of stuff without making server request, you can
    use literally
    any back end under the sun, ASP, PHP, even good ole CGI.

  • Flex and Coldfusion

    Hi everyone,
    Can someone tell me how I can enable and disable a button on
    my flex application based on access level using coldfusion mx 7.
    Please help me, thanks
    Cliffy

    just add a field in your db for the "access level" like
    1,2,3,etc then get that value from the select * from login where
    user=var and pass=var, that should give you back the level then you
    can use it however you want once you are returning it.

  • Flex calling ColdFusion WebService

    We have a Flex application hitting ColdFusion web service and
    it works great.
    Now we need to employ security concerns before putting it in
    production so that only authorized users can interact with the web
    service. Do we have to pass credentials every time? Maybe this is
    more of a ColdFusion and web services question but considering Flex
    is so different I thought I would give this a try. Thanks.

    This is what i have
    public function getvalue(getvalueResultHandler:Function, getvalueFaultHandler:Function):void {
    // frame webservice request and invoke the service
    // create webservice object
    var service:WebService = new WebService();
    service.wsdl = URL + Common.WSDL_STRING;
    service.loadWSDL();
    var oper:Operation = service.getOperation(Common.operatn) as Operation;
    oper.resultFormat= Common.operationResultFormat;
    oper.addEventListener(ResultEvent.RESULT, getvalueResultHandler);
    oper.addEventListener(FaultEvent.FAULT, getvalueFaultHandler);
    // frame webservice request XML
    var xmlRequest:XML =
    <RetrievevalueRequest>
    <ClientID>{_helixGlobal.id}</ClientID>
    <WsdlVersion>{Common.wsdlVersion_2_0}</WsdlVersion>
    <ServiceType>{Common.serviceType}</ServiceType>
    <ApplicationID>{Common.applicationId}</ApplicationID>
    <RetrievevalueRequestItem>
    <ID>{_helixGlobal.inputparam}</ID>
    </RetrievevalueRequestItem>
    </RetrieveCvalueRequest>;
    oper.request = xmlRequest;
    service.endpointURI = Common.valueURL;
    oper.send();

  • Missing ColdFusion Support in Dreamweaver

    I can't say it enough and will continue to post until someone at Adobe listens.
    What Adobe has done is blindly pull the rug right out from under our feet by deprecating support for ColdFusion in Dreamweaver. Dreamweaver has been the one and only application I and thousands of others have used to code, design and FTP websites for years. Some of us have been using Dreamweaver as far back as when Allaire built it specifically to help ColdFusion developers. Dreamweaver offered ColdFusion tag support, a design view when needed, and an efficient way to FTP files.
    It seems what Adobe is telling us now is that Dreamweaver is somehow not the right application for developing ColdFusion websites, but oddly enough the correct one for PHP developers. The only reason I can see that Adobe stripped the support for ColdFusion within Dreamweaver is to sell us CF Builder... which is suspiciously missing from any Creative Cloud subscription. Otherwise there was no real reason to pull support from ColdFusion within Dreamweaver.  
    What's more, it is going to take me and others weeks to learn a new program and that's time most of us don't have to spare. It's enough to keep up with the browser changes. I am a one man shop, as are many who used Dreamweaver, and every minute we use learning a new program instead of building websites is money lost. So Adobe is costing us money.
    The reality for a lot of developers is that we can barely pay the Creative Cloud subscription fees every month, much less purchase a whole new program just because Adobe has forced our hand. I just don't understand why Adobe would drop support for ColdFusion within Dreamweaver when the program was working. It wasn't like the program was broken and the ColdFusion tag support was causing a problem with the program.
    All Adobe has done is caused ill will towards their company and probably many developers to go out of business, at the least lose money when the economy is so tight. Thanks Adobe, for nothing.

    You can, relatively easily, put the rug back in place. Since you're a CC Subscriber, you can move back to a previous version of DW through the Creative Cloud Desktop App...
    Open the CC Desktop App
    Click Apps tab
    Scroll down to filters and versions
    Click previous versions
    Download and install an older version of DW
    From there, use the older DWCS6 until you have the time and inclination to learn CF Builder or move to another non-Adobe application. There's no reason to sit and struggle with the new non-CF version of DW CC, blow billable hours and miss deadlines due to training.
    As far as I've seen, there is no plan to bring any CF support back into DW. Adobe's plan is to move people to the perpetual license CF Builder instead.

  • Flex and coldfusion login

    Can someone tell me how I can create a popup login system
    using a coldfusion mx 7 backend. thank you.

    Check credentials then remove pop up? How can I remove the
    Popup login box after successful login? please help me...
    private function handleLoginSucess(eventObj:Event):void {
    //Get the member object from the LoginForm component
    PopUpManager.removePopUp(this)
    LoginForm.mxml
    public function
    resultGetMemberByUserNameAndPassword(event:ResultEvent):void {
    //used for debugging - shows details about result
    //returned by the CFC method
    //Alert.show( ObjectUtil.toString(event.result) );
    /*result returned is a Member object
    cast the result returned to a Member class
    and assign it to our Member object*/
    __member = event.result as Member ;
    //remove text in the login input fields
    username.text="";
    password.text="";
    // Define event object, initialize it, then dispatch it.
    dispatchEvent(new Event("loginSuccess"));
    PopUpManager.removePopUp(this)
    } //end function getMemberByUserNameAndPassword
    private function processLogin():void {
    //change state back to the default so the errorLogin state
    doesn't appear again
    currentState = '';
    //Alert.show("Processing Login...");
    MemberService.getMemberByUserNameAndPassword(username.text,
    password.text);
    }//end function processLogin
    }

  • Basic Flex to Coldfusion cfstoredproc question

    Just starting this ride ...
    <cfstoredproc procedure="gmac.sel_smmry_by_mnth(
    3,'2001')" datasource="orcl"> called the Oracle proc correctly
    with the parms. I then attempted
    <cfcomponent>
    <cffunction name="getMasterQuery"
    output="false"
    access="remote">
    <cfargument name="rptNum" required="true"
    type="Integer">
    <cfargument name="yrInput" required="true"
    type="String">
    returntype="query">
    <cfstoredproc procedure="gmac.sel_smmry_by_mnth"
    datasource="orcl">
    <cfprocresult
    name="qSummary">
    <cfprocparam type="in"
    cfsqltype="CF_SQL_INTEGER"
    value = rptNum>
    <cfprocparam type="in"
    cfsqltype="CF_SQL_VARCHAR"
    value = yrInput>
    </cfstoredproc>
    <cfreturn qSummary>
    </cffunction>
    </cfcomponent>
    with the Flex call
    this.dataManager.getMasterQuery(3,"2001"); I get a CFC error
    saying
    The RPTNUM argument passed to the getMasterQuery function is
    not of type Integer. Not sure why I am getting this error - any
    help much appreciated,
    Mic

    Hi,
    Try changing your "rptNum" argument declaration's 'type'
    attribute as,
    <cfargument name="rptNum" required="true"
    type="numeric">
    and also all your 'cfsqltype="CF_SQL_INTEGER" ' occurences to
    "cf_sql_numeric"..
    HTH

Maybe you are looking for

  • Firefox hangs at random times

    Firefox hangs at random times (mostly when java or flash is launched) mostly after some time killing proces plugin-containter not unfreezing firefox , killing firefox proces is only solution for now I trayed to launch ff in console and use ff until f

  • Ipod touch 1st generation 3.1.3 update

    Where can I find a link to update my ipod touch 1st generation with the 3.1.3 update?

  • What version of Acrobat is supported by Acrobat Distiller server 8

    Hi, We are trying to install a software 'ISIPublisher' as part of pre-requisite we need to install 'Adobe Acrobat 9.4.4 (English and Japanese) or X (English) with local postscript driver support'. So we installed Adobe Acrobat X on the server. During

  • More than one fact tables...

    Hi. I have tried OLAP until now with only one fact table. But now I have more than one. To start i added one more. I am always using SOLVED LEVEL...LOWEST LEVEL. I am always receiving the following error when creating the cube with this measures: "ex

  • Force password reset

    Hello, is it possible to force a user to reset/change their password the next time they log into the site? Thanks in advance. Mike.