Best location for application files

In our current WebLogic environment (WLS 4.51), we have seperate document roots
for each of te 12 seperate applications being served up in seperate WebLogic instances.
We are migrating to WLS6.1, and I am not sure if I should continue this practice.
All applications will be under the same domain, and some common utility .jar and
.war files may be targeted to several servers in the domain (email servelts, search
servlets, etc.). However, I am no tsure I want all these directories or .jar/.war
files to beunder the same "applications" folder. If I put them under /apps/Java/$app_name/
I can deploy them fine from the console. If I do this, will I lose the auto_deploy
feature? Is there any inherent dangers to doing this? Mostly, I want to keep app1's
files in a different location than app2's.

Please see my inline replies:
Mark wrote:
In our current WebLogic environment (WLS 4.51), we have seperate document roots for each of
te 12 seperate applications being served up in seperate WebLogic instances.
We are migrating to WLS6.1, and I am not sure if I should continue this practice.
All applications will be under the same domain, and some common utility .jar and
war files may be targeted to several servers in the domain (email servelts, search
servlets, etc.). However, I am no tsure I want all these directories or .jar/.war
files to beunder the same "applications" folder. If I put them under /apps/Java/$app_name/
I can deploy them fine from the console. If I do this, will I lose the auto_deploy
feature?Yes. if you are keeping your applications outside of the applications directory they would not
be auto-deployed. It is necessary to keep the applications in the
/config/domain_name/applications directory, if you want to have the auto-deploy feature to
work. Also, we recommend to use auto-deployment only during development and turn off the
feature in the prod environment.
Is there any inherent dangers to doing this? Mostly, I want to keep app1's
files in a different location than app2's.Maybe this strategy helps you:
You can have all the applications in the applications directory in the exploded dir format. In
this case, they will be auto-deployed on the Admin server. Using the console, you can target
them to different servers in the domain (analogous to different WLS 451 server instances).
Now, if you change a particular file (jsp) in the webApp, then you will need to just touch the
REDEPLOY file. The Admin server will check that the timestamp for this file has changed and
redeploy the application to the concerned target servers.
So, by maintaining an exploded directory structure for each webApp in the applications
directory, you will be able to keep the files separate and still achieve redeployment.
More details can be found at:
http://e-docs.bea.com/wls/docs61////adminguide/appman.html#1029683
Also, as everything is a webApp now, each webApp has its own documentRoot. So if you have 12
webApps, each has a different docRoot automatically.
hope this helps.
Mihir

Similar Messages

  • Trying to locate an Application File for InDesign

    Im trying to download the blurb plug in and at the set up stage it asks me to locate the Application File for my Adobe InDesign CS5 in my files but i cant locate it any ideas how i can locate it?

    emmajanerobbo123 wrote:
    Yes i have done a search and I cant locate it from the search, it comes up with an InDesign folder 7.5 but when i go into it it is empty
    InDesign 7.5 is actually CS5.5, which is NOT the sme thing as CS5, so that may be the root of the problem here. When you open InDesign, and hold down the Ctrl key while you click on About InDesign inthe Help menu, waht version is leisted in the upper left corner of the About dialog?

  • LSO 600 Configuration - Central Storage Location for XSLT Files

    Hi,
    We are implementing LSO 600 with enhancement pack 2 and I am haiving trouble figuring out what do do with the configuration steps
    Enter Address of Central Storage Location for XSLT Files
    and
    Enter Address of Central Storage Location for Templates.
    The config notes indicate that these can be a directory or network path with the format
    servername\filename\.
    As I understand it this is is the address of the file on the Portal Server where  XSLT files and templates be stored. The problem that I am hearing from the basis team is (I am qouting an email from them) "who accesses the share? Is it the server, the client PC or both? We’re running in a linux environment so I don’t have any shares the PC can access."
    Does anybody have any input?
    Thanks,
    Andy

    Hi Andy!
    I am happy that the issue is already clear!
    Beeing busy makes life more interesting )
    May I ask for your private mail, because I had some questions regarding your LSO implementation.
    Mine is:
    [email protected]
    Thx in advance and have a nice day!
    best regards,
    Zsolt
    P.S.: since I am a Moderator for SDN it is my job to keep the rules on the Forum therefore I would like to ask you to close this thread because the question - as you stated - is answered.
    Thank you!

  • Best place for configuration files

    I am creating an application that gets installed into the the [ProgramFiles] directory. The application writes to a config file every time it closes and the user also has the ability to write a config file at any point in time. After the application is installed no configuration files can be written. I am getting the following error:  "LabVIEW:  File permission error. You do not have the correct permissions for the file."
    1. What do I need to do to be able to write config files to the directory where the application is installed?
    2. If I wanted to save the files in some users folder, how can I keep track of this path from the development environment, to the exe and then across different OS's?
    3. Is there a general convention/location for config files that the application needs to write to?
    I know during the build installer phase we can put data in all these different Microsoft folders. But is there a way to get the paths to these folders in my application? (see image below)
    I am running Windows 7 and LabVIEW 8.5.
    Thanks for your help
    -Anthony M.

    Win32 consists of several DLLs. It is not .Net but the original interface in Windows to access operation system functions. It is available on every Windows PC because it implements Windows. The LV VI "File Dialog" is just a wrapper for the Win32 function FileOpenEx Which every program uses to select a file.
    Storing user settings in the registry is outdatet. Modern Visual Studio programs store setting in files with .config extention.
    Settings may be stored in various places depending of their need.
    Settings which apply only to this special PC are stored where the application is installed. These settings are set during setup and won't change afterwards whithout any changes to the PC.
    Settings which are common to different Windows users are stored in the All users\Appdata folder. The path to this folder is in the registry under HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Common AppData. Typical data stored there are test setups or serial numbers of external devices.
    Data files which are common to different Windows users are stored in the All users\Data folder. The path to this folder is in the registry under HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Common Documents. Typical data may be test result protocolls.
    Settings which are unique to different Windows users are stored in the<username> \Appdata folder. The path to this folder is in the registry under HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\AppData. Typical data may be personal number, department number.
    Data files which are unique to different Windows users are stored in the <username>\Data folder. The path to this folder is in the registry under HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders\Personal.
    It is normal that the user has full acces to the last for paths and read access to the first path.
    Use the Example Finder to find the registry VI examples.
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

  • Best location for Project.fcp

    Just getting started and testing. I am using a FW external drive for my media (the Scratch drive assigned via System Prefs). All is going well (so far).
    Is there a best location for the Project.fcp file? I think that I read that it best reside on my startup drive.
    But, I also read (I think) that the media files and project files should be kept in the same folder (I don't understand why). I would suspect that the Project.fcp file can be anywhere, just like any other document file. Correct?
    Thanks,
    Sonny

    I asked the same question over three years ago!
    Here was Tom's reply to me that has an added bit of info that might be useful:-
    "+Putting the project file on the system drive is generally considered good practice. I'm not sure how much actual performance improvement you'll see, but the media might be less likely to have dropped frames. It also means, if your autosave vault is on the media drive, that you have project file backups on a second hardware device in case one fails."+

  • What's the save location for iweb files?

    what's the save location for iweb files?

    Depends which files you mean.
    The default location for the Domain.sites2 is - Home Folder/Library/Application Support/iWeb
    http://www.iwebformusicians.com/iWeb/iWeb-Tips.html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • When i double click itunes it doesn't open it just comes up with an error saying " The itunes library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder". How can i fix this?

    When i double click itunes it doesn't open it just comes up with an error saying " The itunes library.itl file cannot be found or created. The default location for this file is in the 'itunes' folder in the 'music' folder. How can i fix this problem?

    Anyone can help to advice how to solve this issue ?

  • How can i stop an error message that comes up when i am using word? the error message is "word is unable to save the Autorecover file in the location specified. Make sure that you have specified a valid location for Autoreover files in Preferences,-

    how can i stop an error message that comes up when i am using word? the error message is "word is unable to save the Autorecover file in the location specified. Make sure that you have specified a valid location for Autoreover files in Preferences,…"

    It sounds like if you open Preferences in Word there will be a place where you can specify where to store autorecover files. Right now it sounds like it's pointing to somewhere that doesn't exist.

  • I cannot update or install updates on itunes. It says that the location for that file does not exist. I cant even uninstall itunes as the same error message comes up.

    I cannot update or install updates on itunes. It says that the location for that file does not exist. I cant even uninstall itunes as the same error message comes up.

    Hi vindog60,
    Thank you for using Apple Support Communities.
    To troubleshoot this issue where you get an installation error with iTunes on your Windows PC, please follow the steps in the article linked to below.
    Issues installing iTunes for Windows - Apple Support
    Cheers,
    Alex H.

  • I just upgraded my mac book to 10.6.8 and downloaded the new version of itunes. When I try to open it and error message appears saying, "The iTunes Library file cannot be found or created. The default location for this file is in the "iTunes" folder.

    I just upgraded my mac book to 10.6.8 and downloaded the new version of itunes. When I try to open it and error message appears saying, "The iTunes Library file cannot be found or created. The default location for this file is in the "iTunes" folder in the "Music" folder."
    I have tried a few things but iTunes closes right after i click okay. Anyone know anything?

    Look in your Home > Music folder.  There should be an iTunes folder there and it should have a number of files and folders including one called library.itl  You want to guide iTunes to that file.  If you don't see that file or folder then in your next post you will have to be very specific as to what you do see or how you have your iTunes set up because that's where it should be according to default settings.

  • I need help every time my iTunes library updates i get this error messege: The iTunes.itl file cannot be found or created. The default location for this file is in the "iTunes" folder in the "Music" folder. but the file should be there.

    Every time I have to upgrade iTunes it gives me this messege:'The default location for this file is in the "iTunes" folder in the "Music" folder.' the file should be there but I don't understand why it does this every time Apple upgrades the Itunes library. Its on the computer somewhere but it only affects this login on my computer (meaning on this Windows Account). Why does my iTunes do this? Then I have to spend hours placing all my libraries back together and all my music back into the library. Which usually takes me a few days to sort all out. What is wrong with my iTunes? The iTunes folder is a folder in my Music folder where I store the iTunes music/files/libraries at on my computer so I can have all of the iTunes files in one place on my computer.

    I have a Windows 7 operating system my computer runs from.

  • Itunes library.itl file cannot be found or created. The default location for this file is in the "iTunes" folder in the "Music" folder

    itunes library.itl file cannot be found or created. The default location for this file is in the "iTunes" folder in the "Music" folder, I keep getting this message everytime I try to install Itunes after having to remove windows 8.1 and go back to windows 8.  I have uninstalled and reinstalled and it keeps telling me the same thing. What do I do?

    Hi Renee31,
    If you are having issues with the library.itl file in iTunes, you may find the following articles helpful:
    iTunes: What are the iTunes library files?
    http://support.apple.com/kb/ht1660
    Apple Support: Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    Regards,
    - Brenden

  • TS1717 iTunes will not open.  I get a message that says, "The iTunes Library.itl file cannot be found or created.  The default location for this file is in the "iTunes" folder in the music folder."  How can I fixt this?

    iTunes will not open.  I get a message that says, "The iTunes Library.itl file cannot be found or created.  The default location for this file is in the "iTunes" folder in the music folder".  How can I fix this?

    Hi pgarard1,
    If you are having issues with launching iTunes after an update, you may want to take a look at the troubleshooting in the following article:
    iTunes for Windows: Doesn't open after upgrading in Windows Vista or Windows 7
    http://support.apple.com/kb/TS2363
    Regards,
    - Brenden

  • The iTunes Library.itl file cannot be found or created. The default location for this file is in the "i Tunes" folder in the "Music" folder. PLEASE HELP!!!

    I have been trying for over 2 weeks now trying to get my iTunes to open up so I can use my iTunes but I have not had any luck since I up graded to the new itunes. I have tried uninstalling (all apple programs) and reinstalling and nothing seems to work. Everytime I try to open my iTunes I receive the following message - The iTunes Library.itl file cannot be found or created. The default location for this file is in the "i Tunes" folder in the "Music" folder. Please help as I'm getting very frustrated and want to throw every apple device in the trash!!!
    FYI: I thought about getting the iPhone but since I"m not having very good luck getting assistance with my iPod/iTunes I think I will rethink my decision.

    Found the solution.

  • I can't open my Itunes keep receiving error message- The iTunes Library.itl file cannot be found or created. The default location for this file is in the "i Tunes" folder in the "Music" folder

    I can't open my Itunes keep receiving error message- The iTunes Library.itl file  cannot be found or created. The default location for this file is in the "i Tunes" folder in the "Music" folder. I have even tried removing and reinstalling iTunes and it still does work because I continue to receive this error message. Please Help!

    Anyone can help to advice how to solve this issue ?

Maybe you are looking for

  • There is already a transaction for the systems of this product version(MOPZ)

    Hello All, I am trying to configure maintenance optimizer in Solution Manager 7.0 on Windows 2003 server and SQL 2005 server. I am configuring this for SAP CRM 2007 server. Created the server, database and system in SMSY Created Logical Component in

  • Error 32812

    Dear Sir,       I am using Fieldpoint 2010. When I tried to download ( or deploy) the file I am getting the error 32812 fieldpoint specified tag name not found. I followed the same steps given in the site. I tried many ways but still getting the same

  • Not able to create item under initiative in SAP PPM thru SAP EP 7.3

    Hello, We have deployed SAP BP for PPM on SAP EP for PPM. We have created successfully created initiative under the bucket. Now we are trying to add item under the initiative but the SAP standard webdynpro ABAP application gives error. Below are the

  • Why can't I save documents?

    For the past 2 days, everytime I attempt to save a document, I get an error message "the file 'untitled' can't be opened becuase it has been deleted". I have tried to use save, and saveas, and change the document name and I still can't save any docum

  • JOIN/CASE

    Hello, Here I'm doing two JOIN queries. I need help with inserting 2nd query into 1st. in the final result I would like to see all the transaction that are 'PP' w customer_name and the rest of the transactions that are not 'PP' i would like to see th