Setting path for third party class files

I am using some third party classfiles in my JSPs for JDBC. When I use these files, in normal Java Programs everything is working fine ( I am setting the path by using the CLASSPATH environment variable).
I did not understandt how to set classpath for these files (com.informix.jdbc.*) for use in iplanet 6.0.
I have tried to keep this "com" folder in /usr/java/j2sdk1.4.3_01/lib folder, but, it is not still working. I tried to change the start-jvm file, but, I am still having problems.
Can someone help me !!!
--Murthy.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Hi,
I changed the jvm12.conf file, but, it did not work. I changed the JDK Runtime Classpath in the Global Settings tab of the Administration Server and restarted both the webserver and the administration server and it worked.
Thanks for your response.
--Murthy.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Similar Messages

  • How do i access a third party .class file

    Hi,
    I am new to both java and enterprise 8, and would greatly appreciate some help.
    I have a third party .class file and want to include it in a project so i can call it's methods etc. I can access it by creating an object as follows
    thirdPartyClass tpc= new thirdPartyClass();and then create a .class file of my own using javac at the command line without any probles, but if I use the same code in enterprise 8 it reports an error stating "cannot access MyProjectName.thirdPartyClass" could someone please tell me how to reference this file as so far I have not been able to find anything.
    Thanks for any help.

    Thanks for the suggestions it appears I was doing more or less the right things but miss reading the error message:
    Cannot access keyword.classes.thirdPartyClass
    bad class file C:\java\keyword\classes\thirdPartyClass
    class file contains wrong class: thirdPartyClass
    please remove or make sure it appears in the correct subdirectroy of the classpath.
    While looking I have found that the classes do not contian src folders of Javadoc so I will go see if the third party can supply a Jar file or similar.
    Thanks

  • How do I set class path for 3rd-party classes?

    Hello, I need to know how to set the classpath so that I can use the apache's third-party lang classes. I downloaded commons.apache.org/lang/download_lang.cgi. And I need to know next steps. Move the unzipped files to which location? And type what commands?
    Thanks, Melissa

    Hi, it's not the server that I am running. My instructor told me to download an apache class file for the Apache Lang library and then set my class path to point to the executable. Her instructions are for Windows users, however. I need to do something in the terminal shell but I don't know precisely what.
    mg

  • How to set classpath for third party jdbc-driver

    my application contains bc4j jsp. when i try to run this jsp application which connect to postgresql, i get a error message
    "Application Error
    Return
    Error Message: JBO-30003: The application pool (App_ModLocal) failed to checkout an application module due to the following
    exception:
    Error Message: JBO-26061: Error while opening JDBC connection."
    how to solve this.

    The JDBC for your database should be added to your client project.
    In JDeveloper created a new 'named' library item and specify the JDBC jar files for your database.
    See also related article
    http://otn.oracle.com/products/jdev/howtos/bc4j/bc_pdb2walkthrough.html#edit
    - Sathish

  • Unable to access classes in third party jar files packaged with my ejb.jar

    I have packaged some third party jar files in my xxx_ejb.jar file.  The third party jar file contains classes that are accessed by some custom classes which are in turn accessed by my bean classes.  I get the following error when my custom classes attempt to use any of the classes in one of the third party jar files:
    java.lang.NoClassDefFoundError: com/Ostermiller/util/CSVParser
    Shouldn't I be able to access classes in jar files that are packaged with my xxx_ejb.jar file?  I see the xxx_ejb.jar file as a resource of the application classloader that contains it but I don't see the third party jar files.

    As per the Java EE specification, additional JAR files should be packaged on the EAR level. Only WAR files' WEB-INF/lib folder is scanned for JAR files to be added to the classloader.

  • Facebook does not update "likes," that people "like," after setting Facebook to an exception for "Third Party Cookies"

    I recently changed all my Bookmarks to sites that are exceptions for third party cookies and turned off the acceptance of third party cookies. Facebook will not update any "likes" I get until after I reload the page. It also will not allow me to upload pictures, it says that I am not logged in which is really odd. Is this because I have switched to the https://facebook .com?

    '''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    ''(If you're not using it, switch to the Default theme.)''
    * You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "'Start in Safe Mode"''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
    Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • Plz suggest me How to use Third party jar files in ODI

    Hi all,
    I need to know how to use the third party jar files or our own customised jar file in ODI.
    regards
    palash

    Hi all,
    I am unable to implement..................
    I have one question, if I add any type 4 coneection supported jar file in my ODI_CLASSPATH can I use them in writing procedure to connect Databases
    I am trying to connect Oracle database by putting Ojdbc14.jar in the class path of ODI_CLASSPATH so that in my procedure I can use it .............but failed I dont know how to solve this problem.
    another thing Open Tools are delivered as a Java package (.zip or .jar) containing several files:
    A compiled Java .class file
    Other resources, such as icon files is it so ..............Then I can use full java apllication by preparing required bunch of classes and by set them appropriately in open tool
    need ur suggestion....
    regards
    palash

  • How to include third party .jar files into my jar file

    Hi,
    how do i include a open source third party jar file into an executable jar?
    i have a class called BlogBox.java and it uses org.apache.commons.net.ftp.FTPClient, i want to create an executable file, where do i put the .jar file containing FTPClient aka Apache Commons Net?
    currently i'm getting the following error from when executing my BlogBox.jar
    C:\MyJava\BlogBox>java -jar BlogBox.jar
    Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/net/ftp/FTPClient
    at blogbox.BlogBox.<init>(BlogBox.java:27)
    at blogbox.BlogBox.main(BlogBox.java:103)
    Any suggestions? i have searched google and this forum but could not find the solution to my problem, thanks
    [edited msg] do i need to add the classpath at execution or something of the apache commons net library?
    Message was edited by:
    gekkokid

    When you use an executable jar the normal class path
    is ignored, but you can put a classpath inside the
    jar. The usual trick is to place the library jar
    files in a directory inside the application directory
    and direct the manifest file to it. The manifest file
    live in the jar inside the META-INF directory and
    it's called manifest.mf
    The two heavilly used entries are Main-class: and
    Class-path: lines. Class-path just has a
    comma-separated list of library paths.
    The jar utility has a special option to load it up.Thanks :) I created a "/lib" directory, placed in the packages in there and redirected the Class-Path: lib/commons-net-1.4.1.jar
    and it works,
    thank you everyone :)

  • ATP check CRM R/3 for Third Party items

    CRM .0 does not support an ATP check for Third Party items. This
    is axplained in several notes and we also find it in practice in
    our system. Actually an ATP check does also not happen in R/3,
    if you create the order in R/3, but it takes the delivery lead
    time, from the material or the info record, into account for the
    confirmation date.
    ATP check from CRM to R/3 is triggered by the requirements class
    that is determined in R/3 from the item category. So in case
    during an ATP chekc from CRM in R/3 no requirements class is
    found for the item category, as this is the case for the third
    party item category the system does no futher action and does
    not take the delivery lead time into account.
    This is standard system behaviour.
    We are setting up a webshop where the above mentioned could
    result in a partial confirmed order during order simulate. The
    customer will not be able to view the confirmed date before
    actually saving the order.
    My question is if anybody ever tried to find a workaround or
    solution for this missing functionality.
    Best regards,
    Pascal.

    Hi Pascal,
    Middleware setting is only to activate the ATP call from CRM to R/3. It has nothing to do with the pop-ups you are getting. I don't remember on top of my head how to eliminate this situation. I think when you call ATP, the system is validating the partner functions. Check partner determination profile assigned to the transaction type. I believe you need to make some changes to the partner profile. Are you getting these pop-ups only for a particular transaction type?
    <b>Do not forget to reward if it helps,</b>
    Regards,
    Paul Kondaveeti

  • Risk Analysis for Third party ERP system

    We want to perform offline risk analysis for third party ERP(SRM) system.... We have already GRC system installed with Global rule set for SAP ERP & want to have another ruleset for offline risk analysis.
    Just would like to have a confirmation for below steps & estimated time for this.
    Activities Need to be performed from Our side(Client) :-
    1) Send the RAR format for Users/Roles/Actions & Permissions.
    2) Cross Verify the format.
    3) Create the connector for stored files.
    4) Upload the files via Data Extraction utility.
    5) Generate the ruleset for SRM(third party).
    6) Schedule the various background jobs.
    Activities Need to be Performed from Third Party - HUBWOO(Owns SRM ERP system) :-
    1) Convert users/action/roles and permissions files to RAR format.
    Activities need to be Performed  from SAP :-
    1) Provide the ruleset for HUBWOO SRM system.
    Please let me know if I missed any step above & estimated time to complete from our end & did anyone has come across ruleset for HUBWOO system..?
    Thanks in Advance!!

    Thanks all for your reply,
    Alpesh, but still I have small concern here, when SAP provide the ruleset files, it also provides for Oracle, People soft & JDE ERP.
    Though these are also third party ERP's for SAP...?
    Does it mean that we can'task for ruleset for other third party ERP from SAP...? or does SAP Charge something for it..?
    Thanks

  • Deploying Common-utilities and Third-party Classes

    In your documentation you state that several jar-libraries (containing
    utilities, third-party classes, jdbc-drivers and also I suppose classes for
    custom realms) needs to added to the Java system classpath.
    This probably also means that they will not be distributed from the
    administration server to the managed servers as applications does. Since
    most non-trivial applications include startups, custom realms and so forth
    it renders the distribution feature (ie. from admin server to managed
    server) virtually useless. Installs needs to be made on all nodes anyway.
    One example on a solution for this is to distribute these jar-libraries to
    the new node-manager which then starts up the server with these jar-files on
    the classpath?
    Also one could include the startup and shutdown-classes in a
    weblogic-specific enterprise application deployment-descriptor so that these
    are run in the same classloader as the enterprise application. Most
    non-trivial startups probably needs to run in this classloader anyway. (If
    they for example access ejbs etc.)
    An alternative implementation would be to specify a servlet with a
    load-on-startup, but I'm not sure at what time the servlet will be loaded.
    Is this a recommended strategy for startup-classes that needs to run in the
    application classloader?

     

  • Clients status on Software Updates "Waiting for third-party orchestrator to initiate installation"

    20 out of 25 clients are all in the "Waiting for third-party orchestrator to initiate installation".  What does this mean?  They have already passed the deadline.  They have downloaded the updates.  No installation though except on 5
    servers.  Below is a piece of the Client log.
    <![LOG[Starting install for assignment ({04CC9BB1-24B6-449F-8354-3E0E1B291AEF})]LOG]!><time="04:42:08.435+300" date="04-26-2012" component="UpdatesDeploymentAgent" context="" type="1" thread="16048" file="updatesassignment.cpp:1366">
    <![LOG[Update (Site_DD8D5673-FF52-48CD-A2C4-75146D025A96/SUM_39672c9b-8955-4d0d-bb4f-201d148029ee) not actionable, no attempt required]LOG]!><time="04:42:08.466+300" date="04-26-2012" component="UpdatesDeploymentAgent" context="" type="1" thread="16048"
    file="updatesmanager.cpp:2978">
    <![LOG[Update (Site_DD8D5673-FF52-48CD-A2C4-75146D025A96/SUM_c1b1c8a2-0b8c-44ad-82bc-7edcbbdc6ce1) not actionable, no attempt required]LOG]!><time="04:42:08.466+300" date="04-26-2012" component="UpdatesDeploymentAgent" context="" type="1" thread="16048"
    file="updatesmanager.cpp:2978">
    <![LOG[Update (Site_DD8D5673-FF52-48CD-A2C4-75146D025A96/SUM_7c97c02e-1734-4d5e-aeb4-0db8a7cd7167) not actionable, no attempt required]LOG]!><time="04:42:08.466+300" date="04-26-2012" component="UpdatesDeploymentAgent" context="" type="1" thread="16048"
    file="updatesmanager.cpp:2978">
    <![LOG[Update (Site_DD8D5673-FF52-48CD-A2C4-75146D025A96/SUM_f27242f3-7eb0-4186-a31f-78b8a7c85cfc) not actionable, no attempt required]LOG]!><time="04:42:08.466+300" date="04-26-2012" component="UpdatesDeploymentAgent" context="" type="1" thread="16048"
    file="updatesmanager.cpp:2978">
    <![LOG[Update (Site_DD8D5673-FF52-48CD-A2C4-75146D025A96/SUM_99ca576e-12c2-4f99-9dff-2226d03f1ca0) not actionable, no attempt required]LOG]!><time="04:42:08.466+300" date="04-26-2012" component="UpdatesDeploymentAgent" context="" type="1" thread="16048"
    file="updatesmanager.cpp:2978">
    <![LOG[Update (Site_DD8D5673-FF52-48CD-A2C4-75146D025A96/SUM_4268ea94-52eb-4263-b238-6a2537ba9ad5) not actionable, no attempt required]LOG]!><time="04:42:08.466+300" date="04-26-2012" component="UpdatesDeploymentAgent" context="" type="1" thread="16048"
    file="updatesmanager.cpp:2978">
    <![LOG[Waiting for third-party orchestrator to initiate installation.]LOG]!><time="04:42:08.498+300" date="04-26-2012" component="UpdatesDeploymentAgent" context="" type="2" thread="16048" file="updatesmanager.cpp:3162">
    <![LOG[This assignment ({04CC9BB1-24B6-449F-8354-3E0E1B291AEF}) will be attempted by third-party orchestrator.]LOG]!><time="04:42:08.498+300" date="04-26-2012" component="UpdatesDeploymentAgent" context="" type="1" thread="16048" file="updatesassignment.cpp:1405">
    <![LOG[No pending install assignment]LOG]!><time="04:42:08.529+300" date="04-26-2012" component="UpdatesDeploymentAgent" context="" type="1" thread="21848" file="assignmentsmanager.cpp:1500">
    <![LOG[No other installations in pipeline. No reboot required.]LOG]!><time="04:42:08.545+300" date="04-26-2012" component="UpdatesDeploymentAgent" context="" type="1" thread="21848" file="updatesmanager.cpp:3583">
    <![LOG[EnumerateUpdates for action (UpdateActionInstall) - Total actionable updates = 1]LOG]!><time="04:46:03.354+300" date="04-26-2012" component="UpdatesDeploymentAgent" context="" type="1" thread="21280" file="updatesmanager.cpp:1495">

    It's most likely caused by a client agent setting called "Agent extensions manage the deployment of applications and software updates", see
    http://technet.microsoft.com/en-us/library/gg682067.aspx#BKMK_ComputerAgentDeviceSettings. It has to be set to "disabled" if you are not using any third party software that plugs into ConfigMgr.
    Torsten Meringer | http://www.mssccmfaq.de

  • Question about using third party jar files in Java Web Start Environment

    Hi everybody, I got a very strange problem and still can't figer out how to solve it. Can anyone help to overcome this problem?? Thanks in advance.
    Question: I wrote a simple java swing application to connect to Oracle database. I packed whole my classes and a third party jar file(classes12.jar) to a new jar file named "IRMASSvrMgntGUI.jar" and then use command 'jarsigner' to signed IRMASSvrMgntGUI.jar. There is no problem when I execute 'java -jar IRMASSvrMgntGUI.jar' in the command line. But when I execute this application via Web Start Environment, an "java.lang.NoClassDefFoundError: oracle/jdbc/driver/OracleDriver
    " error occured with the following detail log shown in Jave Web Start Console:
    =============================================================
    java.lang.NoClassDefFoundError: oracle/jdbc/driver/OracleDriver
         at DBConnection.getNewConnection(DBConnection.java:25)
         at IRMASSvrMgntGUI.actionPerformed(IRMASSvrMgntGUI.java:524)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.AbstractButton.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(Unknown Source)
         at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    ==========================================================================
    contents of the manifest file I used to create this jar file are as follows
    ===================================
    Manifest-Version: 1.0
    Main-Class: IRMASSvrMgntGUI
    Class-Path: classes12.jar
    Created-By: 0.9a (itoh)
    ===================================
    and file structures in "IRMASSvrMgntGUI.jar" is
    ====================================
    META-INF/
    classes12.jar
    DBAuthenticateDialog.class
    DBConnection.class
    IRMASSvrMgntGUI.class
    ====================================

    If you directly include classes12.jar in IRMASSvrMgntGUI.jar, the classloader won't be able to find the classes inside classes12.jar. You should sign classes12.jar separately and include that in jnlp along with your application specific jar. When you're launching your app using "java -jar somefile.jar" then the classpath settings in manifest file are used, but that's not the case when you start using JWS since in this case the classpath is based only on the " <jar href=..." entries in jnlp.

  • Using Third-Party jar file in database; Where to put license file?

    Hi!
    I have a third-party product that has a .jar file that references some .so files. I have successfully loaded the .jar file and the .so files are being called successfully, but when the program gets to the part where it reads the third-party license file, it is failing (ORA-3113 and an hs_err_pid<12345>.log and udump file are created. I know the issue is the location of the license file because I am getting the same exact error when I run it outside of the database. (I have been able to run it successfully outside of the database.)
    The instructions for the third-party product say to put the license file in the application's runtime directory.
    What I can't figure out is this: What is the application's runtime directory when I am running the code in the database?
    I thought it would be user.dir which is set to $ORACLE_HOME, but putting the license file there didn't work. I have tried lots of other places under $ORACLE_HOME.
    Any ideas?
    Thanks,
    Laurel

    Hi Laurel:
    Whether or not you can read the license file, sure you will have problem then when trying to load your .so file.
    Java JNI call are not allowed inside OJVM for security reasons, see Kuassi's answer to a similar question:
    Access Berkeley DB from Java Stored Procedure
    Best regards, Marcelo.

  • PO Creation for third party sales

    Hi
    We have the scenario Third party sales and High sea sales which is already in use (already configured) , where PR getting generated automatically .
    But client requirement is they want the PO to generate automatically by the system the moment i save the sales order .
    Where is the setting in the SAP , where system will generate the PO automatically instead of PR
    Please suggest

    Hi,
    Go to VOV7
    Select third party item category which u r using in sales order >>> Deatils >>> under transaction flow >>> Tickmark to CREATE  PO AUTOMATIC.
    If you activate this field, the system automatically generates both a purchase order requisition for third-party schedule lines as well as a purchase order in the background when you save the sales order.
    However u can not create PO directly.
    Kapil

Maybe you are looking for

  • Report on raw material to wip for a production order

    Hi, Is there a report which has a list of " issue of raw materials to a production order"? Or how to know how much raw material is issued to WIP on a production order. i nee dto have a report which has material cost and material overhead an dtotal. h

  • Many-to-many question

    Just asking for some help with some search terms, as I know that this topic has been argued out somewhere. I just haven't been able to find it: If I'm setting up a cross-reference/junction table in order to fulfill a many-to-many requirement, should

  • Query Exception Expert Opinion Needed

    HI WE have this particular case we are yet to find a problem on, your assistance with this would be awesome. SO the problem is as follows: - we have two Key figure (K1 & K2) - Many conditions based on the two key figures should be shows in different

  • MyRIO Analog IO

    I'm new to myRIO and LabVIEW. My questions are as follow: 1. I tried a simple program to acquire analog sine wave from a function generator and display it in PC (labVIEW). The sine wave displayed in labVIEW was pretty accurate for approximately 50Hz.

  • ADF BC: Polymorphism and relations

    Hi, I'm building an ADF 11g application. In our data model, we have a table that contains four different types of transactions, all with the same attributes (columns). One column contains the transaction type and is the discriminator column. We also