Library path location

Hello!
When i attach library and if i say yes when program ask me if want to save path of the library, where actually does the program save this path. How can i remove it?

I don't know what the iTunes Source pane is.
If you look at the Play/Pause button, almost directly below it is the source pane. It holds the listings Library & any playlists.
I used File->Add to Library but that won't fix the fact that iTunes doesn't recognize that folder as my iTunes folder, meaning anything else I rip from cd or buy from the iTunes store will not appear in my Library.
Perhaps your Music Library file became damaged. Using File->Add to Library will generate a new one.
I also have my music on an external HD. As long as you have added the music to iTunes Library, along with having that location selected in iTunes Preferences->Advanced & have "Copy files to iTunes Music folder when adding to library" checked, "my music" in your case, all your rips & purchases should be copied there.

Similar Messages

  • Library paths and environment variables

    Hello,
    I am using 10g AS 9.0.4 on a Unix system.
    I am trying to convert an old JSP web application to work with 10g. It is not an EAR/WAR file so I am manually trying to set it up under the "default-web-app" folder. It uses a number of java class files which currently reside in $J2EE_HOME/default-web-app/WEB-INF/classes/mystuff.
    These class files require access to a number of libraries. I foolishly believed that they would be accessible if I were to place them in the $J2EE_HOME/default-web-app/WEB-INF/lib folder, but that did not work.
    I read that OC4J uses a "catch all" lib directory at $J2EE_HOME/applib. I copied the library files there and they still did not work.
    Frustrated, I tried to print out the environment variables for the server - only to find that this function is not supported.
    I managed to print out the library path by creating a Java class files which returns the following as a string:
    System.getProperty("java.library.path");
    This (when called from a JSP) prints a number of different library paths, none of which match those found listed in the $J2EE_HOME/config/application.xml file. I placed the library files in one of the paths listed by the "java.library.path" and it worked!
    3 questions:
    1. How do you print the server's environment variables using a JSP? This strikes me as a very useful function for sorting out library and path issues. Do a search on Google for "print environment variables OC4J" or something similar and there are no useful pages suggesting how this can be done.
    2. Why are the default library paths different on the server than to those specified in application.xml?
    3. How do I change the LD_LIBRARY_PATH (or any environment variable for that matter)? I have tried adding the following line to $ORACLE_HOME/Apache/Jserv/etc/jserv.properties without success:
    wrapper.env=LD_LIBRARY_PATH=/my/custom/library/path
    Any help you can offer would be most appreciated.

    >
    Thanks very much for a such a comprehensive response
    - it has helped answer a lot of questions, especially
    being able to print out the system properties. That
    will be really useful!
    No worries at all Rob.
    The main hurdle is that the libraries are indeed
    native (*.so) libraries. I hadn't considered that
    until you pointed it out in your message. Can I
    assume, then, that $J2EE_HOME/applib and
    $J2EE_HOME/default-web-app/WEB-INF/lib are only
    designed to handle Java's .JAR librares? That would
    explain why placing the native libraries in there
    didn't work, but is there a way of getting such
    native libraries recognised and bundled up in a
    WAR/EAR file?
    Yep, that's it.
    Our proprietary applib and the servlet specs web-inf/lib are only dealing with Java archives.
    The J2EE specs don't cover how to deal with native libs like this.
    Now I've NEVER EVER tried it, but it's worth a shot of at least trying -- for simplified packaging purposes, what you may be able to do is to distribute the .so's within the web-inf/lib -- and then just set that directory (where's its realized on the server after the app is deployed) to be referenced witihn the LD_LIBRARY_PATH. I'd expect our deployment manager will just ignore files it doesn't know about, so arguably you should be able to at least distribute them with the standard archive.
    You'll need to specifically set the LD_LIBRARY_PATH as a separate task outside of the deployment operation though.
    >
    This is where things get a bit weird, and is partly
    my fault during the installation of 10g AS.
    We already had an existing installation of Oracle 10g
    Database (10.1.0) at $ORACLE_HOME under the user
    "oracle". I logged in as the user "oracle" to install
    the Application Server into a different location (In
    this case, "$ORACLE_HOME/../ias10g_9.0.4" - let's
    call this $IAS_HOME). So there is no separate user
    account for Oracle Database and Application Server
    (and hence no separate $LD_LIBRARY_PATH).
    If I log into UNIX as the user "oracle" and echo the
    LD_LIBRARY_PATH, I get the following directories:
    $ORACLE_HOME/lib
    /usr/openv/netbackup/bin
    /usr/dt/lib
    /usr/lib
    I use this user to do "opmnctl stopall" and "opmnctl
    startall". If I then print out the library path from
    a JSP using
    "System.getProperty("java.library.path");", I get the
    following paths:
    $IAS_HOME/jdk/jre/lib/sparc/server
    $IAS_HOME/jdk/jre/lib/sparc
    $IAS_HOME/jdk/jre/../lib/sparc
    $IAS_HOME/opmn/lib
    $IAS_HOME/lib
    $IAS_HOME/usr/lib
    Which is totally different to those listed by
    $LD_LIBRARY_PATH at the command line, which means
    they must be coming from somewhere else.
    It gets worse - my application is trying to call a
    native library that is only present in the
    $ORACLE_HOME/lib32 directory (libclntsh.so.10.1), so
    unless I can include this path in the
    "java.library.path" on the Applicaiton Server, then
    my program will not work.
    So, how do I change the "java.library.path" when the
    values aren't coming from $LD_LIBRARY_PATH in the
    first place?
    The utility $IAS_HOME/opmn/bin/opmnctl is actually a shell script.
    It has this section which sets the LD_LIBRARY_PATH:
    if [ -z "$LD_LIBRARY_PATH" ]
    then
    LD_LIBRARY_PATH=$ORACLE_HOME/opmn/lib:$ORACLE_HOME/lib ; export LD_LIBRARY_PATH
    else LD_LIBRARY_PATH=$ORACLE_HOME/opmn/lib:$ORACLE_HOME/lib:${LD_LIBRARY_PATH} ; export LD_LIBRARY_PATH
    fi
    So if you have an existing LD_LIBRARY_PATH env var set, it should just be putting its paths onto the front of it.
    What you could try as a quick test is to edit the opmnctl script (after taking a backup of course) and either appending the path you need to it, or just add some debug statements to output the LD_LIBRARY_PATH value it ends up setting so you can try and work out what's causing it.
    I expect these other entries:
    $IAS_HOME/jdk/jre/lib/sparc/server
    $IAS_HOME/jdk/jre/lib/sparc
    $IAS_HOME/jdk/jre/../lib/sparc
    are coming from the JRE when it is launched, in probably a similar manner to our opmn entries.
    I really appreciate your help, and I bet if anyone
    can answer these questions, you can! ;-)
    You're very welcome.
    cheers
    -steve-

  • SQL Developer Not Working "no ocijdbc11 in java.library.path"

    Hi,
    I have Oracle 10g with SQL Developer 3.0 on Windows XP, they worked well untill I just installed Oracle ODBC (ODAC101040.exe). I started to receive error message "no ocijdbc11 in java.library.path" and I am no longer able to use SQL Developer.
    Any solution?

    Check on the envirnment variables on the windows. Once you installed the "Oracle ODBC" it might have replaced the Old env. variables that can found in XP "System Properties> advance tab> environment Variables". Make sure you have the right environment variables that point to right directory locations. Update us with your findings.

  • No ocijdbc11 in java.library.path

    Good day,
    I am trying to set up SQL Developer to use TAF; I am frequently getting the error in this subject and am pulling my hair out trying to get to the bottom of it.
    My environment:
    freshly downloaded Instant Client 11.2.0.3
    Full Oracle Client 11.2.0.2
    Freshly upgraded SQL Developer (3.2.20.09)
    Client: Windows 7
    Server: Grid/RAC 11.2.0.3 running on Solaris 10
    For starters, I have attempted to follow the wise advice of Gary and Turloch in the following threads:
    https://forums.oracle.com/thread/2342919
    https://forums.oracle.com/thread/2319271
    I have tried both the Thick and Thin clients. I am not exactly sure what to do next. Any ideas?
    Thanks for your time and attention,

    Hi Charles,
    You definitely need OCI to use TAF.
    If you go to the Help -> About -> Properties tab and scroll down to the name java.library.path, you should see its value is a construction that includes your Windows Path variable.  The Path variable should include a reference to the bin directory of the Oracle client software where the ocijdbc11.dll lives.  If it's missing, then that could be the problem.
    Otherwise, reading through some old forum posts, it seems that error can also occur when SQL Developer has difficulty locating the tnsnames.ora file. The recommendation is to specify the location via Tools -> Preferences -> Database -> Advanced -> Tnsnames Directory. However, this case is applicable when Connection Type = TNS, and I assume you must be using Connection Type = Advanced with a Custom JDBC URL.  If ocijdbc11.dll is on the Path, you should have the option of using either TNS or the Custom JDBC URL.
    If Path is correct, I am not sure if it is absolutely necessary to set the ORACLE_HOME variable and enable the OCI/Thick driver preference, but it probably could not hurt.
    Hope this helps,
    Gary

  • [svn] 3037: Update flex-config. xml files used by the team and qa webapps to use the {targetPlayerMajorVersion} token instead of a hardcoded player version in the library-path and external-library-path .

    Revision: 3037
    Author: [email protected]
    Date: 2008-08-29 06:54:15 -0700 (Fri, 29 Aug 2008)
    Log Message:
    Update flex-config.xml files used by the team and qa webapps to use the {targetPlayerMajorVersion} token instead of a hardcoded player version in the library-path and external-library-path. This will allow the correct playerglobal.swc to be located when the target player version is set in the flex-config.xml or passed to mxmlc or compc.
    Modified Paths:
    blazeds/trunk/apps/team/WEB-INF/flex/flex-config.xml
    blazeds/trunk/qa/resources/config/flex-config.xml

    Unfortunately I don't have the
    "org.eclipse.swt.win32.win32.x86_3.1.2.jar" file. On my computer
    the folder is not set up the same way (C:\Program Files\Adobe\Flex
    Builder 2\plugins) instead it is set up as (C:\Program
    Files\Adobe\Flex Builder 2\metadata\plugins) but I've looked in
    everything and that file just isn't in there. I've re downloaded it
    twice. Still not there. Is there anything else i can do.

  • Solution of "no ocijdbc8 in shared library path" Windows95 Jdeveloper 3.0

    I installed Jdeveloper 3.0 and got the message "no ocijdbc8 in shared library path".
    We are using Oracle 8.0.5 so I had Oracle 8.0.5 client in my PC.
    1. I down loaded oci805jdbc.dll, oci805jdbc_g.dll and put my c:\orawin95\bin directory. The PATH contains the directory.
    2. Then I tested the dll with the following program: (provided with sombody else in this discussion forum.)
    public class Test4 {
    public static void main (String [] args)
    try
    System.loadLibrary("oci805jdbc");
    System.out.println("Successfully Loaded");
    } catch(Exception e)
    System.out.println("LD_LIBRARY_PATH is not properly set");
    e.printStackTrace();
    The output:
    Successfully Loaded
    I tried the following too (ocijdbc8.dll exists in c:\orawin95\bin directory):
    public class Test {
    public static void main (String [] args)
    try
    System.loadLibrary("ocijdbc8");
    System.out.println("Successfully Loaded");
    } catch(Exception e)
    System.out.println("LD_LIBRARY_PATH is not properly set");
    e.printStackTrace();
    The output:
    java.lang.UnsatisfiedLinkError: no ocijdbc8 in shared library path
    May be I need Oracle 8.1.5 client or the dll is corrupted?
    3. I modified my Jdeveloper.ini file (changed jdbc lib: 8.1.5 to 8.0.5:
    Original row:
    [Java_Global]
    IDEClassPath=..\lib\jdeveloper.zip;..\lib\jdev-rt.zip;..\lib\jbcl2.0.zip;..\lib\jgl3.1.0.jar;..\sqlj\lib\translator.zip;..\aurora\lib\aurora_client.jar;..\aurora\lib\jasper.zip;..\ aurora\lib\vbjtools.jar;..\aurora\lib\vbjorb.jar;..\aurora\lib\vbjapp.jar;..\aurora\lib\vbj30ssl.jar;..\aurora\lib\aurora.zip;..\jdbc\lib\oracle8.1.5\classes111.zip;..\lib\javax_ej b.zip;..\lib\jndi.jar;..\lib\netasst.jar;..\lib\jsp2java.jar;..\lib\jsdk.jar;..\lib\oasdeploy.jar;..\lib\f60all.jar;..\lib\jbodatum.zip;..\lib\jbomt.zip;..\lib\jbovb.zip;..\lib\jbo o8i.zip;..\lib\jboejb.jar;..\lib\jbodt.zip;..\lib\jbotester.zip;..\lib\xmlparserv2.jar;..\lib\dacf.zip;..\lib\dacfdt.zip;..\infobus\lib\infobus.jar;..\lib\LW_pfjbean.jar
    Modified row:
    [Java_Global]
    IDEClassPath=..\lib\jdeveloper.zip;..\lib\jdev-rt.zip;..\lib\jbcl2.0.zip;..\lib\jgl3.1.0.jar;..\sqlj\lib\translator.zip;..\aurora\lib\aurora_client.jar;..\aurora\lib\jasper.zip;..\ aurora\lib\vbjtools.jar;..\aurora\lib\vbjorb.jar;..\aurora\lib\vbjapp.jar;..\aurora\lib\vbj30ssl.jar;..\aurora\lib\aurora.zip;..\jdbc\lib\oracle8.0.5\classes111.zip;..\lib\javax_ej b.zip;..\lib\jndi.jar;..\lib\netasst.jar;..\lib\jsp2java.jar;..\lib\jsdk.jar;..\lib\oasdeploy.jar;..\lib\f60all.jar;..\lib\jbodatum.zip;..\lib\jbomt.zip;..\lib\jbovb.zip;..\lib\jbo o8i.zip;..\lib\jboejb.jar;..\lib\jbodt.zip;..\lib\jbotester.zip;..\lib\xmlparserv2.jar;..\lib\dacf.zip;..\lib\dacfdt.zip;..\infobus\lib\infobus.jar;..\lib\LW_pfjbean.jar
    I am sure that the actual ..\jdbc\.. \lib\classes111.zip (or classes12 in java2) responsible for the ocijdbc8/oci805jdbc etc calling.
    The OracleDriver.class contains the name of the dll without the .dll extension.
    With this parameter is called the system.loadLibrary method!
    Importent:
    USE THE APPROPIATE ORACLE CLIENT (appropiate ocijdbc.dll)!
    USE THE APPROPIATE classes111.zip,
    (classes12.zip)!
    Manual setup using sqlj from DOS promt:
    set CLASSPATH=.;c:\orawin95\LITE\CLASSES\OLJDK11.JAR;c:\orawin95\LITE\CLASSES\OLITE40.JAR;d:\jdev\sqlj\lib\runtime.zip;d:\jdev\sqlj\lib\translator.zip;d:\jdev\jdbc\lib\oracle8.0.5\clas ses111.zip;d:\jdev\sqlj\lib\translator.zip;d:\jdev\java\lib\classes.zip;d:\jdev\jdbc\lib\oracle8.1.5\nls_charset11.zip;c:\orawin95\bin
    PATH C:\ORAWIN95\bin;d:\mgwin\bin;d:\bcc55;d:\bcc55\bin;d:\TC;C:\WINDOWS;C:\WINDOWS\COMMAND;C:\WNETFIN;C:\PROGRA~1\PERSON~1;C:\PSM;C:\WINDOWS\UTILS;d:\jdev\java\bin;d:\jdev\bin;d:\jdev\ jdbc\lib
    Good Luck!
    Otto
    [email protected]
    [email protected]
    null

    nstall the Oracle8i client on your machine, and make sure that
    <ORACLE_HOME> is set correctly. (From The Tools->IDE Options and click on the
    environment TAB ) and select an ORACLE_HOME from the List Box)
    or
    Exit from JDeveloper and edit the jdeveloper.ini file which is located in
    <J Developer Home>\bin.
    Modify the entries:
    JLP=-Djava.library.path=.;%JAVA_ROOT%\bin;%JAVA_ROOT%\jre\bin
    SLP=-Dsun.boot.library.path=.;%JAVA_ROOT%\bin;%JAVA_ROOT%\jre\bin
    to include the Oracle Bin directory. For example:
    JLP=-Djava.library.path=.;%JAVA_ROOT%\bin;%JAVA_ROOT%\jre\bin;D:\ORA8i\BIN
    SLP=-Dsun.boot.library.path=.;%JAVA_ROOT%\bin;%JAVA_ROOT%\jre\bin;D:\ORA8i\BIN

  • UnsatisfiedLinkError: no awt in java.library.path

    Hi all,
    UnsatisfiedLinkError: no awt in java.library.path
    I get the above error when I try to start either the WebLogic server
    or the Console from the command line. I'm using JDK1.2 on Solaris 2.6
    with the WebLogic Server 4.5.1 evaluation program. The error leads me to
    believe that the JDK_HOME property is not correctly set. ALL info on the
    site pertaining to the JDK_HOME property applies to Windows, and I have
    not seen anything about this property in a Solaris environment.
    Currently my JDK_HOME property points to the directory where all of the
    binaries are located, rather than where the rte.jar file is located.
    Can anyone who has successfully run the evaluation on Solaris with
    JDK 1.2 give some pointers as to how your environment settings are set?
    Thanks!
    BP

    Hi Brian,
    Your JDK_HOME should point to your java directory, NOT to the bin directory.
    Your PATH however should have the bin directory appended to it if you want
    to be able to run java without having to explicitly specify its full path.
    Brian Ploetz <[email protected]> wrote in message
    news:[email protected]..
    Hi all,
    UnsatisfiedLinkError: no awt in java.library.path
    I get the above error when I try to start either the WebLogic server
    or the Console from the command line. I'm using JDK1.2 on Solaris 2.6
    with the WebLogic Server 4.5.1 evaluation program. The error leads me to
    believe that the JDK_HOME property is not correctly set. ALL info on the
    site pertaining to the JDK_HOME property applies to Windows, and I have
    not seen anything about this property in a Solaris environment.
    Currently my JDK_HOME property points to the directory where all of the
    binaries are located, rather than where the rte.jar file is located.
    Can anyone who has successfully run the evaluation on Solaris with
    JDK 1.2 give some pointers as to how your environment settings are set?
    Thanks!
    BP

  • "no ocijdbc11 in java.library.path" error when connecting a TNS database co

    Hi
    "no ocijdbc11 in java.library.path" error when connecting a TNS database connection
    I have the same problem 'error code' when testing the connection to a database although I have an APEX db that connects without a problem.
    I have re downloaded jre & SQL Developer just to ensure all files are where they should be with no luck.
    I've also tried most of the suggestions in various threads.
    Does anyone know what exactly causes this error?
    eg; should I be looking for a file called 'ocijdbc11' & put it into the 'java.library.path' path?
    Can anyone explain to a newbie at db connections what I should do?
    I'm using the 'thin' client as the checkbox is clear & I don't know what path to enter into the correct file to make this work??
    This is & needs to connect as a TNS connection & was working fine until recently, the only change I can think of is a move of files from the 'C' drive but I thought redownloading SQL Developer would slove this.
    Thanks

    When you reinstalled SQL Developer, did you install into a new directory (ie rename or delete the old directory first)?
    I don't know if system setup contains directory references (which might be invalid after moving the location of SQL Developer). Does renaming your system2.1.1.64.45 directory (in C:\Documents and Settings\username\Application Data\SQL Developer) help? Note that your connections are in the connections.xml file in the o.jdeveloper.db.connection.11.1.1.2.36.55.30 subdirectory of system2.1.1.64.45 - you will either need to export connections before renaming and then import again after or copy this file to test if you can connect.
    Finally, the TNS Names directory preference is just a way of telling SQL Developer where to look for the tnsnames.ora file, rather than just assuming it will pick the right one. If you go to create a new connection, do you get the right list of TNS aliases? If not, then set this preference to the directory where the right tnsnames.ora file lives.
    theFurryOne

  • No jacob in java.library.path.doc

    I am running Developer Suite 10g on Windows XP. I have the OC4J instance running. I am using WebUtil and trying to use the OLE2 stuff. When I execute the code, nothing happens (see errors below) – except all my buttons go dead. I checked, and it does not seem that I am getting the Jacob, JNIsharedstubs, and the d2kwut60 DLLs to download to my Jinitiator directory. I removed and reinstalled Jinitiator, but still nothing. If I manually copy the DLLs to the directory, I at least begin to get OLE2 errors. I read the message board (and modified “Word.Basic” to “Word.Application”) and read the WebUtil manual and reviewed my set-up. Any suggestions are much appreciated.
    Java console:
    Oracle JInitiator: Version 1.3.1.17
    Using JRE version 1.3.1.17-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\don4
    Proxy Configuration: Automatic Proxy Configuration
    JAR cache enabled
    Location: C:\Documents and Settings\don4\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Downloading http://d26.corp.don.com:8889/forms90/java/f90all_jinit.jar to JAR cache
    Downloading http://d26.corp.don.com:8889/forms90/webutil/webutil.jar to JAR cache
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    Downloading http://d26.corp.don.com:8889/forms90/webutil/jacob.jar to JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 9.0.4.0
    2004-Jun-18 14:33:28.903 WUI[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Jun-18 14:33:28.953 WUF[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Jun-18 14:33:28.983 WUH[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Jun-18 14:33:29.13 WUS[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Jun-18 14:33:29.53 WUT[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Jun-18 14:33:29.214 WUO[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Jun-18 14:33:29.254 WUL[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Jun-18 14:33:29.284 WUB[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Jun-18 14:33:34.745 WUT[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.jacob.dll
    2004-Jun-18 14:33:34.785 WUT[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2004-Jun-18 14:33:34.815 WUT[loadSettings()] Local properties file loaded
    2004-Jun-18 14:33:34.855 WUT[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.JNIsharedstubs.dll
    2004-Jun-18 14:33:34.895 WUT[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2004-Jun-18 14:33:34.926 WUT[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.d2kwut60.dll
    2004-Jun-18 14:33:34.976 WUT[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2004-Jun-18 14:33:49.722 WUF[setProperty()] Setting property WUF_FILENAME to C:\temp
    2004-Jun-18 14:33:49.722 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 1
    2004-Jun-18 14:33:49.722 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2004-Jun-18 14:33:49.742 WUF[setProperty()] Setting property WUF_FILENAME to C:\temp
    2004-Jun-18 14:33:49.742 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 4
    2004-Jun-18 14:33:49.742 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2004-Jun-18 14:33:49.752 WUF[setProperty()] Setting property WUF_GFN_DIRNAME to C:\temp
    2004-Jun-18 14:33:49.772 WUF[setProperty()] Setting property WUF_FILENAME to *.csv
    2004-Jun-18 14:33:49.772 WUF[setProperty()] Setting property WUF_FILTER to All CSV Files (*.csv)|*.csv|
    2004-Jun-18 14:33:49.792 WUF[setProperty()] Setting property WUF_GFN_MESSAGE to Open Interface Import File
    2004-Jun-18 14:33:49.822 WUF[setProperty()] Setting property WUF_GFN_MULTISELECT to FALSE
    2004-Jun-18 14:33:49.822 WUF[getProperty()] Getting property WUF_GFN_OPENFILE
    2004-Jun-18 14:33:52.904 WUF[setProperty()] Setting property WUF_FILENAME to false
    2004-Jun-18 14:33:52.904 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 4
    2004-Jun-18 14:33:52.904 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2004-Jun-18 14:33:52.914 WUF[setProperty()] Setting property WUF_FILENAME to false
    2004-Jun-18 14:33:52.914 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 1
    2004-Jun-18 14:33:52.914 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2004-Jun-18 14:33:52.924 WUF[setProperty()] Setting property WUF_FILENAME to false
    2004-Jun-18 14:33:52.924 WUF[setProperty()] Setting property WUF_FILE_ATTRIBUTE to 2
    2004-Jun-18 14:33:52.934 WUF[getProperty()] Getting property WUF_FILE_ATTRIBUTE
    2004-Jun-18 14:34:00.212 WUO[setProperty()] Setting property WUO_OLE2_OBJNAME to WORD.Basic
    2004-Jun-18 14:34:00.222 WUO[getProperty()] Getting property WUO_OLE2_CREATE_OBJ
    Exception occurred during event dispatching:
    java.lang.UnsatisfiedLinkError: no jacob in java.library.path
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.loadLibrary0(Unknown Source)
    at java.lang.System.loadLibrary(Unknown Source)
    at com.jacob.com.Dispatch.<clinit>(Dispatch.java)
    at oracle.forms.webutil.ole.OleFunctions.create_obj(OleFunctions.java:513)
    at oracle.forms.webutil.ole.OleFunctions.getProperty(OleFunctions.java:218)
    at oracle.forms.handler.UICommon.onGet(Unknown Source)
    at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
    at oracle.forms.engine.Runform.processMessage(Unknown Source)
    at oracle.forms.engine.Runform.processSet(Unknown Source)
    at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
    at oracle.forms.engine.Runform.onMessage(Unknown Source)
    at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
    at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
    at oracle.ewt.lwAWT.LWComponent.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.run(Unknown Source)
    J:\WebUtil\server\WebUtil.cfg file contains:
    install.syslib.location=http://d26.corp.don.com:8889/forms90/webutil
    install.syslib.0.7.1=jacob.dll|94208|1.0|true
    install.syslib.0.9.1=JNIsharedstubs.dll|65582|1.0|true
    install.syslib.0.9.2=d2kwut60.dll|192512|1.0|true
    C:\Oracle\10iDS2\forms90\server\default.env contains:
    ORACLE_HOME=c:\oracle\10iDS2
    FORMS90_PATH=c:\oracle\10iDS2\cgenf61\admin;c:\oracle\10iDS2\forms90;c:\ipms\forms10g;j:\WebUtil\forms;j:\WebUtil\lib;j:\bin10g
    PATH=c:\oracle\10iDS2\bin;c:\oracle\10iDS2\jdk\jre\bin\client
    FORMS90=c:\oracle\10iDS2\forms90
    WEBUTIL_CONFIG=j:\webutil\server\webutil.cfg
    CLASSPATH=j:\webutil\lib\webutil.jar;j:\webutil\lib\jacob.jar;c:\oracle\10iDS2\jdk\jre\lib\rt.jar;c:\oracle\10iDS2\j2ee\forms90app\forms90web\WEB-INF\lib\f90srv.jar;c:\oracle\10iDS2\jlib\repository.jar;c:\oracle\10iDS2\jlib\ldapjclnt9.jar;c:\oracle\10iDS2\jlib\debugger.jar;c:\oracle\10iDS2\jlib\ewt3.jar;c:\oracle\10iDS2\jlib\share.jar;c:\oracle\10iDS2\jlib\utj90.jar;c:\oracle\10iDS2\jlib\zrclient.jar;c:\oracle\10iDS2\reports\jlib\rwrun.jar;C:\Oracle\10iDS2\jdk\jre\bin\client\jvm.dll
    Orion-web.xml contains:
    <virtual-directory virtual-path="/webutil" real-path="j:\webutil\lib" />
    Forms90.conf contains:
    # Virtual path for webutil
    AliasMatch ^/forms90/webutil/(..*) "j:\webutil\lib/$1"
    Formsweb.cfg has all changes in one named section:
    [webutil]
    pageTitle=Oracle9iAS Forms Services - WebUtil
    webUtilArchive=/forms90/webutil/webutil.jar,/forms90/webutil/jacob.jar
    WebUtilLogging=all
    WebUtilLoggingDetail=detail
    WebUtilErrorMode=Alert
    baseHTMLjinitiator=j:\webutil\server\webutiljini.htm

    >
    Orion-web.xml contains:
    <virtual-directory virtual-path="/webutil"
    real-path="j:\webutil\lib" />
    Forms90.conf contains:
    # Virtual path for webutil
    AliasMatch ^/forms90/webutil/(..*)
    "j:\webutil\lib/$1"
    I'm not sure about 10G, but for 9ids this is definitely wrong (see famous page 6 of 49 WebUtil Manual). On 9ids you have to add the virtual directory in orion-web.xml only, not in forms90.conf. On 9ias it is vice verca.
    Hope this helps
    Gerald

  • Library path error

    package com.epic.hsm;
    public class HsmStatus {
         static { System.loadLibrary("mk2api"); }
         public void HsmSt(){
              //MK2API h= new MK2API();
         public static void main(String[] args) {
              new HsmStatus().HsmSt();
    //error i got is
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no mk2api in java.library.path
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
         at java.lang.Runtime.loadLibrary0(Runtime.java:823)
         at java.lang.System.loadLibrary(System.java:1030)
         at com.epic.hsm.HsmStatus.<clinit>(HsmStatus.java:5)
    How I can add mk2api into path? in fedora8
    pls Help
    kapila

    sorry
    package com.epic.hsm;
    public class HsmStatus {
    static { System.loadLibrary("libmk2api"); }
    public void HsmSt(){
    //MK2API h= new MK2API();
    System.out.println(System.getProperty("java.library.path"));
    public static void main(String[] args) {
    //System.out.println(args[0]);
    new HsmStatus().HsmSt();
    this is the my libmk2api.o file it is located in /opt/Eracom/lib
    but always error will come like this
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no libmk2api in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
    at java.lang.Runtime.loadLibrary0(Runtime.java:823)
    at java.lang.System.loadLibrary(System.java:1030)
    at com.epic.hsm.HsmStatus.(HsmStatus.java:6)
    In fact I set environment variable LD_LIBRARY_PAATH=/opt/Eracom/lib in the eclipse IDE
    and also checked it in java.library.path
    /usr/java/jdk1.6.0_04/jre/lib/i386/client:/usr/java/jdk1.6.0_04/jre/lib/i386:/usr/java/jdk1.6.0_04/jre/../lib/i386:/opt/Eracom/lib:/usr/lib/jvm/java-1.7.0-icedtea-1.7.0.0/jre/lib/i386/client::/usr/lib/jvm/java-1.7.0-icedtea-1.7.0.0/jre/lib/i386::/usr/lib/firefox-2.0.0.8:/usr/lib/firefox-2.0.0.8:/usr/java/packages/lib/i386:/lib:/usr/lib
    so I can found that lib folder in the path
    my project folder =/home/ntb/hsm
    what I can to do for this ?

  • PerfTimes : loadNativeLayer: loading jperflib failed. no jperflib in java.library.path

    I am having issues launching the ESR and ID of SAP PI7.4.   i am running Windows 7 32bit, latest chrome and Java 1.6.34.
    i get the following error in the Java Console:
    Could not launch from cache. Will try online mode. [Some of required resources are not cached.]
    PerfTimes : loadNativeLayer: loading jperflib failed. no jperflib in java.library.path
    <<< frog.jar: version 7.20.19 03/09/11 sap.theme: null >>>
    it was working last week, but due to incidents outside my control a system restore was done.  other people in other locations can access the system okay.
    I am running the same Version of Java as my colleagues, the only difference is my location.  i can also access the ESR via NWDS, however i do not get full functionality that i require in here.
    I have seen the other errors people are experiencing on SCN but that is during installation and not during runtime.  i have tried to apply the same time/date amendment but that has not resolved the issue.
    i have tried with different versions of IE.  i have tried regenerating the jnlps and that has not worked either.
    I have deleted all the downloaded ESR files and internet cache and that has not resolved the issue.
    Has anyone experienced this and knows of a solution/work around?

    I am now getting the following error:
    Java Web Start 10.45.2.18
    Using JRE version 1.7.0_45-b18 Java HotSpot(TM) Client VM
    User home directory = C:\Users\bneaves
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    m:   print memory usage
    o:   trigger logging
    p:   reload proxy configuration
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    0-5: set trace level to <n>
    Resource http://host.fqdn.com:50000/rep/start/graphics/SAP3232.gif has future expires: Tue May 06 18:36:28 BST 2014 update check skipped.
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.client.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.rb.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.rb.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.rb.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.rb.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.rb.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.rb.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/tenGenerics.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/tenGenerics.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/tenGenerics.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/tenGenerics.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/tenGenerics.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/tenGenerics.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.maestro.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.maestro.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.maestro.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.maestro.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.maestro.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.maestro.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.maestro.model.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.maestro.model.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.maestro.model.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.maestro.model.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.maestro.model.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.maestro.model.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.client.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.client.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.client.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.client.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.client.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.client.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.client.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.client.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.client.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.client.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.client.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.client.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.rb.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.rb.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.rb.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.rb.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.rb.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.rb.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xi.flib.lib_api.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xi.flib.lib_api.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xi.flib.lib_api.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xi.flib.lib_api.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xi.flib.lib_api.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xi.flib.lib_api.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.gui.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.gui.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.gui.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.gui.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.gui.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.gui.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.gui.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.gui.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.gui.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.gui.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.gui.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.gui.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.aii.utilxi.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ib.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.util.rb.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.util.rb.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.util.rb.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.util.rb.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.util.rb.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.util.rb.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~bl~guidgenerator~impl.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~bl~guidgenerator~impl.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~bl~guidgenerator~impl.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~bl~guidgenerator~impl.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~bl~guidgenerator~impl.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~bl~guidgenerator~impl.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~bl~guidgenerator~impl.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~bl~guidgenerator~impl.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~bl~guidgenerator~impl.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~bl~guidgenerator~impl.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~bl~guidgenerator~impl.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~bl~guidgenerator~impl.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~logging~java~impl.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~logging~java~impl.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~logging~java~impl.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~logging~java~impl.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~logging~java~impl.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~logging~java~impl.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~logging~java~impl.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~logging~java~impl.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~logging~java~impl.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~logging~java~impl.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~logging~java~impl.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~logging~java~impl.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.core.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.core.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/com.sap.xpi.ibrep.core.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~exception~impl.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~exception~impl.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~exception~impl.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~exception~impl.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~exception~impl.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~exception~impl.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~exception~impl.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~exception~impl.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~exception~impl.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~exception~impl.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~exception~impl.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/sap.com~tc~exception~impl.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/jperflib.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/jperflib.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/jperflib.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/jperflib.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/jperflib.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/jperflib.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/jperflib.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/jperflib.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/jperflib.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/jperflib.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/jperflib.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/jperflib.jar
    JNLPClassLoader: Finding library jperflib.dll
    PerfTimes : loadNativeLayer: loading jperflib failed. no jperflib in java.library.path
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/frog.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/frog.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/frog.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/frog.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/frog.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/frog.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/frog.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/frog.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/frog.jar
    Missing Application-Name: manifest attribute for: http://host.fqdn.com:50000/rep/repository/frog.jar
    Missing Permissions manifest attribute for: http://host.fqdn.com:50000/rep/repository/frog.jar
    Missing Codebase manifest attribute for: http://host.fqdn.com:50000/rep/repository/frog.jar
    <<< frog.jar: version 7.20.19 03/09/11 sap.theme: null >>>

  • Cannot change library path or name when configuring a library call function

    I cannot change the library path or name when configuring a library call.  I browse to the new location, click OK.  The new path appears  in the box.  I click OK to dismiss the configuration.  Then I re-open the configuration and the old path has magically appeared.  I wouldn;t care but I get a fatal error whenever I execute the call.  (Another VI with the same call but to a different library works fine.  So I am trying to get the failing call to use the one that works.)

    I am using version 7.1
    It turns out that everything works fine in LV 2010 but the customer doesn't have that rev.
    I am remotely debugging this using GoToMeeting.  Sounds weird, but I fell into that.  It works fine, I have a screen which looks exactly like the screen in the customers site.  I can do everything, albeit with a little time drag.  The thing is, I e-mailed the VI from his site to mine so that I could send it to you.  But it works fine here.  So the question is what could be different there that would cause this?
    The main problem that I am trying to solve is that when I run the VI, I get a message
    "Labview:  An exception occurred within the external code called by the Call Library Node.  This might have corrupted Labview's memory. Save any work to a new location and restart Labview"
    If I set the Library Node on my machine to the correct function, it runs without error.  It seems, however, to start with a different function and then I get the same error.  I would think that if there is a parameter mismatch that the library would return an error status, but this appears not to be the case.  (I did not write the library, HP (Agilent) did)  The function is correct at the customer's machine.

  • Shared library path

    I am trying to start the weblogic server 5.1 on my linux machine.
    After I execute the startWebLogic.sh file, the following error appears
    -bash: Dont know how to set the shared library path for Linux
    bash: /usr/java/bin/java: No such file or directory
    How do I fix this ?
    Thanks
    Nikhil

    hi.
    find out what 'uname -s' returns on your system. In earlier WLS5.1
    scripts the script looked for "LINUX" but uname -s (as called in the
    script) returns "Linux" (note the case difference). I modified my script
    from:
    LINUX)
    to
    Linux|LINUX
    I also see that you need to modify your JAVA_HOME variable at the top of
    the script to the correct location of your JDK installation.
    Hope this helps,
    Michael
    Nikhil wrote:
    I am trying to start the weblogic server 5.1 on my linux machine.
    After I execute the startWebLogic.sh file, the following error appears
    -bash: Dont know how to set the shared library path for Linux
    bash: /usr/java/bin/java: No such file or directory
    How do I fix this ?
    Thanks
    Nikhil--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Install FB 2 on vista got java.lang.UnsatisfiedLinkError: no swt-win32-3139 in java.library.path

    The following is a re-posting of a thread regarding
    UnsatisfiedLinkError issue. One author posted the workaround below.
    That workaround was posted multiple times by mistake, and the
    author asked Moderator to delete the extra posting.
    An operating error caused the topic to be deleted instead of
    the individual messages. I am reposting the content of the thread,
    and apologize to the authors who participated in this thread
    before.
    Workaround :
    I experienced the same issue when I tried to install Flex on
    a new Vista system. Here's how I corrected it:
    1) Navigate to C:\Program Files\Adobe\Flex Builder 2\plugins
    2) Look for the file
    "org.eclipse.swt.win32.win32.x86_3.1.2.jar". You will need to open
    this in a file compression program such as WinRar or WinZip. If you
    don't have such a program you can try:
    2a) Copy (make sure you COPY, not MOVE) the file to another
    location, such as your desktop.
    2b) Rename the file with a ".zip" extension (i.e. change
    ".jar" to ".zip"). NOTE: You will not see the file extension if
    your system is configured to hide extensions. In this case, open a
    Windows Explorer window ("My Computer", etc.) and press the "Alt"
    key. A menu bar will appear. Select "Tools -> Folder Options".
    Select the "View" tab, and look for "Hide extensions for known file
    types". Uncheck the box, then click OK.
    2c) You should now be able to right-click the file and use
    Vista's built-in .zip extraction to extract the contents to a
    folder.
    3) Within the org.eclipse.swt.win32.win32.x86_3.1.2.jar file
    is a file called "swt-win32-3139.dll". Copy this file to
    C:\Windows\System32\ (You will be asked for a confirmation when you
    do this).
    Once that is done, Flex should run correctly. You can now
    delete the copy of the .jar file that you made, as well as the
    folder created by Vista's .zip extraction (if applicable).
    Hope this helps!
    Error :
    !SESSION 2007-04-20 10:16:39.138
    eclipse.buildId=unknown java.version=1.4.2_12 java.vendor=Sun
    Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86,
    WS=win32, NL=en_GB Command-line arguments: -os win32 -ws win32
    -arch x86
    !ENTRY org.eclipse.update.configurator 2007-04-20 10:16:40.18
    !MESSAGE Cannot backup current configuration !ENTRY
    org.eclipse.update.configurator 2007-04-20 10:16:40.42
    !MESSAGE Could not rename configuration temp file
    !ENTRY org.eclipse.osgi 2007-04-20 10:16:40.938
    !MESSAGE Application error
    !STACK 1 java.lang.UnsatisfiedLinkError: no swt-win32-3139 in
    java.library.path at java.lang.ClassLoader.loadLibrary(Unknown
    Source) at java.lang.Runtime.loadLibrary0(Unknown Source) at
    java.lang.System.loadLibrary(Unknown Source) at
    org.eclipse.swt.internal.Library.loadLibrary(Library.java:123) at
    org.eclipse.swt.internal.win32.OS.<clinit>(OS.java:18) at
    org.eclipse.swt.widgets.Display.<clinit>(Display.java:125) at
    org.eclipse.ui.internal.Workbench.createDisplay(Workbench.java:381)
    at org.eclipse.ui.PlatformUI.createDisplay(PlatformUI.java:155) at
    com.adobe.flexbuilder.standalone.FlexBuilderApplication.run(FlexBuilderApplication.java:4 5)
    at
    org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at
    sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at
    java.lang.reflect.Method.invoke(Unknown Source) at
    org.eclipse.core.launcher.Main.invokeFramework(Main.java:334) at
    org.eclipse.core.launcher.Main.basicRun(Main.java:278) at
    org.eclipse.core.launcher.Main.run(Main.java:973) at
    org.eclipse.core.launcher.Main.main(Main.java:948) !ENTRY
    org.eclipse.osgi 2007-04-20 10:16:40.948 !MESSAGE Bundle
    update@plugins/com.adobe.flexbuilder.debug.e32_2.0.155577/ [70] was
    not resolved. !SUBENTRY 1 org.eclipse.osgi 2007-04-20 10:16:40.948
    !MESSAGE Missing required bundle
    org.eclipse.debug.ui_[3.2.0,99.0.0).</

    Unfortunately I don't have the
    "org.eclipse.swt.win32.win32.x86_3.1.2.jar" file. On my computer
    the folder is not set up the same way (C:\Program Files\Adobe\Flex
    Builder 2\plugins) instead it is set up as (C:\Program
    Files\Adobe\Flex Builder 2\metadata\plugins) but I've looked in
    everything and that file just isn't in there. I've re downloaded it
    twice. Still not there. Is there anything else i can do.

  • Java.lang.UnsatisfiedLinkError: no swt-win32-3062 in java.library.path

    Hi
    I have installed JasperAssistant in eclipse 3.2.2. But I am getting the following the error when I am trying to view the reports through the application. This error found only after the installation. Earlier I used to view the reports through the Eclipse.
    Exception in thread "Thread-28" java.lang.UnsatisfiedLinkError: no swt-win32-3062 in java.library.path
         at java.lang.ClassLoader.loadLibrary(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at org.eclipse.swt.internal.Library.loadLibrary(Library.java:100)
         at org.eclipse.swt.internal.win32.OS.<clinit>(OS.java:18)
         at org.eclipse.swt.graphics.Device.init(Device.java:564)
         at org.eclipse.swt.widgets.Display.init(Display.java:1780)
         at org.eclipse.swt.graphics.Device.<init>(Device.java:100)
         at org.eclipse.swt.widgets.Display.<init>(Display.java:355)
         at org.eclipse.swt.widgets.Display.<init>(Display.java:351)
         at com.austco.client.gui.reports.ReportThread.run(ReportThread.java:40)
         at java.lang.Thread.run(Unknown Source)
    Could you please help me asap.
    I tried some of the alternatives found in the web.
    1. Changed the VM arguments: -Djava.library.path=${system:ECLIPSE_HOME}/plugins/org.eclipse.swt.win32_3.0.1/os/win32/x86
    2. Set the environment variable PATH to the location of the dll.
    But this doesn't work.
    Your help is very much appreciated. Thanks in advance.

    Maybe you can report this to the makers of JasperAssistant or Eclipse. I think they are in a better position to help you since they made that plugin.

Maybe you are looking for

  • How to turn on confirm delete message in iPhoto

    i wanted to find out how I can turn on that feature that asks you to confirm to delete a photo before sending it to the trash.  It was doing it in the beginning, but then I accidently clicked do not ask me again and I can't seem to find where I can t

  • Analyzer 7.2.1 and Reports 7.2.1 on the same machine

    Hi all,We have this environment on the reporting server:-     OS 2003 server SP1-     Analyzer 7.2.1, repository – Oracle 10g-     Reports 7.2.1, repository – Oracle 10g-     Web Server: Websphere Express 5.1On another server is installed Essbase 7.1

  • Overview of Oracle Grid Control components

    Hello, We want to look at Oracle Grid Control feature. Can anyone make clear to us what components need to be installed where and how do the components communicate with eachother. I am talking about Enterprise Manager, agents, databases etc. Preferab

  • JSF/MyFaces tree navigation

    Hi All, i am writing a web-app that renders a tree style menu on the left handside of the page, and on the right hand side will be rendered the page that the clicked tree node is mapped to. What is the best component with which to implement the latte

  • Mac OS "not yet set" after time machine restore.

    Getting the grey screen. When i boot in verbose it says that the Mac OS "is not yet set" but everythign else seems normal. Except for the fact its not booting. Some one please help !