Flex 2.0 Final - Not able to Find WEB-INF/Flex Folder

Hello,
I am having trouble with the Final Flex 2.0 Finding the
WEB-INF/Flex folder in my root directory of C:\CFusionMX7\wwwroot\
It will not let me validate a Location. Everthing is
installed correctly and I am able to run and connect with previous
projects created with Beta 2 & 3. I am not able to create a new
project for some reason. FDS works fine just not Coldfusion Flash
Remoting.
Do I need to reinstall Coldfusion ??? or can I change a
Config File Somewhere???
Any one run into this problem?
Rich

I received this problem a while ago, when learning flex i
didnt think it was a back idea to copy the web-inf folder to where
ever my web root was going to be... but the one downside is that if
any updates come out, i think in order to make sure all stays up to
date, you should probably re copy the web-inf folder. it's manual
and could become tedious if you copy this folder into any number of
places.... and then you dont remember where you put it.... i would
think there is a way to map the web-inf folder some how to your
project... but i dont know how? anybody?

Similar Messages

  • Not able to find - Web Application Framework tab in IDE

    Hi
    I just downloaded the sun studio enterprise yesterday, I was trying to follow the tutorial for (http://developers.sun.com/prodtech/javatools/jsenterprise/learning/tutorials/jse7/webapp.html
    Developing a Web Application)
    The tutorial says
    1. Select the Web Application Framework tab on the window at the left hand side of the IDE.
    I am not able to find this tab on my IDE. Can anyone tell me how where to find/activate this tab.
    I searched in all the Sub Menus I could not find it. Any help is appreciated.
    Thanks,
    Sai

    Hi
    Thanks for figuring that out, I searched for that tab for 2 hrs.
    Where can I find the tutorial for creating a simple application in JSE8? I looked at
    http://developers.sun.com/prodtech/javatools/jsenterprise/learning/tutorials/index.html#jse8
    but everything looks like UML related.
    Thanks
    Jag

  • Not able to find final Item in configurator R 12

    Hi Guru's
    I have created Model class item as CAR, Option Class items as : Tyre and Brakes.
    Then finished Items as Rubber Tyres, Mac Tyres and Normal Brakes, Disc Brakes respectively for Tyres, Brakes.
    In the configurator screen not able to find Finished items (Rubber Tyres, Mac Tyres ,Normal Brakes, Disc Brakes)
    I am going through om and then click on configure for assembling.
    Please advice on this.
    Regards
    Sunny

    Hi Sandeep,
    Thanks for the information.
    Yes, added the Disc Brake and Normal Brake to the Brakes-OC BOM.
    In the Brakes-OC BOM, ensure that these items are listed as optional-
    Yes, this is done checked optional under om tab.
    Go to the master org ; open up the indented CAR BOM. Make sure the whole BOM shows up-Everything comes perfectly here.
    However still have the same problem gives the below error message in configurator screen.(Note this is in Vision instance R12)
    [Session Valid] The configuration currently is valid.
    [Session Incomplete]           Tyres is unsatisfied.
    [Session Incomplete]           Brakes is unsatisfied.
    Regards
    Sunny

  • FindClass() not able to find the class in the same path

    Hi,
    I have a c prototype which calls a java function which push a message in JMS. i'm using jdk1.6. i have set JavaVMInitArgs vm_args.version = JNI_VERSION_1_6 when i compile the c code as gcc -g -lgcj -I $JAVA_HOME/include -I $JAVA_HOME/include/linux CallJMS.c the JNI_CreateJavaVM(&jvm, (void*)&env, &vm_args)* returns JNI_ERR. After changing version to 1.4 JavaVMInitArgs vm_args.version = JNI_VERSION_1_4 finally it gives me an executable which calls the java function (how ever the required functionality is not got)
    To get the required functionality i had to use jdk1.6 so i changed the version property to JNI_VERSION_1_6 and the compiling command as gcc -g CallJMS.c -I $JAVA_HOME/include -I $JAVA_HOME/include/linux -L $JAVA_HOME/jre/lib/i386/server -ljvm .This gave me an executable, but when i execute it is not able to find the java class file. I have kept both the java and c file in the same path and also set the CLASSPATH. Please help.

    Hi jschell,
    I got solution to this problem. As you said it is due to wrong CLASSPATH set .
    Before:
    JavaVMInitArgs vm_args;
    JavaVMOption options[3];
    options[0].optionString = "-Djava.class.path=.:/home/programs/JbossMetro/jboss-5.1.0.GA/server/default/deploy/JMSforCNew.war/WEB-INF/classes";
    options[1].optionString="-Djava.library.path=.:/home/program/jdk1.6.0_23/jre/lib/i386/server";
    options[2].optionString="-verbose:jni";
    vm_args.version = JNI_VERSION_1_6; //JDK version. This indicates version 1.6
    vm_args.nOptions = 3;
    vm_args.options = options;
    vm_args.ignoreUnrecognized = 0;
    int ret = JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args);
    if(ret < 0)
    printf("\nUnable to Launch JVM\n");
    else
    printf("\nLaunched JVM\n");
    I was setting the CLASSPATH to the Path where my java class files were kept. When the JVM instance is created only this path (where my java class is residing) is identified and the JMS and other paths which was already set in the CLASSPATH environment variable is lost. Thus when i call the java class from the c program it is not able to find the dependent class files and it was aborting.
    After:
    Before setting the path where my class files are residing to CLASSPATH, get the path's in the CLASSPATH to a variable, append the path where my class files are kept to this variable and then set the CLASSPATH . Similarly do for the LD_LIBRARY_PATH. This works fine.
    char cpathBuff[100000];
    char ldpathBuff[4096];
    JNIEnv *env;
    JavaVMInitArgs vm_args;
    JavaVMOption options[3];
    cpath = (char*) getenv("CLASSPATH");
    sprintf(cpathBuff,"%s%s:%s","-Djava.class.path=",cpath,"/home/programs/JbossMetro/jboss-5.1.0.GA/server/default/deploy/JMSforCNew.war/WEB-INF/classes");
    options[0].optionString = cpathBuff;
    ldpath = (char *)getenv("LD_LIBRARY_PATH");
    sprintf(ldpathBuff,"%s%s:%s","-Djava.library.path=",ldpath,"/home/program/jdk1.6.0_23/jre/lib/i386/server");
    options[1].optionString = ldpathBuff;
    vm_args.version = JNI_VERSION_1_6; //JDK version. This indicates version 1.6
    vm_args.nOptions = 2;
    vm_args.options = options;
    vm_args.ignoreUnrecognized = 0;
    int ret = JNI_CreateJavaVM(&jvm, (void**)&env, &vm_args);
    if(ret < 0)
    printf("\nUnable to Launch JVM\n");
    else
    printf("\nLaunched JVM\n");
    Thanks for your support Peter and JSchell.
    Edited by: 844094 on Mar 15, 2011 2:37 AM

  • Not able to find data in Cube

    Hi All,
    Good Evening!
    I am loading data from ODS to Cube. I am not able to find values for 0ORDER_CURR in the cube and also in the report which I built on the Cube. But they are present in the ODS.
    Please help me to find the problem. Thanks in Advance...
    With regards
    Mahi

    Hi Mahi..
    Try to check is there mapping in ur Update rules for this 0ORDER_CURR.. if not then maintain the same..
    Also let us know whether u have used this object at the cube level or not??? if not then try to maintain and then maintain the mapping as well from the DSO.....
    this will solve the issue....
    thanks..
    Assign points if this helps...

  • Not able to find driver page for HP 15-r007tx

    Not able to find driver page for HP 15-r007tx.
    The web site is able to detect my product, but when clicked on link Software & Driver Downloads, it says page not found.
    Please help. I am looking drivers for windows 7 ultimate.

    Hi Anoop22Sharma
    Install:
    Intel Chipset Installation
    Intel Video Driver 
    NVIDIA High-Definition (HD) Graphics Driver
    Synaptics Mouse Driver
    Realtek Ethernet Controller Drivers  
    MediaTek(Ralink)802.11 b/g/n Wireless LAN (WLAN) Adapter
    Ralink Bluetooth Software Driver
    Intel USB 3.0 Driver for Intel 8 and U/Y Series
    Realtek High-Definition (HD) Audio Driver
    Realtek PCIe Media Card Reader Driver
    HP 3D DriveGuard

  • Not able to find values in LOV of field "Help Desk" of Global contract

    Not able to find values in LOV of field "Help Desk" of Global contract defaults.
    This value should be coming from resource setup.
    Resource is already created.

    Issue resolved:
    The resource should ahve valid Email id in HR People setup

  • I am not able to find Template Builder in MS Word 2003

    Hi All,
    we have installed MS Word 2003 Ver in our work station for BI Publihser Reports, but i am not able to find the template builder in the Menu bar.
    i was try to add in tool -> Template and add-Ins also, but still i dint get the template builder in top menu's.
    Any one can help me on this.
    Thanks in advance.
    Regards,
    Loganthan

    Hi,
    Did you installed BI Publisher first? usually we installed MS Word first then BI Publisher then it appears in the top bar.
    HTH,
    Vikas

  • If I do not select F11 ( full screen ) a big part of the screen "falls" of the right hand side of my monitor and is not readable, I am not able to find the neccesary adjustments.

    Question
    If I do not select F11 ( full screen ) a big part of the screen "falls" of the right hand side of my monitor and is not readable, I am not able to find the neccesary adjustments.
    Screen 2/3 blanco on the left side
    With F11 all OK.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Not able to find Source System in BI 7......

    Hi All,
    I am working on BI 7
    I am exctracting the data from Flat File Source System like SMID(Characterstic) and PQTY,SALE,PROFIT as a KeyFigures
    I have taken SMID as Characterstic and PQTY,SALE,PROFIT as a KeyFigures..
    I hav created InfoObject Catalog for Characterstic and Keyfigures...
    I Created a Application Componenet and Assigned Objects to InfoSource also...
    But i struckked while assigning the Source System to the InfoSource...
    I am not able to find how to assign the Source System like we do in 3.0b,3.1c & 3.5..
    Can anybody tell me the Step by Step Navigation procedure for to assign Source System to the InfoSource and Other Things also....
    Regards,
    Kiran Telkar

    Hi,
    These are the settings needed for the broadcaster:
    http://help.sap.com/saphelp_nw70/helpdata/en/55/1b9940ccd42a54e10000000a1550b0/frameset.htm
    Eddy
    PS. Reward useful answers and earn points yourself

  • HT203167 i am not able to find or transfer one playlist to my phone.  it was there for several months and no longer shows up.  when i look at the songs, there are two songs for each of the playlist songs, but the one will not play, either on the computer

    i am not able to find a playlist on my phone.  i had it on the phone for months and now it is not there.  i have tried to sny repeatedly and it does not show up.  Help, how do I recover or get my favorite playlist back onto my phone

    Hello,
    While your BB may not, while in your possession, have been part of a BES environment, it nevertheless likely has an IT policy in place as this is one of the key symptoms of that fact. If it ever was part of BES, then there are specific steps that must be taken to remove the IT Policy...just removing it from BES does not remove the policy. The process to remove it is totally destructive, so be sure you back up first. Also, when you restore, DO NOT do a full restore...rather, do a selective restore of only those things you need...if you do a full restore, you will simply put that IT Policy back onto your BB and be right back where you started.
    OK, so here is the procedure:
    KB14202How to remove an IT policy from a BlackBerry smartphone
    I always recommend Method 3 for PC and Method 4 for MAC.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Is it possible for deleting all the apps from the appstore which are showing up in the apps not on my phone section. Before I was able to delete them from itunes but now I am not able to find that option.

    Is it possible for deleting all the apps from the appstore which are showing up in the apps not on my phone section. Before I was able to delete them from itunes but now I am not able to find that option.

    You can hide them via your computer's iTunes : iTunes Store: Hiding and unhiding purchases - Apple Support
    The 'x' might not show on their top left corner (it might be invisible), but clicking where it should be should hide the app.

  • Not able to find 'Sales Summary' of a BP in CIC0 transaction

    Hi,
    We are using CRM 3.0 vesion and not able to find 'Sales Summary' of a BP in CIC0 transaction.
    Appriciate any suggests on this.
    Regards,
    Fedor.

    Hi ,
    is it open so item or you already done the DO and Billing? , it wont allow to change if you have any sub.documents for that SO.
    regards
    Prabhu

  • Purchasing orgn not able to find in the dropdown list.

    Hi 
    Can anyone guide me I am not able find the new Purchasing groups in dropdown list of my basic date in while creation of shopping cart.
    I aslo created new company code and new Purchaisng Org , I am able to get the new company code and new plant in the drop down list but not able to find the Pur groups.
    Can any one help me on this, Because I have assigned the Org unit of Company code and Pur org also in the responsibility tab of this Pur grp.
    but still the problem persists.
    please suggest.
    Regards
    srujan.k

    Hi,
    Please check the user attributes in PPOSA_BBP.here you can see the user id is tagged to one purchase group.
    You can assign the user to one Purchase group,that's a reason you are not able to see the drop down list for purchase group while creating SC.
    If you want another purchase group, please change the user attributes.
    I hope it will help.
    Regards,
    Manish

  • Not able to find AIA2.5 installable for Windows 64 bit

    Hi Friends,
    I am not able to find the installable of AIA 2.5 for windows platform (64 bit) at oracle e-delivery.
    I have installed SOA 10..1.3.5.0 with OC4J, now I need to install AIA 2.5 and then Customer MDM (UCM) PIP over it as a project requirement.
    Kindly guide me from where I may download AIA 2.5 and Customer MDM PIP installable.
    Thanks
    Shalindra Singh

    Thanks hsawwan,
    It will not give problem ?
    Oracle should put some notes on it.
    Reg
    Chirag PatelFor 11i on Solaris, the applications patches are always 32-bit. Only select 64-bit Solaris for database patches if you converted your database to 64-bit.

Maybe you are looking for

  • How to use iPad 1st gen in Paris

    Am going for a week in October.  Purchased the converter today but my question is the internet connection. Do I need to purchase anything additional or can I just get there and start surfing? Apparently the rented apartment I will stay in has high sp

  • HELP! complete newbie ready to throw my shuffle and mac out the window!

    I just got a mac mini for Christmas and an ipod shuffle. When I plug it into a usb port on the mini, it doesn't show up in Finder or in Itunes. Also the battery light is flashing yellow. Can anyone give me any clue what could be wrong. Is this just a

  • Acrobat 7.1.4 are actions or keyboard shortcuts possible?

    Acrobat 7.0  (7.1.4) Standard. Is it possible to change/assign keyboard shortcuts in Acrobat 7 (like one might in photoshop or illustrator)? Or... Is there any action/macro recording options? I want to save myself a little effort.  I typically add a

  • Application module creation for (web) services

    Hello, We are running into stack overflows from ADF BC (BC4J) with oracle.jbo.client.Configuration.createRootApplicationModule. We want to make sure we're doing this right. If you have data bound services (e.g. product lookup) and you don't want to p

  • Second life for PowerMac G5

    Apologies for my bad English as I'm not a native speaker ... Just bought a second hand iMac i7 27"(late 2009). Untill now I still use my trusted PowerMac G5 1.8 (2003) that works without any flaws. Therefore I'd like to give my buddy a second life as