How do I reuse the existing stand-alone CFM application codes on J2EE CF9

Hi all,
Our ColdFusion installation runs on a stand-alone ColdFusion server. Now we would like to upgrade to ColdFusion 9 with J2EE configuration. Is there a way to 'reuse' the existing ColdFusion application codes on the ColdFusion J2EE, WITHOUT moving these codes into a location under the J2EE?
To clarify my question:
The existing CFM application structure looks like this:
D:\MyCFApp\folder1\....
Under J2EE, the folder structure looks like this:
D:\MyJ2EEHomeDirectory\Adobe_ColdFusion_9.ear\cfusion.war\...
I would like to keep the CF application codes under D:\MyCFApp\folder1\....
I can bring up the CF9 Admin Console just fine. What I would like to see is if there's a way for CF9 to recognize the folders OUTSIDE the J2EE directory structure.
I tried the adding some Mappings on the CF9 Admin Console but no luck.
Any advice/input is greatly appreciated!

The solution is not in CF Admin mappings, but rather in web server mappings. You need to tell your web server how/where to find the CFML files, and then configure the web server (using the CF web server configuration tool) to have it hand CF pages to CF for processing.
You may find helpful information in 2 of the CF docs, the Installation guide, and the Administration and Configuration guide. If you visit any page of the CF9 docs, you'll see all the manuals listed on the left.
That said, the J2EE configuration is the least well-documented of them all, since things can change from app server to app server. You've not even said which app server you're using: jboss, tomcat, glassfish, resin, weblogic, websphere? And each of those have different support for various web servers. So there's a limit to how much Adobe will document about getting such things working.
Also, relatively few in the CF community use the J2EE deployment--and many who do only "play with it", so may only use the built-in dev web servers that many app servers come with. When it comes to configuring things for production and integration with real web servers, they may not have any experience to share.
But if after reading the above you have more specific questions, fire away and perhaps some here can help.
/charlie

Similar Messages

  • Hi, I live in Panama and I want to know how I can buy online the lightroom stand alone license

    Hi I live in Panama and I want to know how can I buy online the lightroom stand alone license
    thanks

    The only contract-free iPhone 6 that is unlocked is the T-Mobile unit sold directly by Apple.  That is a GSM iPhone.  If the 4G/LTE bands are the same in Panama it should work.  But check with your carrier to see which system they use (CDMA or GSM) and can you just purchase a nano-sim to use in the iPhone 6.

  • How to call a stand alone java application from ADF BC JSP, struts or JSF

    Hi,
    My requirement is that there are utilities or stand alone java applications that I want to call from our existing applications.
    We have two seperate applications one ADF BC Struts application we developed using JDeveloper 10.1.2 and another ADF BC JSF application we developed using JDeveloper 10.1.3.2.
    We want to integrate applications like JTwain and others to help us in scanning. The application will be placed on the same server as our application. How can I do this without loosing all the current session information.
    Please help.
    Thanks and regards,

    There are two possible solutions.
    First, if the tool or application you want to integrate, has an Java-API you can use this api and integrate the tool in your application (using one or more jars you add to the classpath).
    Second, if the tool has no java api, you can call the tool via runtime.exec(...) as a shell process. This way you open a command shell in you application and execute the tool like you do on a normal command shell.
    For tide integration and control I recommend the first approach. The second one is only for those tools which don't offer a java api.
    Timo

  • Has anyone got the QT stand alone installer to work?

    OK, Has anyone got the QT stand alone installer to work that has a problem getting IT6 to work also?
    You can look at my original thread and see what I've been through: http://discussions.apple.com/thread.jspa?threadID=262511&tstart=0
    and now am stuck with an old version of QT and no version of IT! Can't update iPod, can't do crap. How slow can Apple be to fixing whatever bug is in IT6?! It's obvious that alot of people are having trouble and many of us are having the exact same or similar problems. Apparently a call to support is no help.
    Mark

    I didget QT stand alone to install. I had the error -3 message. I unistalled itunes and quicktime. Then I reinstalled using my orginal ipod disc. I then was asked to upgrade to ipod 6 or something. Which I did. Still got the error -3. Then I got the QT stand alone to install by it self and every thing works great now. There was some thing stating if I wanted to "Unistall QT for windows" I said yes. There were some error associated with removing "QT for Windows" during the install but after that it works great. It took something like 20 min. for it to download when it took itunes only 7 min. to download earlier.

  • I get a message that says ff is already running but is not responding ,to open a new window, you must close the existing ff process or restart your system, how do i close the existing ff process?

    I have windows 7 on dell laptop. I am working on a Word Document and want to go to a diff window for some information. I click on the FF icon on my desktop and get a message that says...FF is already running but is not responding. To open a new window, you must close the existing ff process or restart your system..how do you close the existing ff process?
    == This happened ==
    Every time Firefox opened
    == I got my new dell laptop four weeks ago with window 7 installed

    See https://support.mozilla.com/en-US/kb/Firefox+is+already+running+but+is+not+responding

  • When I opened iweb it opened as a file I deleated. I have a published website with godaddy and would like to update. How can I open the existing iWeb app to the site that is already published?

    When I opened iweb it opened as a file I deleated. I have a published website with godaddy and would like to update. How can I open the existing iWeb app to the site that is already published?

    You cannot retrieve the already published site as iWeb CANNOT open it - it has no import facility.
    You need your domain.sites file, which you can find under User/Library/Application Support/iWeb/domain.sites.  You do not need any kind of account for this because it is your domain.sites file that resides on the hard drive of your Mac anyway.  Find this file and you can alter your website.
    Use a spotlight search to try and find it and if this does not work you can download something called Find Any File.  If you really can't find it, then you'll have to start from scratch because iWeb cannot open a site that is already published.

  • How can I reuse the BC4J database connection?

    How can I reuse the BC4J database connection?
    I want to use the application module connection without opening another in a custom code. At this level I can’t access de ADF code, that’s why I can’t get the DBConnection from the application module.
    Now, I have a “data-sources.xml” in my project and the application module is configured to access the database from this xml file.

    I found the solution in other Forum. I worked ok.
    Here the code:
    If the Connections-Navigator connection is DBConnection1, the corresponding datasource is jdbc/DBConnection1DS.
    1. Create a JSP page.
    2. In the web.xml of the JSP add
    <resource-ref>
    <res-ref-name>jdbc/DBConnection1DS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    3. In the JSP page obtain a connection with the datasource.
    InitialContext initialContext = new InitialContext();
    javax.sql.DataSource ds = (javax.sql.DataSource)initialContext.lookup("java:comp/env/jdbc/DBConnection1DS");
    java.sql.Connection conn = ds.getConnection();

  • How to reset the existing data in a company code?

    Hi All,
    Can any one help me how to reset the existing data in a company code? when we want to change one Chart of Accounts to another Chart of Accounts in OB62 scree.
    Thanks
    Chandra

    Hi
    If asset accounting is active also use OABL tcode.
    As mentioned above, please be cautious when using these transactions.
    Do award points if found useful.
    Regards,
    Karthik

  • Where can I get the free stand alone version of flashplayer?

    Where can I get the free stand alone version of flashplayer?

    Try here:
    http://www.adobe.com/support/flashplayer/downloads.html#fp11
    Or
    http://helpx.adobe.com/content/help/en/flash-player/kb/installation-problems-flash-player- windows.html#main-pars_heading_4
    Or
    http://helpx.adobe.com/flash-player/kb/find-version-flash-player.html

  • Stand alone labview application (.exe file) does not run properly

    Hi all,
    I am trying to make a stand alone labview application to run on another computer ( I have never done this before).
    I went through the tools->build application prompts and was able to build an exe file.
    the program is supposed to control a power meter and make power measurements then save them to a text file.
    When I run the exe file, on the same computer I compiled the exe file on, the program generates a text file to save data to but it can not communicate with the power meter.
    There are some sub-VIs and a dll file that are used to communicate with the power meter. Could it be that I am not telling labview to correctly
    include these files when I create an executable?
    What are some common problems that occur when generating stand alone applications that could be causing my issues?
    And does anyone know of any good tutorials on generating stand alone applications in labview other than the NI help files?
    Thanks for your help,
    Solved!
    Go to Solution.

    edCubed wrote:
    Hi Bill, thanks for your suggestions.
    I haven't tried to run this app on another computer yet. I'm just trying to run it on the computer it was developed on.
    The computer I developed it on has all the drivers/resources I need to control the power meter.
    Also, I don't know how to include the VISA runtime with my installer. could you explain how this is done?
    This is the first time IV tried to turn any labview programs into stand alone exe files so I don't anything about how to do it other than what I've seen in youtube videos and help files.
    If you know of any good tutorials that will help me figure this out I would appreciate it.
    Thanks,
    My fault - I didn't read that this was the same computer.  I know the very end of Core 3 studies shows how to build an executable and installer, but even that is very general.  I'm not sure if there exists a tutorial on how to do it.
    As for including the runtimes, when you build an installer, you have to include the runtimes that your executable will need.  It's fairly straightforward.
    Since it won't run on the machine that built it, I'll have to think about it a little bit...
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • How can we do the data migration between Oracle Applications and SAP R/3.

    Hi All,
    How can we do the data migration between Oracle Applications and SAP R/3 system.What are all the possible ways to move bulk data from Oracle Apps to SAP r/3 system.
    Provide any 3rd party tools which supports data migration and also pls rpovide the SAP's own data migration tools with supports the above feature.
    Awaiting for best possible solution.
    Thanks in advance.
    Regards
    Dharmaraju

    the 3rd party tool is ETL , you can use ETL tool and the prepare the load files then you can use LSMW method to upload the data to SAP.

  • How do I open the updates window in "Adobe Application Manager"?

    How do I open the updates window in "Adobe Application Manager"? Or can I or should I....??
    I am a brand new Cloud member.  I heard of the Retina update.  Assuming this was where the updates would logically appear I went to the "Adobe Application Manager" app first.  Without closing the "Adobe Application Manager" I opened Photoshop and went to the help menu and selected "Updates..."; a second window opened in the already open "Adobe Application Manager".
    I selected update all.
    The result is below:
    DW CS6 12.1 Creative Cloud
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Dreamweaver CS6 12.0.1 update to address critical issues
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Photoshop 13.1 for Creative Cloud
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Adobe InDesign CS6 8.0.1 update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Adobe Bridge CS6 5.0.1 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Adobe Illustrator CS6 Update (version 16.2.0)
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    DPS Desktop Tools CS6 2.05.1 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Dynamic Link Media Server CS6 1.0.1 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Photoshop Camera Raw 7.2
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Extension Manager 6.0.4 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Adobe Media Encoder CS6 6.0.2 Update
    There was an error installing this update. Please quit and try again later. Error Code: U44M1I200
    Now, I closed the "Adobe Application Manager" and opened "Photoshop" again and again selected "Updates..." from the help menu.  The "Adobe Application Manager" opened again with just one window this time and the updates happened correctly.
    I was hoping one of the updates would be to the "Adobe Application Manager", I don't think so.
    So, If I were you I wouldn't select "Updates..." from an Adobe app unless the "Adobe Application Manager" is closed until they fix it...
    Current version: Adobe® Application Manager - Version 7.0.0.128 (7.0.0.128) Note the Two windows in the "Adobe Application Manager" in the attached image.

    The updates are currently available by going to Help>Updates within the Application.  Once you invoke the Updater, which is a component of the Adobe Application Manager, it will locate and apply the updates.  It looks like most of your updates have failed to install.  I would recommend you begin by trying to apply the updates that are available on our product update page at http://www.adobe.com/downloads/updates/ and seeing if you face the same difficulty.
    If you continue to experience problems with applying the updates then please review your installation log to determine the cause of the failure.  You can find details on how to locate and interpret the installation log at Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.

  • How can I force the use on a specific application when I am in the Downloads window?

    I have Vista and Firefox 3.6.15
    when I open an email attachment it goes to the intended application but when I click on the downloaded file in Downloads it invokes OpenOffice and then it displays:
    "Move background page assignment
    The loading of password-encrypted Microsoft Powerpoint presentationsis n ot supported"
    How can I force the use on a specific application when I am in the Downloads window?

    Hi Frank!
    you should catch your save-event and after saving put the following line:
    oMatrix.Columns.Item(4).Cells.Item(lstRowIndex + 1).Click(SAPbouiCOM.BoCellClickType.ct_Regular);
    that's it!

  • HT1212 my screen is broken, it comes up with this message when I am trying to connect to itunes to get my pictures off. I cant even see the screen let alone enter a code, please help :(

    my screen is broken, it comes up with this message when I am trying to connect to itunes to get my pictures off. I cant even see the screen let alone enter a code, please help

    Can you tell if the screen is still functional?
    I assume you've entered the password many times, so if it's possible, turn on the iPhone and picture where the unlock slider is, then where the keyboard is.  You might be able to enter the password.  If you can hear keyboard clicks, it should work.
    If not, check out this thread:  http://discussions.apple.com/thread/5044081?start=0&tstart=0
    Cheers.

  • How to include dll into a stand-alone application

    Hi, I wrote a vi to process images from my camera, and I want to build a stand-alone application(exe), so I can share the application with my friends. I just do as wht's in  the Labview help, but when I run the exe file in other PC, it  tells me I haven't nivision.dll etc. My question is how to find out the dll files in my vi and include these files in the stand-alone application?  

    To be honest I am not sure. Its been a while since have used the vision run-time engine. Before I installed it on the target computer. I ddn't include it with my application build.
    Take a look at this http://digital.ni.com/public.nsf/allkb/1A9A18AA574ABEDF86256F780062C240 it might help. Also look at the documentation supplied with the vision deployment license.
    David

Maybe you are looking for

  • AirPlay icon gone after iOS 8 upgrade

    I Upgraded to iOS 8 and the AirPlay icon disappeared. I have already rebooted and shutoff wifi based on suggestions I saw in the forums.  Any other suggestions?

  • Do i have to activate each install through vlm

    This is what I did * I installed NI VLM 2.0 on our license server * i created several network installs (for LV 80, CVI 80) * Checked everything was working fine, and it was * I installed networkinstallversions of LV80 and CVI 80 on workstation A *It

  • Non valuated GR and commitment management

    Hello all, we have the following problem: we use commitment management in PS. Our Purchase orders have setting for non valuated GR. So the costs are only recorded on PS with the Invoice receipt. At month end when posting accruals for goods receipt bu

  • Cannot download photoshop, Illustrator, InDesign via my Cloud account. [was: Help]

    I have an account with Adobe creative cloud.  It won't let me download photoshop, Illustrator, InDesign.  What do I do?

  • Datasocket connectivity issue

    Hi all, I have got two applications, a Server (that is connected to Embedded Device sensoring Temperature and Humidity), and a Client that recieves this information. Now the way which I have these applications working is that BOTH have the ability to