Cold Fusion/Flex Application Wizard crippled in Trial Version?

Hi,
I am using the 60 Day trial version of Flex Builder
3/Eclipse.
I wanted to try out the much vaunted Cold Fusion/Flex
Application Wizard, mainly because I could not get my head around
access from Flex to an existing CFC from the documentation alone.
So, I followed the directions:
Click the plus sign (+).
In the Name: text box, enter the name for the page.
Select the page type (master, detail, or master/detail).
Click Edit Master Form or Edit Detail Form, depending on the
type of form you are creating.
The Visual Query Builder starts.
But for me, when I click on 'Edit Master Form' the Visual
Query Builder does not start.
Now I have checked and confirmed that my RDS is working, and
that I can access the database via RDS in the Eclipse RDS browser
window. The RDS concerned is on another PC.
The PC on which Flex Builder is installed is a Vista
Ultimate/32 and the database is MS SQl server 2005 (running on the
other PC). Cold Fusion 8 is installed on both PC's.
So, my question is 'Is the CF/Flex Application wizard
deliberately hobbled/crippled in Flex 3 Trial version, or is there
something wrong with my installation.?
If this works for everyone else, then how do I debug my
installation ?
Thanks,
Bryn Parrott

in addition, I can say that I installed the same flex builder
trial on an XP machine, using its own local RDS, and found that the
wizard worked just fine.
So what is the variable here, why is the wizard not working
on the vista PC ?
Is it Vista ?
Is it the fact that I'm trying to use RDS against a remote
server and not the local one ?

Similar Messages

  • CF/Flex Application Wizard Details Page

    Hi,
    Not sure if this is possible (seems like it should be). I
    have the following data model in SQL Server (2005):
    table name (relevant columns)
    person (first name, last name)
    member (member number)*
    contact (email)*
    location (state)*
    Person is the base object/table and the other three tables
    have foreign keys connecting them to the person table (all have a
    personId column).
    I setup a master page, no problem. I can grab the person's
    first and last name, member number, email and state and display
    them on the member-master page.
    The issue comes when I go to create a member details page. I
    can step through and create the necessary form fields from the
    tables (connecting them all via their common personId column). When
    I go to save the detail's page details, Eclipse (v3.2.x) crashes on
    me. Every time. However, if I only create a form for the details
    page with two tables (say member and person data), I can create the
    details page and use it without any issues.
    To get around this seeming two-table limitation, I edited the
    Adobe/CF generated content to manually add the beans, DAOs,
    gateways and AS files for the other tables. Doing this does create
    the desired details page, however, Flex and CF are REALLY slow to
    grab/return the requested data to the respective form fields (and
    there is not that much to grab in any of these tables).
    I'd like to know if this is just how I have to go about it.
    Does the CF/Flex Application Wizard have a limit on how many tables
    can be joined in a details page?
    I have a project with a much more complex data model and
    would love to generate a quick application for my client to check
    out and I do not know if I've encountered a limit of the
    application or if I am doing something wrong in the Query Builder
    itself?
    Also, any thoughts on why Flex and CF would be so slow to
    return the data when I manually added the other tables to the
    details page form? I'm on an intra-office network, connecting to a
    computer via an ethernet router and the sample DB only has 2000
    records in it...all with simple text and date columns?
    Sorry for the long post and thanks, very much, in advance for
    any thoughts or advice.
    Best,
    Craig

    Never mind, I figured it out.
    I'm Using IIS
    I needed to go look at the properties.
    On the web site tab, the TCP port was set as 80.
    In FlexBuilder Window > Preferences > Cold Fusion >
    RDS Configuration
    Select localhost > The default port number added there was
    8500
    Once I changed that to 80 and clicked on test connection, all
    was hunkey dorry

  • Problems with ColdFusion Extensions and CF/Flex Application Wizard

    I have configured the Eclipse RDS according to the
    instructions in the help documentation. The RDS Fileview and
    Dataview work OK, but I haven’t had any luck with the
    Services Browser: when I try to expand (+) the localhost item, the
    only thing that appears is the message “Unable to get meta
    data for cfc.”
    The Dreamweaver 8 Components panel, which shows exactly the
    same information, works fine.
    Perhaps related to the above: when I create a Flex project
    with the CF/Flex Application Wizard and look at the project
    properties, in the Flex Server section, I get "Since this project
    does not use a server, these setting do not apply". I find this
    odd: a ColdFusion project that doesn’t use a server? Anyway,
    using the wizard, I have not been able to create a simple project
    that works.
    If anyone has had similar problems and has been able to solve
    them, I would appreciate some light on the subject.
    Carlos

    Well I was able to resolve this problem by un-installing and
    re-installing CF.
    I did some further testing (un/re-install again) and it
    appears that this problem occurs when CF is installed in devnet
    version mode and not if in developer mode.
    To check if CF is installed in devnet mode look in the CF
    Administrator under "server settings->settings
    summary->version information" You will see a notation for
    devnet.
    I also did a little poking around and this happens whenever
    you install CF using a certain range license keys. The keys in this
    range are valid keys for installation but they alter some critical
    settings in CF (the flash paper/pdf watermark and apparently some
    RDS stuff) The solution is to install with a non dev-net key or in
    developer mode.

  • Flashbuilder and Cold Fusion  (using application/session variables)

    I would like to know if anybody uses Flashbuilder with Cold Fusion?
    Since Cold Fusion has lots of different scopes of variables (application, session, client, form, url, etc...) how do you manage this in Flex/Flashbuilder?
    Are there forums or groups specifically for using Flex3/Flashbuilder with backend server side technologies such as Cold Fusion?.
    The only server side technology that I have interest in is Cold Fusion.  I've seen basic tutorials and videos using Cold Fusion CFC's and data binding with Flex.  I haven't seen or heard anything using a Cold Fusion application, session, or client variable in Flex.
    Hopefully some of you have some experience on this topic.
    Thanks

    hey popster,
    i too had this question some time ago. my entire app was built on CF with HTML before i started integrating Flex 3 with it. i found that i needed to create cookie variables for all my session variables i was using in order to maintain and remember who the user was in my CFC calls. i also found that after i compiled a flex app, i changed the .html to .cfm (the file that loads the compiled SWF file). by doing this i was able to pass CF session variables into the flex app and you can refer to these anywhere in Flex by using Application.application.parameters.{variable name here} 
    add the CF variable in the FlashVars line to pass it into Flex (see the last line of code). this will create a variable (in my case i'm passing session.employeenumber). then in your flex app you can reference it by using Application.application.parameters.emplid:
    AC_FL_RunContent(
       "src", "Request",
       "width", "100%",
       "height", "87%",
       "align", "middle",
       "id", "Request",
       "quality", "high",
       "bgcolor", "#869ca7",
       "name", "Request",
       "allowScriptAccess","sameDomain",
       "type", "application/x-shockwave-flash",
       "pluginspage", "http://www.adobe.com/go/getflashplayer",
       "wmode","transparent",
       "FlashVars","emplid=<cfoutput>#session.employeenumber#</cfoutput"
    A little trick I learned (does Adobe really expect us to re-engineer how our apps have been working by no longer using sessions for Flex?). Then in your CFCs if you also create cookies for every session variable you can maintain the variables based on user login. HOPE THIS HELPS!
    -Matt

  • UAG 2010 SP4 Cold Fusion Web Application "You Are Not Authorized To Access This Application" error

    Hi folks,
    2010 UAG SP4 publishing a web app that is a Cold Fusion login page.
    The portal trunk is set to not verify URLs and open with that page directly rather than a Portal page, I also have it set to not install client components, basically using UAG as a reverse proxy with some other items. 
    The published app does not require authentication and all users are authorized the path is as follows:
    /index.cfm?FuseAction=Security.Login
    And the hostname is set as www.apps.x.x.edu name removed but is correct. UAG has an http to https redirection and it requires https. 
    The Portal Link has https://xxxx as the address which is correct as it is using an SSL connection to the backend web server and I can reach the page successfully from the UAG server by simply browsing. 
    I previously had the application launching within the portal but the client does not want the extra step so I removed the portal interaction all together and while I had the application launching within the portal, it worked. I'm not certain what changed
    to make it fail, though. 
    In the Web Monitor I receive this error:
    A request on trunk nonuvaportal; Secure=1 failed because of an unknown application. The URL is /index.cfm?FuseAction=Security.Login. The source IP address is 137.54.129.238. The user is .
    Any help or tips or advice would be superb.
    Thanks,
    Justin

    And an update, I did another application publishing on a separate trunk/portal to a similar page
    /index.cfm?FuseAction=Programs.Home
    And I get the same error. Is there a switch/setting/policy I am missing to allow it to run those?

  • Flex 2 Plugin for QTP -  Trial Version?

    We are trying to automate an application that was developed in Flex Builder 2. We downloaded the Flex 2 plug in from Adobe site, but it is asking for serials while trying to install. Is there any way we can get a trial version of Flex 2 Plugin for QTP?
    Thanks,
    Senthil

    Hi Chikkichintu,
            According to my knowledge Flex Builder don't have any plug-in's for QTP 10.0 (ofcourse am not a Tester). You can make use of FLEX MONKEY
    Try this.... This may help you..
    http://www.gorillalogic.com/flexmonkey
    Thanks,
    Pradeep

  • Purchased CS6 applications showing up as "trial version"

    Since a few days all applications of my purchased Creative Suite 6 Master Collection show up as "trial version" (29 days left).  Any clues?

    Thanks for this suggestion – highly appreciated!
    Unfortunately, the solution provided on http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html does not work in my case. This is because the deactivation option under Help > Deactivate is greyed out. Any attempt to (re-)license the product using my CS6 serial number results in the notification that this serial number is 'invalid' (for which there is no reason).
    I am running CS6 under Windows 8 and the problem seems to coincide with the latest update of the Creative Cloud panel that controls the updates tot the CS6 applications.
    Please react, not only if you have other suggestions, but also if you are experiencing the same problem.

  • URL required in Profile Wizard when launching trial version of UPK 11.1

    I downloaded a trial version of UPK 11.1 Developer (client) to analyze for my organization for use in content development. When attempting to launch the trial software for the first time, I'm taken to a Profile Wizard which says "Type the URL of the Library. Your administrator should provide this address for you." What URL is this and to which administrator is it referring?

    The URL will be your server name and the UPK library name. For example http://servername/odscontent. The library odscontent is the UPK default so that should work. The server admin is who they're refering to and that person should provide the server name for you. Hope this helps.

  • Implementing oracle applications 11.5.8 trial version

    Hi ALL
    Pls, could someone help me. I am implementing the version 11.5.8 Trial version of Oracle applications and I am having problems. I 've a 140GB hard drive and 512 ram stand alone PC. The problems are:
    1. I need to install the MKS software I cannot seem to get an evaluation version. The company wants me to pay £349 sterling which nearly $500 licensing fees.
    2. The rapid install keeps asking me for a domain name. I have entered system32/drivers/etc/host and it still has not work.
    Pls, any help regarding above queries will be deeply appreciated.
    Pls, send replies to [email protected]
    Many thx
    Dorothy

    Dorothy,
    1. Earlier MKS Toolkit evaluation is available for 30 days. It looks like that they are no more giving the evaluation software. Recently i have visisted the MKS site, but end up getting no evaluation software from there. TRY out on Google, you may found somewhere. MKS is mandatory to install oracle apps on windows.
    2. if you put an entry like in the host file as
    127.0.0.1 localhost
    127.0.0.1 dorothy.imafidon.com
    when the rapid install asks for the domain name give the name as imafidon.com
    Hope this would solve for you.
    Thanks
    Krishna

  • I payed for creative cloud 49 euro at month but the applications are only in trial version

    I payed for creative cloud 49 euro at month but the applications are only in trial version

    Sign in, activation, or connection errors | CS5.5 and later
    Mylenium

  • ColdFusion / Flex Application Wizard Problem

    I can't get this to work.
    On the last page if I do a new project location I get:
    The project could no be created. Please check the webroot
    folder (it may overlap with an existing project).
    If I try to use an existing project it looks like it does a
    little, but doesn't complete and stays in the last screen of the
    wizard.

    I just found this in an error log.
    !ENTRY org.eclipse.ui 4 0 2007-01-11 16:38:43.93
    !MESSAGE
    com.adobe.flexbuilder.project.IFlexProject.getProjectName()Ljava/lang/String;
    !STACK 0
    java.lang.NoSuchMethodError:
    com.adobe.flexbuilder.project.IFlexProject.getProjectName()Ljava/lang/String;
    at
    com.adobe.coldfusion.wizards.superwizard.SuperWizard.doSaveSettings(Unknown
    Source)
    at
    com.adobe.coldfusion.wizards.superwizard.SuperWizard.performFinish(Unknown
    Source)
    at
    org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:676)
    at
    org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:349)
    at
    org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:556)
    at
    org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:90)
    at
    org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843)
    at
    org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3125)
    at
    org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2758)
    at
    org.eclipse.jface.window.Window.runEventLoop(Window.java:809)
    at org.eclipse.jface.window.Window.open(Window.java:787)
    at
    org.eclipse.ui.actions.NewWizardAction.run(NewWizardAction.java:181)
    at
    org.eclipse.jface.action.Action.runWithEvent(Action.java:996)
    at
    org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:538)
    at
    org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488)
    at
    org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :400)
    at
    org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843)
    at
    org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3125)
    at
    org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2758)
    at
    org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699)
    at
    org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663)
    at
    org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367)
    at
    org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143)
    at
    com.adobe.flexbuilder.standalone.FlexBuilderApplication.run(FlexBuilderApplication.java:1 03)
    at
    org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
    Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
    Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at
    org.eclipse.core.launcher.Main.invokeFramework(Main.java:334)
    at org.eclipse.core.launcher.Main.basicRun(Main.java:278)
    at org.eclipse.core.launcher.Main.run(Main.java:973)
    at org.eclipse.core.launcher.Main.main(Main.java:948)

  • Coldfusion / Flex Application Wizard

    When using this wizard, it assumes that the project is going
    to be created one level under the web root.
    If you have the following path
    webroot/flexprojects/projectone/
    Then you wanted to create a db table maintenance project
    (called 'maint') at the above location, the following happens.
    When the wizard creates the pages and inserts the code for
    the remote object, the source will be missing
    "flexprojects/projectone" and thus there will be an error.
    Does anyone know how to overcome this ?
    Ken

    Same problem here. I've tried it on 2 computers, both running
    Windows XP, and almost immediately after the install, so no other
    projects are present. How do you get past this problem?

  • I can't seem to activate any downloaded application...only trial versions are offered

    Hi All,
    I signed up for the Cloud and downloaded the Applications Manager. After that i installed PS and AE.
    Upon start both programs will tell me that i am in trial mode. Signing in doesn't help.
    I can only continue trial or license. The latter asks me for a serial.
    How can i start using these applications without that trial mode?
    Thanks

    We are investigating the problem.

  • Flex/cold fusion wizard & Visual Query builder has a problem

    has anybody tried the cold fusion / flex application wizard in flex 3?
    to get there follow these menu choices:
    file     new     other     cold fusion wizards     coldfusion / flex application wizard
    I previously installed cf8 and the rds query viewer works fine.
    i simply choose from the following menus:
    window     other views...     Cold Fusion     RDS dataview
    i was initially prompted for the rds password which i entered.
    in the RDS Dataview, I can see the tables, columns, and data for all my existing datasources.
    Unfortunately, when I use the COld Fusion/Flex application wizard,
    I get to the page layout and design screen, add a page with the name artists, choose page type master,  and click the Edit master page button.
    Nothing happens when I click the Edit Master Page button.  I followed the cf/flex tutorial exactly but there is no query builder.
    I dont know if this is related but in the RDS query viewer, the Visual Query BUilder doesn't work.
    I think this may be the problem (the visual query builder has a problem)
    Unfortunately, how do I fix this problem

    already found the answer
    flex has to be run as administrator if using WIndows Vista
    simply shut down flex, right click the startup icon, choose run as administrator, and the visual query builder runs fine.
    Dont know why this occurs because you are always prompted for the rds password.
    anyway, problem solved.
    http://forums.adobe.com/message/228385#228385

  • Flex and the cold fusion wizard

    I am trying to use the cold fusion wizard in Flex 3. What
    must be set up before you can use this? I know what the wizard
    does, but I don't understand what is needed or going on in the
    background in order to get it to work properly. I have a msql table
    and when I open the RDS Dataview and enter my password it opens up.
    Everything seems to work fine until I select the 'Edit Master
    Page' button, it doesn't work.
    sammy

    From what I understand this problem occurs on vista. The
    solution is to uninstall flex builder 3 and reinstall it. When you
    reinstall flex 3 you must right click on the the executable
    (installation) file and select 'run as administrator'. This will
    allow you to get into the query browswer when you select 'Edit
    Master Page' inside of the cold fusion / flex wizard.
    sammy

Maybe you are looking for