Lib folder on 9iAS

Hi,
Does any body has idea where to place custom jar files in 9iAS?
Does 9iAS support lib folder to place jar files.
One opition I find at this point of time is to unjar files using jar - xvf comand in $OA_JAVA but thisi not a correct way of doing the things.
Can any body provide inputs on this?
Regards,
Vigni

That solves the arrow thank you . . . I can see it on another folder which is an alias also. . . BUT I can't find the original of this folder and if I trash it I lose all the material  . . . O me miserum . . . don't suppose you'd know why it has a yellow background to the label while none of my other folders do? . . .  :}

Similar Messages

  • Unable to run jar file without lib folder containing swing-layout-1.0.jar

    I have done my project through NetBeans 5.0. Eventhough I have copied my lib foloder containing swing-layout-1.0.jar inside my project.jar, I am still unable to run my project.jar in other systems, it is creating an error as Could not find the main class. Program will exit. But if I copy the lib foloder containing swing-layout-1.0.jar in the same path as the project.jar, then my project.jar is running.
    But I want to give only the project.jar for other users and not also lib foloder containing swing-layout-1.0.jar each time.
    Could someone please help me with this.

    When you develop GUI applications using the Netbeans you may endup using netbeans specific jar files in your auto generated code.
    And when you build jar files with netbeans it copy the third party jar files used in a application in to a lib folder in the same directory as the jar file of your project. And then set a class path entry to those jar files in your project jar file's manifest file.
    So if you want to redistribute the package you have to redistribute your jar file and every thing in the lib folder in with the same directory structure.
    If you want to change the structure you will have to change the class path to suit the new structure.

  • ClassNotFound in case of class from jar in lib folder

    Hello,
    I get an application that I have to deploy on Weblogic AS. It is big ear with couple of wars inside. Let's say it is bigApp.ear.
    It is deployed and state is Active. When go to browser and try to run an application I get an error. In logs I found ClassNotFoundException. The error is related to a class, let's say: com.some.package.Abc - I have this class in a jar file, let's say someFile.jar and it is in a folder WLS_FOLDER\samples\domains\wl_server\lib where:
    - WLS_FOLDER is my WLS installation folder
    - wl_server - name of my domain where I deploy an application.
    I wrote a small application (simple form), let's say simpleApp.war. The application uses the class com.some.package.Abc, but the class is not put into the war (WEB-INF/lib) of my small aplication (I use Maven and dependency to someFile.jar has scope provided, so simpleApp.war does not contain it). The result is that simpleApp works fine and there is no error in logs. It creates an instance of com.some.package.Abc and correctly display toString() of the instance of the class in a browser. So this means that application simpleApp is able to see and use classes that are inside jars in WLS_FOLDER\samples\domains\wl_server\lib folder.
    So my guess is that there is something in bigApp.ear but I don't know where to search. I read about class loaders hierarchy in Weblogic and Class Loader Filtering. But I have looked inside every weblogic.xml in bigApp.ear and wars that are inside and there is no filter on "com.some.package" or "com.some" or "com" only different packages.
    Is there any other mechanism in Weblogic that could block the visibility of classes from jars from lib folder of domain to the applications that are deployed in that domain??
    Regards

    Hi,
    Place that something.jar file under Domain_Home / lib folder and restart the server it will included with in the classpath and your app will able to pick the class without any issue.
    Regards,
    Kal

  • Its urgent  how to use calss file of jar located in lib folder

    how to use calss file of jar located in lib folder.
    i want to use RowSetDynaClass class which is in beanutil jar file which is in my lib folder .if i use that class in my jsp following error is coming.
    Class RowSetDynaClass not found.
    RowSetDynaClass resultSet = new RowSetDynaClass(rs, false);
    how to access class in jar file.
    please help

    You have to either refer to the class in its fully quallified name, or import it into the JSP:
    <%
      some.full.packagename.RowSetDynaClass resultSet = new some.full.packagename.RowSetDynaClass(rs,false);
      ...-or-
    <%@ page import="some.full.packagename.RowSetDynaClass" %>
    <%
      RowSetDynaClass resultSet = new RowSetDynaClass(rs, false);
      ...As long as the class has public visibility and you have re-started the server/servlet context since you added the JAR.

  • [svn] 1494: + Copy jgroups.jar to qa-regress/WEB-INF/lib folder

    Revision: 1494
    Author: [email protected]
    Date: 2008-04-30 12:29:37 -0700 (Wed, 30 Apr 2008)
    Log Message:
    + Copy jgroups.jar to qa-regress/WEB-INF/lib folder
    + Add a clustered destination to remoting-config.mods.xml for codecoverage
    + Add url-load-balancing,class and default attributes to cluster definition in services-config.mods.xml for codecoverage
    checkintests: passed
    Modified Paths:
    blazeds/trunk/qa/apps/qa-regress/WEB-INF/flex/remoting-config.mods.xml
    blazeds/trunk/qa/apps/qa-regress/WEB-INF/flex/services-config.mods.xml
    blazeds/trunk/qa/apps/qa-regress/build.xml

    Please see following Sun Alert.
    http://sunsolve.sun.com/search/document.do?assetkey=1-26-101905-1
    The document contains links to the patches that fix this problem.

  • Can TLD jar can access through EAR / APP-INF/lib folder

    Hi All,
    If I have a TLD files into jar file and their specific classes are also into jar file .
    Now can access those jar through EAR file APP-INF/lib folder or else its must to access through WEB-INF/lib folder.
    any pointer will be great.
    Regards,
    Kal.

    I suggest you assume that's how it's supposed to work, and get that to work most efficiently. I have no idea what you were trying to achieve by putting the taglib jar in APP-INF/lib. Perhaps you have multiple webapps and you wanted to avoid multiple instances of the taglib jar? If that's the case, I believe you could use WebLogic "shared application libraries" (I don't think that's the correct term), where you deploy a jar file as an application library, and the weblogic.xml file in each webapp that uses it would specify the name of the application library it uses.

  • Weblogic Server not picking the jar files in WEB-INF/lib folder

    we are facing a strange problem where Weblogic App Server is not picking the jar files present inside the WEB-INF/lib folder if we update the jar file path in the classpath of the start script then the classes get loaded properly.
    Is there any specific setting which I need to do in weblogic to pick these jars ?

    Class loaders associated with a Web application can be configured to locate local classes first. To enable this we have to set the <prefer-web-inf-classes> to true in the deployment override weblogic.xml, for example
    <container-descriptor>
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    http://blog.transfer-solutions.com/2010/12/weblogic-class-loading/

  • NetBeans - won't create lib folder

    Hi,
    when I try building projects of mine in NetBeans everything goes fine but when I look in the dist folder there's no lib folder and according to the readme txt file there needs to be one there... furthermore I get the following when I build projects from output:
    C:\JavaProjects\JavaHello\dist\JavaHello.jar is a directory or can't be read. Not copying the libraries.
    Building jar: C:\JavaProjects\JavaHello\dist\JavaHello.jar
    Not copying the libraries.
    Is it because the folder is in C:\ directory or is there something I need to set?
    Cheers
    (and apologies if this is the wrong section)
    Edited by: bastones_ on Jan 12, 2009 5:01 AM

    go into the folder with your JAR file--your dist folder--type: java -jar <what ever your file name is> and hit enter.

  • Libs folder is being ignored

    For some reason my libs folder is being ignored, all the swc's have a ? mark over them.

    hi nikos,
    can you give us some more information...is your libs folder just a local folder in your project (i.e. default one that gets created)? Are you using any sort of linked resources or sym links? Have you tried just refreshing that node in the Package Explorer? Does the compiler find your swcs and compile them and is it just a Package Explorer issue?
    thanks,
    -george

  • Missing lib folder

    Hi there
    I'm fairly new to Netbeans, just started using it 2 weeks ago.
    I've been working on a project which has been going fine... until last night! For no apparent reason Netbeans, is no longer writing the lib folder in my project dist folder, hence I cant run my jar file. It doesnt even write the usual readme.txt. All there is in the dist folder is the .jar file.
    I've no changed anything to do with project properties or classpaths so why should this be?
    And more importantly how do I fix it??
    Please help - I'm desperate!!
    Dave

    Problem solved. The file manifest.mf had vanished from the project. Replacing it with one copied from another project sorted it.

  • Build installer for lvlib for LabVIEW instr.lib folder

    Dear.
    It might be trivial.
    I build an .lvlib.
    What I want now is to make an Istaller.
    The installer should install the vilib into the instr driver directory of the current LabVIEW Version.
    I'm using LV 2011.
    The installer always wants to install the files into 'Program Files' folder.
    So the question is:
    How do I have to proceed?
    I want the complete vi and controls hirarchy including dir.mnu files to be installed into the instr.lib folder.
    Regards
    Martin

    This is a prime canidate for VIPM.  You can use the free version to build the package.  The best part of using VIPM is that you can "install" it on every version of LabVIEW you have installed (that is it compatable with, of course).
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Classloader Order: JARs in Classpath or Lib folder?

    I have an application that is WARred up in the typical J2EE fashion. There are a bunch of 3rd party JAR files that need to be included in its lib folder. I put them in there and deployed the WAR, but when weblogic starts up it gives all these errors about not being able to find certain classes from the JARs. As an alternative, I tried putting the paths to those JARs in the CLASSPATH system variable and it worked.
    Why doesn't weblogic find my JAR files if they are inside \WEB-INF\lib? Is it something to do with the order things are loaded by the classloader? Could it be that it's trying to load my classes first and the library JARs second when I put those JARs in the lib? Would it load the JARs first when I put them in the CLASSPATH instead?
    Why can't it see my JARs?? >:-|

    I had the same problem. I fixed it by unpacking the jar files and add the classes directly to my WAR file... Because jar files inside a WAR is not loaded somehow.
    Dont know the reason for it tough..

  • Lost lib folder

    Hi All,
    Accidentally the /lib folder was moved to /tmp folder. Now almost any command works (cp, mv, ls doesn't work).
    How can I recover my SO?
    Thanks in Advance
    Marcel Britto

    I'm not certain if you can access /tmp/ from singleuser/dvd, the contents of /tmp/ might be partially in memory and hence could get lost (or perhaps not, i'm not 100% certain).
    If you have a shell on the system, try and set your LD_LIBRARY_PATH to /tmp/lib and the move it back, i.e:
    LD_LIBRARY_PATH=/tmp/lib
    export LD_LIBRARY_PATH
    mv /tmp/lib /lib
    with a bit of luck that will do the trick, othervise i would try to find a static mv/tar/rsync or something else which can move a file
    .7/M.

  • [svn] 1985: use the asc.jar in the lib folder when running the asc tests

    Revision: 1985
    Author: [email protected]
    Date: 2008-06-06 12:20:06 -0700 (Fri, 06 Jun 2008)
    Log Message:
    use the asc.jar in the lib folder when running the asc tests
    Modified Paths:
    flex/sdk/trunk/build.xml

    You may want to use the filtering classloader. See the doc at http://e-docs.bea.com/wls/docs92/programming/classloading.html#wp1097187

  • Lib Folder? Unix executable files

    So suddenly a folder entitled "lib" appeared in my documents folder without me putting it there. Or shall I say without me intentionally putting there. But before I remove it I just wanted to make sure it is not a critical system component. Oh and the folder contains the files; libdaz-qsa.dylib,libdaz-qt-mt.dylib, and libdzcore.dylib. These are all unix executable files ranging in size from 2.8 MB to 9.8 MB. Anyone have an idea of where this folder originated from, so I can promptly return it to ts proper home? A place for everything and everything in it's place. Thanks in advance, to anyone that can help
    powerbook G4 1 Ghz 12.1 inch   Mac OS X (10.4.7)  

    Did you perchance recently download and install Bryce from DAZ?
    http://bryce.daz3d.com/55index.php
    I seem to remember they had a special free download last month. Must say that your Documents folder is a rather weird place for their dynamic library files to go though...
    Francine
    Francine
    Schwieder

Maybe you are looking for

  • Mac book pro will not boot

    So i was using my macbook pro the 2008 with mountain lion the other day with a remote connection from another mac with snow leopard installed and everything worked great, no freezes no connection problems nothing, until when i was done i didnt want t

  • NoClassDef error

    I am trying to output a node name from an XML file using Xerces DOM, to a servlet. I keep getting the error I posted below. Can anyone assist?? This is my program: import org.apache.xerces.parsers.DOMParser; import java.io.FileNotFoundException; impo

  • VGA and HDMI ports are next to each other; any VGA cable blocks HDMI port; want 3 displays.

    The VGA & HDMI ports are right next to each other on the left side of the laptop.  I ultimately would like to connect two monitors to it, but am unable to occupy both ports because the everyday end of a VGA cable/extender is too wide. Any solutions?

  • PERL CGI doesnt accept ORACLE+APACHE

    Hi, I am using Oracle+Apache+Perl+DBI/DBD and one thing very strange is happening: Oracle works fine ... Perl + CGI + Apache works fine ... Perl + Oracle works fine ... But when it comes to Access a Perl script (CGI) accessing Oracle in the Netscape

  • Problems with InDesign for CS6

    We are having trouble opening up a file in CS6, we keep getting the following error message:  "Cannot open the file "xyz.indd. Adobe InDesign may not support the file format, a plug-in that supports the file format may be missing, or the file may be