How to force Jdeveloper to include additional libraries with generated war?

Hi
thank you for reading my post
how i can force the Jdeveloper to include some libraies that i add to application
in the generated war file ?
I create a library named mysql and mysql jar file in inside it , i add the library to application but in the generated war file it is not inside the web-in/lib folder
thanks

Check in Tools | Project Properties | Libraries
Assume you have added your Library here. Highlight your library and click Edit to review this entry. Make sure the 'Deployed by Default' checkbox is checked?
Also, check your deployment profile settings:
File Groups | WEB-INF/lib | Contributors -
make sure your library is selected for deployment (should be if you do the step above.)
Message was edited by:
javaX

Similar Messages

  • How to force Jdeveloper to preserve existing sources directory structure?

    Hi all,
    I have JDeveloper 9.0.3.4 which I have to use.
    I tried to import to project from existing sources and I tried to keep existing sources
    directory structure by selection option "Scan source paths to determine project contents" which should (according to documentation) preserve existing directory structure and show it in the Navigator.
    But instead I get always (Jdev default?) directory structure:
    Sources
    HTML Sources
    Miscelaneous Files
    I changed default settings for Input path in project settings and for default project settings but still I get this Jdev structure.
    Is there a way to force JDeveloper to preserve the directory structure of sources it imports from?
    Many thanks,
    Mile

    I'd like to be able to specify the default project directory structure in 10g as well. For example I would like to have under the project root:
    build.xml
    src\
    generatedsrc\
    config\
    resources\
    build\
    deploy\
    Generating an ant build.xml using the wizard should also take into account the directory structure being used by the JDeveloper project build. I don't see why I should have to modify the build.xml file at all.

  • How to force a new password in portal with LDAP user? external users

    With an external portal (used by agents that do not work for you or reside in your office), company policy is for password to be changed every qtr.
    If the users are creating as LDAP users how to force them to change their password when required?
    Is this a custom application that needs to be written so when they log into the portal if the qtr has expired the portal ask them to enter a new password that becomes valid for the next qtr.
    Versus internally deleting and emailing all the users a new password?

    Hi Glenn,
    We are getting one problem when we are creating user in LDAP and login with that user in  Portal that time we are getting Password change screen , but when we create a user in LDAP and change the password of that user in LDAP then when the user tries to  Login to portal that time we are not able to see the password change screen.
    But again if we change the password of that user through Portal we are able to see change password screen.
    can you help on this how we can force the user to change password when we are changing password in LDAP or in SAP System.
    Regards
    Trilochan

  • What are developers​' opinions on how best to handle upgrading large code libraries with multiple apps to new a labview version?

    I have a large set of code that I've painstakingly migrated from one labview version to another over the years.  I have lots of deployed applications that I need to continue to support.  From experience and interaction with other developers, I don't think I can continue to migrate every application to a new labview version when I upgrade going forward.  Every application seems to break in one way or another, the builds don't work right and need to be re-done, and its too much time to get all my applications working and tested again.  That opinion is solidified by NI's policies that make it impossible to install old toolkit versions on new labview versions, for example.  Compatibility is often being sacrificed so NI can develop labview in the direction they choose.  So I have to take the position that whatever version I write an application in will probably need to be maintained in that labview version throughout it's life.
    In light of this, how are other developers managing older applicatiosn written in older versions of labview.  Right now I have a virtual PC on my system with 7.1, 8.0, 8.2, and 8.5 all running on different virtual PC's so I can keep each installation separate.  I strongly recommend this approach.  But keeping my large libraries of code separate is tough.  They are many GB, they all link to each other, and I always get worried even when I separate them in different directories that somehow labview will search in the wrong place and find the wrong version of a sub-vi.  Are other people also trying to maintain separate copies of all their code in different labview versions?  How are other people managing this problem?
    -Devin
    I got 99 problems but 8.6 ain't one.
    Solved!
    Go to Solution.

    Hi,
    The following directory hierarchy, coupled with a "hierarchical" VI naming strategy, have been effective (for me) at preventing "cross-linking" across projects and LV versions. The storage hierarchy was designed for use within an SCC environment, but works fine independently. Hierarchical-naming insures unique names for application-specific files. Use of Project Libraries (in LabVIEW 8.x) addresses the problem of having different VIs with the same name, still, it gives me warm-fuzzies to have app-specific files named uniquely, and I can't imagine not using Hierarchical-naming anymore - it's described at-length in section 2.1 of attached .doc..
    Note: It's been my experience that companies identify resources as supporting specific "Programs", where a Program is related to a product or "family" of products, so, under <Programs> (below) each "Program" subdirectory encapsulates product-specific (or product-family-specific) applications. Also, assuming no SCC tool is being employed the <Production> directory (below) exists as a repository for distributables.  All distributables required to reproduce a test-station should be located under <Production>.
    <Software_Root>
    <Development>
    | <Common>
    | | <LabVIEW_61>
    | | | <Drivers>
    | | | | <DMM>
    | | | | <OS>
    | | | | <PS>
    | | | <Utilities>
    | | |   <File>
    | | |   <Error>
    | | |   <String>
    | | <LabVIEW_711>
    | | <LabVIEW_82>
    | | <LabVIEW_851>
    <Programs>
    * Program-specific applications that (probably) have distributables
    | <Program_#1>
    | | <Application_#1>
    | |   <Docs>
    | |   <Source>
    *       Individual, application-specific, VIs go here
    | | <Application_#2>
    | | <Application_#3>
    | <Program_2>
    | | <Program_3>
    | <Tools>
    *   Tools are NOT "program"-specific, and, may have distributables
    |   <SomeTool>
    |   <SomeOtherTool>
    <Production>
    | <COTS&Freeware>
    | <Programs>
    | | <Program_1>
    | | | <Application_#1>
    | | | | <Application_#1_Rev#1>
    | | | |   Application_#1.bld>
    | | | |   <EXE>
    | | | |   <Installer>
    | | | |   <Source>
    | | | |     Application_#1.llb>
    *           Distributable is created from LLB "snapshot", not directly from development tree
    | | | <Application_#2>
    | | | | <Application_#2_Rev#1>
    | | | |    Application_#2.lvproj>
    | | | |   <EXE>
    | | | |   <Installer>
    | | | |   <Source>
    | | | |     Application_#2.llb>
    | <Tools>
    "Inside every large program is a small program struggling to get out." (attributed to Tony Hoare)
    Attachments:
    StyleGuide.doc ‏941 KB

  • How to manage 2 iPods and 2 libraries with same laptop?

    I have one Windows laptop. I have an iPod and an iTunes library. I store my iTunes tunes/movies/podcasts on an exernal hard drive because there isn't enough space on my laptop. I want to purchase a second iPod for my son and manage his iTunes library in the same way - same laptop, same external hard drive.
    I created a separate library and quickly got confused. Is it possible to have two separate libraries for two separate iPods but use the same laptop and external hard drive? IF possible, how should I do this?

    Click here for options.
    (34261)

  • How to force all pdf's to open with Acrobat

    Hi, hope this isnt too silly a question, but how do I make acrobat the default for opening all pdf's as opposed to preview, thanks in advance

    It is not difficult. Select a PDF file and then do a "get info" on it. Select, but don't open the file, go to the file menu and selecting "get info", or by selecting the PDF file and using the keyboard hitting the command -I keys. When it opens look for the disclosure triangle in the resulting box that has the title "open with". Select Acrobat as the application to use to open the file and then where there is a button to "change all apps of this type to open with..." select it and that should take care of it.

  • How to build android apps using sapui5 libraries with intelliJ IDE..?I want complete steps

    Thanks in advance
    Thanks & Regards
    Raghu

    Mike the Moderator here.
    There are nice and polite ways of correcting people's approach to SCN and there are comments that lead to flame wars.  Two such comments have been deleted from this thread.  Please be diplomatic in correcting a newbie's approach.  We want newbies and experienced pros to all gain value from SCN.
    If you object to a post, you can use the Alert Moderator button and report as General with a comment regarding overly broad questions.
    If you Alert Moderator with Failed to Search, but don't provide the search criteria, I will reject the Alert Moderator as I don't have time to perform such a search and won't reject on the basis of someone's undocumented opinion no matter how experienced the reporter.
    And always remember the Irish definition of diplomacy:
    The ability to tell a man to go to hell, such that they look forward to the trip.
    Have fun, learn, play together nicely.  Is that too much to ask?
    Thanks, Mike

  • How to force Airport to join an AP with weaker signal?

    I'm trying to figure out if there is a way to get the Airport card in my MBP to join an access point, with the same SSID as another access point, but that has a weaker signal?
    Say there's 2 access points (A and B) and they both have the same SSID (eg. Wayport_Access). A is on channel 11 and B is on channel 1. A has the stronger signal. By default, and normally, you would want the airport card to associate with the access point with the best signal, A in this case. However, I'm in the situation that A is not functioning properly. So I want to join, B, even though it's farther away.
    I've tried using iStumbler to force a join with the B access point on channel 1, but nothing happens. I stay on A as long as it's the stronger signal. If I move such that I get to a place where B is the stronger signal I can then get iStumbler to get the Airport card to associate with B on channel 1. If I then move back to my original location where A is the stronger signal I do stay associated with B, which is good. However, due to hotel positioning and such, it's not always convenient or even physically possible to move to a position where the B signal is stronger.
    I thought I remembered an advanced setting somewhere that would allow me to set something about stronger/weaker signal setting but I cannot find it in Sys Prefs.
    Any ideas?
    -Rich

    LarryHN wrote:
    do you have the air port icon displayed in your top menu bar - if not add it in the system preferences ==> network ==> airport?
    Yes.
    Click on it and click join other network then sow networks and click on the one you want to force to - that should do it
    Not if both Access Points have the SAME SSID, there's the catch. There's no mechanism through the Airport Menu or System Pref to join a different access point with the SAME SSID. That's why I was using iStumbler, because it will show ALL available access points, even the ones with the same SSID, based on which channel they are on. I want to associate with the access point that has the weaker signal, but has the same SSID as the access point that I'm already associated with. If IIRC there used to be an advanced setting about signal strength, but I can't find it anymore.
    -Rich

  • Is there a trick to forcing Address Book to update/sync with Google?

    I cannot figure out how to force Address Book to update / sync with Google. Every time I go into Address Book preferences and check the box for Google synchronization and type in my information it shows that it is connecting. But the contacts do not update. Then when I close Address Book and open up preferences again, the checkmark for Google synchronization is gone. This happens on my Mac Pro tower and also on my MacBook Air -- both are running OSX 10.6.4. Any ideas?

    Try opening up iSync in Applications. Go into preferences and make sure the "Show in Menu Bar" option is selected.
    Then you can click iSync in the menu bar and tell it to Sync Now. Might help?

  • How to use additional libraries in a project

    I am trying to call an existing EJB from page bean. And for the life of me, I can not figure out how to add additional libraries to Creator project.
    Is it supported at this stage?

    Right click on the References node in the project navigator and select: Add New Library Reference. In the subsequent dialog, specify the path to the jar file you wish to include. This library will be automatically added to the application classpath at design time and deployed with the application when you run the project.

  • ID CS5: How to include additional text into a table of contents and how to hide text from it?

    I have the following problem:
    1. I'd like to include additional Information in my table of contents which I don't want to appear in the text I refer to.
    Example: I do have a picture with a caption saying:
    picture 1: Blablabla.
    And I want to have the source of the picture as additional information in the table of contents:
    picture 1........Blablabla (source: thisandthat)........23
    Still I don't want this additional content to disappear, as soon as I update the table of contents!
    How can I achieve that?
    2. And how can I have this the other way round?
    Let's say I want the source in the caption, but not in the table of contents.
    So the caption says:
    picture1: Blablabla (source: thisandthat)
    but the table of content says:
    picture 1........Blablabla.....................23
    I was trying to achieve this by two different praograph styles in the caption. One which would be listed, and one which wouldn't be listed, but this of course resulted in always having two paragraphs in the caption, which I'd like to avoid:
    picture1: Blablabla
    (source: thisandthat)
    Any solution to this?
    Best Regards,
    Rainer Schwachsinn

    Sorry, missed the second part of the question. I think the only way to do that is to use invisible "dummy" text of some sort, and if you're going to do it for some entries, you might as will do it for all.
    One of the easiest ways is to put the text you want inthe TOC into an anchored frame attached to the actual heading in the text (so it moves along with it). Use a unique paragraph style for this text, and include this style, not the one applied to the headings inthe text, to make the TOC. I usually use a character color of red to make it satnd oout so I don't forget it's there, and the position on the page isn't really critical. Select the anchored frame, open the Attributes panel and make it non-printing. You'll see it in editing mode, the TOC will pick it up (as will variables, if required) but it will disappear on output.

  • How to include additional information in the notification emails

    Hi!
    As we know when Portal Admin creates a user,and if configured to send email, an email is sent to the new user informing about their username and password.
    Now my question is there any way possible to include additional message in those notificatin emails. If yea ,how?
    thanks for your help
    Regards
    Suresh

    Hi Suresh,
    I hopt this <a href="http://help.sap.com/saphelp_nw04/helpdata/en/33/d494c86203ea40b7b44ddd471baab1/frameset.htm">link</a>will solve your problem. Dont forget to reward points.
    Thanks Mitts

  • Adobe Acrobat 9 Standard is still seeing my old scanner install.  How to force it to see new scanner install.

    Adobe Acrobat 9 Standard is still seeing my old scanner install.  How to force it to see new scanner install?  Scanner is recognized by and works fine in Windows.  Acrobat however still sees Fujitsu fi-6130dj #3.  I need it to see Fujitsu fi-6130dj which is what is listed in Device Manager.  (Windows XP SP3).
    Thank you for any suggestions.

    To provide more detail and list what was done to resolve the issue but there may be a better way.
    Background.  When you install a USB device to a PC it is listed in Windows Device Manager as installed hardware.  If you take the USB plug for any device and plug it into a different USB port on the PC the PC will install drivers again for that device.  In Device Manager, if you set a system environment variable for device manager to show non-present devices you can see all of the times this may have occurred.  In this specific instance there were five installations in Device Manager for one piece of hardware, a Fujitsu fi-6130 scanner.  The first listing was Fujitsu fi-6130dj, then Fujitsu fi-6130dj #2, Fujitsu fi-6130dj #3 and so on.  Adobe Acrobat only saw the third instance of these drivers being installed.  Once I cleaned Device Manager of all Fujitsu scanner installs I was able to have a single set of drivers installed for this Fujitsu but Adobe still recognized the third instance of the driver install and I could not figure out how to force it to see what Device Manager was seeing, a single instance of the scanner being installed (with no #3 behind it).
    Steps performed to try to resolve.
    Repair install of Adobe - no luck - still sees the #3 instance of the scanner
    Deactivation, uninstall, reboot, reinstall, reactivation of Adobe - no luck, same behavior as above
    Complete removal of all scanner related software.  This included the ISIS drivers in Add/Remove Programs and all other related software.  This also included deleting the contents of the TWAIN_32 directory found within the root of the Windows directory and also included deleting the scanner from Device Manager.
    Rebooted.
    Reinstalled complete packages of both TWAIN and ISIS scanners - with the scanner disconnected.  Powered the scanner back on and let Windows install the drivers for the hardware.  Only at this point did Adobe see the new install of the Fujitsu scanner and no longer looked for the #3 instance of that scanner install.

  • XI 3.0: Additional libraries for mapping program

    Hello,
    I got the scenario that the program within my Interface Mapping is making use of additional custom java resources (jar's).
    I know that in XI 2.0 I had to put these additional libraries into the directory:
    ..\j2ee\cluster\server\additional-lib
    and register them in the files:
    ..\j2ee\cluster\server\managers\library.txt and
    ..\j2ee\cluster\server\managers\reference.txt
    Now in XI 3.0 I don't have these folders and files anymore. Therefore I simply imported the jar files into the repository...But I do neiter know wether that is the right way at all for registering additional libs in XI 3.0 nor I don't know if I have to import them into the same software component or namespace then the mapping program.
    Does anybody know how to make use of additional libraries within a XI 3.0 Stack 5 landscape? I would very much appreciate any recommendations on that!
    Kind regards,
    Sven Lattermann

    Hi Advait,
    From the below what I understand is that you are not able to do value mapping for the follwoing
    1     A
    2     A
    3     B
    As value mapping allow one to one mapping only. Please do it like as mentioned below
    1     1*A
    2     2*A
    3     3*B
    Then in the graphical mapping of Integration Repository do the mapping for the same as shown below
    source field > VALUEMAPPING> UDF--> TARGET Field
    In UDF suppress the value of  1* , 2* , 3* which can be done as follows
    create one UDF with one input field
    //write the code as below to suppress the field
    return input.substring(2);
    Here the davantage of using 1* , 2* , 3* etc is that you have the option to use value mapping for 100 values which I think is not normally the case for any Interface.
    If you have same source you can do the same thing for that.
    Hope this helps you to resolve your query.
    Thanks & Regards
    Prabhat

  • How to use JDeveloper with manifest.mfs?

    I'm trying to figure out how to use JDeveloper to setup a J2EE application that contains two Web applications so that the Web applications will share the same instance of a log4j library.
    I've created the two Web apps and their deployment profiles and I've created a deployment profile for the EAR that contains the two Web apps. I've successfully deployed the EAR to the stand-alone OC4J on my development system and run the two Web apps. Currently the two apps use a log4j library in j2ee\home\lib, but that option doesn't support using separate log4j.properties files for each application.
    I've read the pre-release 9iAS 9.0.4 Servlet Developers Guide document and would like to use the third option described in the Guide's appendix that tells how to share the log4j library by specifying the log4j.jar file in a class-path entry in manifest.mf.
    My problem is I just don't understand the in's and out's of using/creating manifest.mf files with JDeveloper and its deployment profiles.
    Do I create manifest.mf's myself, and if so where should they be in the source folder heirarchy? Should the manifest.mf files for both Web apps include class-path entries for the log4j library, or only the manifest.mf file for the EAR? What are the right manifest.mf settings to use in the deployment profiles for the Web apps and the J2EE app?
    For example, should the EAR deployment profile be configured to merge the manifest.mf files of the two Web apps? Is it necessary to make one of the Web apps dependent on the other Web app?
    Thanks,
    Al Margheim

    Hi,
    Thought I'd use the same subject, because it matches my problem. The questions are:
    1. How do I get JDeveloper to use MANIFEST files properly? I'm using 9.0.3.1 and I have tried (un)checking different options in the EJB JAR/EAR deployment profile, but I never get the archive structure I want.
    2. How do I include third-party JARs in the final EJB JAR/EAR? Any attempt I make to include a library JAR ( via Project Settings or by adding to the project) gives me an expanded set of classes contained in the JAR file, which is something I don't want.
    Of course, I could easily achieve all that I want with Ant, and it will have to be outside JDev (using Ant within JDev prevents JDev from offering me its "full feature set"!). But I'd like to be able to do this while I'm still in the IDE (for what it's worth).
    Any suggestions/recommendations/pointers are welcome.
    regards
    George

Maybe you are looking for

  • Remote cube on Data Source 0FI_GL_4

    HI, I have a requirement of  reconciling  the Line Items from R/3 to BW. So i tried to create Remote cube with Direct access, but coudnt due to 0FI_GL_4 data source doesnt support Direct access and reconciliation. I can see that Data Source  0FI_GL_4

  • Same customer and supplier

    If the customer and supplier is same , Can we create a link between customer and supplier through customer master? If yes where is that field in the customer master?

  • Email output of PO

    Hi Gurus , My client wants PO to be sent to vendor by Email upon saving PO. I have already made some search in forum and tried to configure but it didn't work . I have some questions , Do I need to maintain condition record for each vendor ? Which ac

  • Passing varrays as parameters to a PLSQL procedure .

    Hi all, I have defined the following procedure : TYPE t_pc_list IS VARRAY(10) OF VARCHAR2(20); PROCEDURE get_pc_list (address IN VARCHAR2, code IN VARCHAR2,pc_list IN t_pc_list ) AS BEGIN NULL; END get_pc_list; But when calling it is allways saying :

  • Importing Album, getting multiple artists as albums

    Hi! I have placed some mp3 in a folder. All these mp3's i've tagged (with Mp3tag) with the same Album name. So wenn I click 'Add folder to Libary' in iTunes I hoped that it would import 1 album with the different songs. BUT. It imports each separate