WriteDomain() UnsatisfiedLinkError in 10.3.1 on WinXP

This code runs on wls 10.3. It fails on 10.3.1.
AND only when this code is executed via the ant task.
This code runs successfully if manually typed-in in WLST.
The error is indicating a native-language def for the method
is not being found. What steps must I take to resolve this?
Here is the script I use to run the task, the code and the ERROR:
@echo off
call "C:\wls\wlserver_10.3\server\bin\setWLSEnv.cmd"
call "C:\wls\modules\org.apache.ant_1.7.0\bin\ant" -f build.xml -emacs testIt
<taskdef name="wlst" classname="weblogic.ant.taskdefs.management.WLSTTask"
classpath="${env.WL_HOME}/server/lib/weblogic.jar"/>
<wlst>
<script>
templ='C:\\wls\\wlserver_10.3\\common\\templates\\domains\\wls.jar'
readTemplate(templ)
cd('/Security/base_domain/User/weblogic')
set('Password','1weblogic')
setOption('JavaHome', 'C:\\wlsjdk160_11')
print 'WRITING data'
writeDomain('C:\\wls\\user_projects\\domains\\mepA')
print 'CLOSE IT'
closeTemplate()
</script>
</wlst>
WRITING data
Exception in thread "Thread-3" java.lang.UnsatisfiedLinkError: com.bea.plateng.common.jni.JNIUtil.getEnvVariable(Ljava/lang/String;)Ljava/lang/String;
at com.bea.plateng.common.jni.JNIUtil.getEnvVariable(Native Method)
at com.bea.plateng.domain.StartMenu.create(StartMenu.java:82)
at com.bea.plateng.domain.StartMenu.create(StartMenu.java:64)
at com.bea.plateng.domain.DomainGenerator.generate(DomainGenerator.java:486)
at com.bea.plateng.domain.script.ScriptExecutor$2.run(ScriptExecutor.java:2936)

With further testing this is definitely a bug with writeDomain, wls-10.3.1's wlst anttask and ant 1.7.0.
because this all works in wls-10.3 and ant 1.6.5.
I move the script code into a python file. I created the cmd script, wlst.cmd.
@echo off
SETLOCAL
call "%WL_HOME%\server\bin\setWLSEnv.cmd"
java weblogic.WLST %*
ENDLOCAL
I ran it from the cmd shell with the file and it ran successfully.
wlst.cmd test.py
In my build.xml file I created an exec task that executed the cmd above and
it ran successfully as well.
<exec dir="${basedir}" executable="cmd">
<arg line="/c wlst.cmd test.py"/>
</exec>
In my build.xml file I created a wlst task to process the file. It fails with the UnsatisfiedLinkError as did the embedded script code.
<wlst fileName="${basedir}/test.py"/>

Similar Messages

  • UnsatisfiedLinkError,   Load Library Successfully, Native Method Not Found

    I am using JNI to call a ".dll" file I made on windows.
    I got the exception:
    Exception in thread "Thread-0" java.lang.UnsatisfiedLinkError: com.aspectgaming.core.io.JniInnocore.Dpci.waitEvent(Ljava/lang/Object;J)I
    at com.aspectgaming.core.io.JniInnocore.Dpci.waitEvent(Native Method)
    at com.aspectgaming.core.io.JniInnocore.IDLPThread.run(IDLPThread.java:19)
    at java.lang.Thread.run(Unknown Source)
    The code for loading c dll library:
    URL url = Thread.currentThread().getContextClassLoader().getResource("");
    String baseClassPath = url.getPath();
    System.load(baseClassPath "com/aspectgaming/libjnidpcicore.dll");+
    The  ".dll"  file is already loaded,  because when I changed the dll file name to any other ones,  a "library file not found" exception will be caught.
    The problem is Dpci.waitEvent and all the native methods could not be found.
    I used a PE viewer to view the dll exports I got:
    Export table
    Characteristics=0, TimeDateStamp=1237366066, MajorVersion=0, MinorVersion=0, Name=36994, Base=1, NumberOfFunctions=9, NumberOfNames=9, AddressOfFunctions=36904, AddressOfNames=36940, AddressOfNameOrdinals=36976,
    TimeDateStamp:Wed Mar 18 16:47:46 GMT+08:00 2009
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_getEventName@12 (Ordinal: 1, Entry Point RVA: 147ah (5,242))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_getNumOfEvents@8 (Ordinal: 2, Entry Point RVA: 11a5h (4,517))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_getNumOfInputPorts@12 (Ordinal: 3, Entry Point RVA: 1789h (6,025))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_getSramSize@8 (Ordinal: 4, Entry Point RVA: 1190h (4,496))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_readEvent@12 (Ordinal: 5, Entry Point RVA: 11bah (4,538))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_readPort@12 (Ordinal: 6, Entry Point RVA: 17a7h (6,055))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_waitEvent@20 (Ordinal: 7, Entry Point RVA: 14b8h (5,304))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_waitIOPort@24 (Ordinal: 8, Entry Point RVA: 17dbh (6,107))
    Java_com_aspectgaming_core_io_JniInnocore_Dpci_writePort@16 (Ordinal: 9, Entry Point RVA: 182ch (6,188))
    The java class "Dpci" is exactly in this package : com.aspectgaming.core.io.JniInnocore;
    I compiled it by gcc on linux as a ".so" file and everything is working on linux.
    On windows I am compiling this by Mingw gcc.
    Here is the make file on Windows which is used by Mingw32-make:
    dpci_core:
    gcc -o ../../../java/com/aspectgaming/libjnidpcicore.dll -shared -IC:\jdk1.6.0_10\include -IC:\jdk1.6.0_10\include\win32 -I'D:\Program Files\Innocore Gaming Ltd\DirectPCI SDK & Run-time\include' dpci_core.c libdpci_static.lib
    dpci_core.c is my code file and  libdpci_static.lib is the library that my c dll will depend on.
    Any thought to this UnsatisfiedLinkError exception problem?
    Thanks!

    I recompile my codes under visual c++ 2008 express on Windows XP professional, and I have already got rid of this problem.
    But when I move the compiled java jar application to windows xp embedded edition, an exception will be caught:
    C:\AspectGamingCore>java -jar Aspect.jar
    Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\AspectGamingCore\l
    ib\libjnidpcicore.dll: This application has failed to start because the applicat
    ion configuration is incorrect. Reinstalling the application may fix this proble
    m
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(Unknown Source)
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.load0(Unknown Source)
    at java.lang.System.load(Unknown Source)
    at com.aspectgaming.core.io.JniInnocore.Dpci.loadLibraryOnWindows(Unknow
    n Source)
    at com.aspectgaming.core.io.JniInnocore.DpciTest.main(Unknown Source)
    I don't know if there is any compatible problem bewteen xp and xpe but one possible reason is that xpe may be lack of some dll files like msvcr90.dll.
    So I tried to compile the dll as static library in vc++2008, but this does not run even on my winxp professional:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\AspectGamingCore\l
    ib\libjnidpcicore.dll: %1 is not a valid Win32 application
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(Unknown Source)
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.load0(Unknown Source)
    at java.lang.System.load(Unknown Source)
    at com.aspectgaming.core.io.JniInnocore.Dpci.loadLibraryOnWindows(Unknow
    n Source)
    at com.aspectgaming.core.io.JniInnocore.DpciTest.main(Unknown Source)
    Could JNI call a c static library? Why it says "not a valid Win32 application"?

  • Java.lang.UnsatisfiedLinkError: no OCFPCSC1 ....

    Hi everyone,
    I'm trying to make Opencard work.I use a SCR335 USB Smart Card Reader(Microsystems) in WInXP SP2.
    I'm trying to execute the InsertCard demo sample. My opencard.properties file(which is located in C:\ocf\OCF1.2\components\sb-demo\src\demos\samples) containts the following lines:
    OpenCard.services = opencard.opt.util.PassThruCardServiceFactory
    OpenCard.terminals=com.ibm.opencard.terminal.pcsc10.Pcsc10CardTerminalFactoryWhen I run java demos.samples.InsertCard for the first time I got the following:
    java.lang.UnsatisfiedLinkError: no OCFPCSC1 in java.library.pathThen I followed DurangoVa's advice from http://forum.java.sun.com/thread.jspa?forumID=23&threadID=269402 and I dropped OCFPCSC1.DLL into my System32 directory.
    Then, tried again and I got the following:
    start use case: notification after card insertion
    please insert a card now!
    card was inserted
    finished use case: notification after card insertion
    ------------------------------------------------------------but my card is in my hands!!Which means not inserted!However the program says that some card was inserted..
    Does anybody knows what's wrong?
    In case this will help:
    When I execute java demos.samples.GetCardIDI get the following:
    start use case: get a card ID
    CardTerminalException:
    Pcsc10CardTerminal: PCSC Exception in method SCardGetStatusChange: error executing SCardGetStatusChange
    return code = 8010002e
    finished use case: get a card ID
    ------------------------------------------------------------

    I finaly found the solution to my problem in
    http://www.mail-archive.com/[email protected]/msg01715.html
    There were two drivers for card readers installed in the system but only one reader was connected...

  • Installation problem on WinXP

    I run the JMF window performance pack jmf-2_1_e-windows-i586 on WinXP. I got a error message titled 16 bit Windows Subsystem stating that C:\WINDOWS\SYSTEM32\AUTOEXEC.NT. The system file is not suitable for running MS-DOS and Microsoft Windows applications.
    Anyone can please help??
    Thanks a million

    1. Check if you have %systemroot%\system32\AUTOEXEC.NT. If its missing, copy paste below text into notepad, and save as %systemroot%\system32\AUTOEXEC.NT
    ---------- COPY FROM BELOW LINE ---------------------------
    @echo off
    REM AUTOEXEC.BAT is not used to initialize the MS-DOS environment.
    REM AUTOEXEC.NT is used to initialize the MS-DOS environment unless a
    REM different startup file is specified in an application's PIF.
    REM Install CD ROM extensions
    lh %SystemRoot%\system32\mscdexnt.exe
    REM Install network redirector (load before dosx.exe)
    lh %SystemRoot%\system32\redir
    REM Install DPMI support
    lh %SystemRoot%\system32\dosx
    ---------- COPY TILL ABOVE LINE ---------------------------
    2. Check if you have %systemroot%\system32\CONFIG.NT. If its missing, copy paste below text into notepad, and save as %systemroot%\system32\CONFIG.NT
    ---------- COPY FROM BELOW LINE ---------------------------
    dos=high, umb
    device=%SystemRoot%\system32\himem.sys
    files=40
    ---------- COPY TILL ABOVE LINE ---------------------------
    JMF installation spawns NTVDM.EXE. Please see below for more info on troubleshooting NTVDM issues.
    http://support.microsoft.com/kb/196453

  • Who has a find Open Path plug-in for CS4 Illustrator on WinXP and a close path also?

    Can anyone lead me to a plug-ins for finding open paths and closing them in CS4 on WinXP?
    Thanks

    Just a thought, but, have you tried using Live Paint?

  • WinXP-64 bit corrupts existing RAID array

    I've got an MSI K8N Neo2 Platinum motherboard running Win XP Pro SP2 on two 36 gig SATA Raptors.  Everything was working fine, but I wanted to try the 64 bit version of XP.  Grabbed an old 80 gig PATA drive and threw that in the case.  Unplugged the SATA drives so as not to risk messing with the existing working OS.  Installed the latest 1218 x64 beta and it worked well.
      The problem was that when I shut down and reconnected my old RAID array, windows wouldn't boot from it.  I lost everything and had to rebuild Windows from scratch.  So now I know to never unplug the SATA drives   
      Rebuilt WinXP on the RAID array and then tried rebooting with the PATA drive with the 64 bit OS.  Came up with the "drive needs checking" screen, and proceeds to "fix" the RAID array while ignoring my frantic pounding on the Logitech USB keyboard to stop.  Rebooted and yes, the new install was nuked.  Okay, since it's gone anyway, reboot to the 64 bit OS and make sure it's got the 64 bit RAID drivers installed.
      Reinstall WinXP on the RAID array, reboot to the 64 bit OS on the other drive and the same old scandisk comes and nukes it AGAIN!
      So now the PATA drive is sitting on the shelf again, unless someone here can suggest what is causing this problem.
    System Specs
    Athlon64 3500
    gig of PQI 3200 at 2-2-2-5 2.6
    2x36 gig Raptors on ports 3-4
    Plextor PX-716a DVD+_RW
    Visiontek X800 Pro.

    The first time you re-installed Win 32 on the raid that was a bit drastic. A repair ought to have done the job.
    The problem was probably that you disconnected the array but that's where the boot.ini was and that file needed to be modified to add the path to the Win64 install.
    Since you took out the array the Win64 install created a new boot.ini on the PATA drive. Even when you tell BIOS to boot off the array, Windows has a bad habit of looking at the IDE channels & using the boot.ini if it finds one there - but the file it found didn't point to the array of course.
    So basically if you already have Win32 on the array I would leave that array connected normally when installing Win64 on the PATA drive and all should be well.
    I've installed Win64 on the same array as my Win32 install and they co-exist happily. I reckon that's the most efficient way to do it. The main thing is to make separate partitions for Win32, Win64 and data files when you install Win32 in the first place. The two OSs can share the same data files, incuding stuff like email.

  • How to set the User rights to use DAQ/IMAQ in WinXP as general(=limited) user

    When I install Software, written in LabVIEW (build an executable/installer), as administrator it works fine. But when I switch over to a user account with limited rights (we are talking about WinXP) it will not run and gives error messages. It happend to me at two almost the same computers, one with a DAQ-board, and one with an IMAQ-board. (At the computer with IMAQ1411 -> I also checked MAX -> errors/no access.) What to do?
    Attachments:
    DAQ_example.JPG ‏9 KB
    IMAQ_example.JPG ‏15 KB

    Hello,
    I investigated the issue further. To work around this problem you should add write permissions to the C:\Program Files\National Instruments folder. Be sure that all subfolders and files are awarded write permission. This should solve your problems. eventually you could break it up to one file which must be set to write permission but by setting the whole folder to write permission you solve this problem for many other drivers to so you would not run into this everytime you use different hardware.
    Best regards,
    RikP
    Application Engineering
    National Instruments
    Rik Prins, CLD
    Applications Engineering Specialist Northern Europe, National Instruments
    Please tip your answer providers with kudos.
    Any attached Code is provided As Is. It has not been tested or validated as a product, for use in a deployed application or system,
    or for use in hazardous environments. You assume all risks for use of the Code and use of the Code is subject
    to the Sample Code License Terms which can be found at: http://ni.com/samplecodelicense

  • Google Analytics OPT-OUT Browser Add-on 0.9.6 doesn't retain OPT-OUT settings...never did really. Also JAVA now refuses to create updates for WinXP/FireFox.

    I use PaleMoon now trying to get rid of advertising sharks. I have WINXP still - need assistive-technology computer for pain so taking time on getting new computer.
    I have been severely sabotaged by advertising conglomerates selling my private information. They have no right -yet they do whatever they want. Anyhow...I've tried to OPT-OUT of EVERYTHING POSSIBLE. I've tried 5 places found. Google, NAI, DAA, & FIREFOX HELP said go to about:config was instructed to turn "from false to true" the "privacy.tracking.protection.enabled" .But I couldn't keep this setting because this also has to be set to false to use any saved log-on's to my accounts., and add-on AD BLOCK PLUS 2.6.7 when I was on Firefox & had some ticks and now it is disabled because it won't work with PaleMoon 25.2.1
    This case is about GOOGLE OPT-OUT. Starting here: http://www.google.com/settings/ads?hl=en&sig=ACi0TCgWymel0CNWxdcnEWPzWNs9wDd7cVQHxHsmtz4w30CAyHk7MqyzzZdGh3m6FpDaJsKmunTLEvJZY5LAm3h6gIdzE30L-Q
    There are 2 columns. The left one "ADS ON GOOGLE" NEVER RETAINS AFTER LOG-OFF. The right column "Google ads across the web
    " seems to retain sometimes - if I remember right it falls off after a period of time as opposed to after just LOGGING-OFF. Below the columns there are options, but I don't have a GOOGLE ACCOUNT.
    Also down there is this link: https://support.google.com/adsense/troubleshooter/1631343?hl=en ...you see the box with this: Advertising industry program participation
    Google is a participating member of groups that have developed industry privacy standards like the Ad-Choices icon for online advertising.
    Group Location
    Network Advertising Initiative United States
    Digital Advertising Alliance (DAA) United States
    European Digital Advertising Alliance Europe
    Digital Advertising Alliance of Canada Canada
    ....I clicked OPTED OUT FOR NAI on their link http://www.networkadvertising.org/
    ...I clicked OPTED OUT FOR DAA on their link http://www.aboutads.info/
    ...I clicked PROTECT MY CHOICES and downloaded the app.
    These 1st 2 links used to have the same trouble and didn't retain ANYTHING and wouldn't re OPT-OUT ANY UNTIL THEY WERE SATIATED - saying I didn't have 3rd party cookies allowed when I did - this took hours.
    I sent numerous trouble reports to them that they ignored - then I think I sent one to Firefox and it is much better but still not completely right. Today DAA retains 106 out of 122 and if I repeatedly RE-OPT-OUT successively I can get it to 121 out of 122 - never completely. (currently the one not taking is Accuen Inc. but it changes periodically - makes me think they set one up to take my info and then share it with all of them - lol )
    Same for NAI currently I started with 94 out of 96 - next re-OPTED-OUT got it to 95 out of 96 and no further and same co. Accuen Inc (accuenmedia.com ) wouldn't update.
    NOTE: I was copy/pasting the list of NON-OPT-OUT'S to them and my own document file to try and find trends/problems...now NAI programmers protected the list from being able to be COPIED AND PASTED!!! That's the opposite of being open and interested in making this work, right? Why would they want to allow us to OPT-OUT of their criminal espionage behavior...RIGHT? (lol) FYI: I recorded that the big one that was always retained before this one was...MEDIA MATH INC.
    MANY Opt-outs would drop off while on-line and ALL would drop-off once logged-off. Now it's retaining most once logged off - but it hasn't been long enough to tell if they'll fall back into their bad habits as they've done before...
    This has been going on forever for me - I've been reporting this malfunction since 2013.
    Of course I downloaded PROTECT MY CHOICES FOR FIREFOX via NAI AND DAA'S links ...http://www.aboutads.info/PMC#protect-your-choices-for-firefox ............they both go to the same place???.....PROTECT MY CHOICES http://www.aboutads.info/plugin/install/firefox....that seems odd...it's as if they are the same entity then. ABOUTADS is DAA'S WEBSITE. NAI'S IS NETWORKADVERTISING.ORG so why would NAI use DAA'S PROTECT MY CHOICES app?
    Lastely, I also requested that the COOKIES NAMES BE UNIFORMLY IDENTIFIABLE. All the OPT-OUT COOKIES that are to be forevermore retained on my computer and that I am to trust the EVERY FUNCTION OF - well they all have different COOKIE NAMES!! Most of the names you can not tell that they are OPT-OUT COOKIES!! - SO NOWWW They have created another problem.
    We can no longer just "DELETE ALL COOKIES".
    PLUS, we can no longer go through our cookies and delete individual ones that snuck through.
    Every one of the OPT-OUT COOKIES SHOULD SAY "OPT-OUT" IWITHIN THEIR NAME OF THEIR COOKIE - PERIOD. RIGHT? (LOL) For real. Why was this mess was allowed?
    REALLY IN MY OPINION THESE COMPANIES SHOULD BE BLOCKED AT THE LOCAL PHONE COMPANIES LEVEL - IN OUR SERVERS. We should not have to deal with them. Same thing with viruses, malware and such beasts. But I digress.
    In summary:
    1.)Google Analytics OPT-OUT Browser Add-on 0.9.6 doesn't retain OPT-OUT settings
    2.) JAVA refuses to create updates for WinXP/FireFox/PaleMoon.
    3.) DAA & NAI still don't retain ALL OPT-OUT settings and never completely OPT-OUT all companies.
    4.) OPT-OUT cookies should be uniformly names with the words OPT-OUT in their titles.
    5.) Ad Block Plus 25.6.7 doesn't work for Pale Moon and there is no alternative - (didn't work great in FireFox)
    Right now I'm mainly interested in #1)retaining my GOOGLE OPT-OUTS while on line AND while logged off since it is attacking my computer and steeling all the speed until it freezes my keyboard.
    Currently I am trying to remember to run through 3. OPT-OUTS every time I log on.
    Thanks so much!

    hello, palemoon's support forums are here: http://forum.palemoon.org/

  • How do I use the WinXP bottle in Crossover Mac?

    I'm using Crossover Mac to run Windows apps on my Mac. I'm using the default win98 bottle, but I've ran into an app that requires WinXP to install. So I create a new bottle that is WinXP, and when it's done, I install my app in that new, winxp bottle. But, the installation appears as though it's still running in win98 (and because the installation tells me it's not WinXP, as well).
    How do I properly use the WinXP bottle so I can install my WinXP-only app?
    Thanks in advance!

    It would appear that Gary has already done that.
    I tried it out on Quicken, 2004 installed in the Win98 bottle but 2007 needs XP. Once in Crossover you select "Manage Bottles" or something like that. Once there you can set the XP bottle to be your default bottle and then try to install your program. OR you can select the XP bottle and choose to install program.
    Good luck
    Greg

  • 9i installation problem on WinXP Professional

    I'm installing Oracle9i on WinXP Professional. The agent
    configuration assistant fails when installing and gives the following:
    Parameter "orahome" = d:\oracle\oracle9i
    Parameter "nodeinfo" = NO_VALUE
    Agent Service Failed
    Any idea what's causing it and how to solve it?

    OK, I have the same problem.
    As a result I don't have a tnsnames.ora file and am trying to config. my ora files.
    i'll paste my current situation below:
    These are questions that i have and I'll copy the
    files below and write my questions above the file.
    this is the error when logging into sql plus with
    scott/tiger and system/manager.
    this is the tnsname.ora file. I had to write it from
    scratch because it wasn't generated and later the #
    Comments were added by Oracle at some point later when
    it was generated during some configuring.
    I'm not sure if targis is my Host. During the process
    the listener file created it so I'm going with it as
    my host.
    I'm including the service name as targis also. i
    think the service name is the global database name so
    i don't think its correct but noticed a similar
    pattern in a fourm.
    How do you find out what the service name is???
    Here is a link:
    http://download-west.oracle.com/docs/cd/B10501_01/network.920/a96580/namingcf.htm#448070
    # TNSNAMES.ORA Network Configuration File:
    C:\OraHome1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    TARGIS =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = targis)(PORT
    = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = targis)
    This is my listener.ora file. I added the global
    db_name part after seeing an example. I'm not sure it
    belongs there and once again am not sure about the
    targis part.
    How do you find out what the GLOBAL_DBNAME should
    equal?.
    # LISTENER.ORA Network Configuration File:
    C:\OraHome1\network\admin\listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST =
    targis)(PORT = 1521))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (GLOBAL_DBNAME = targis)     
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\OraHome1)
    (PROGRAM = extproc)
    This is the sqlnet.ora file. I added the names
    default part out of seeing it in another example and
    once again am not sure about the targis part.
    (NAMES.DEFAULT_DOMAIN = targis)
    How do you know what the default domain is?.
    # SQLNET.ORA Network Configuration File:
    C:\OraHome1\network\admin\sqlnet.ora
    # Generated by Oracle configuration tools.
    SQLNET.AUTHENTICATION_SERVICES= (NTS)
    NAMES.DEFAULT_DOMAIN = targis
    NAMES.DIRECTORY_PATH= (LDAP, ONAMES, TNSNAMES,
    HOSTNAME)

  • Problem on WinXP / Labview 6.1 with VISA (serial port)

    There is a problem on WinXP / Labview 6.1 with VISA which i use to poll the state lines of the serial port. The only functions that i use are "VISA Open", "Find Resource", line state properties and "VISA close".
    On my own machine (WinME) it works fine as a standalone application (with runtime engine in the same direction), even if i rename the Labview directory so that Labview is not found.
    From my VXIpnp directory i deleted all but these files:
    directory "Win95",
    subdirectory "Bin" containing "NiViAsrl.dll",
    subdirectory "NIvisa" containing "visaconf.dll".
    When shipping this to WinXP (and copying "VXIpnp" to the root directory), the serial port was not found, so i renamed the direction "Win95" to "
    WinNT", but this did not work also.
    I installed the VISA server, although it seems not to be required -- no result.
    Final question:
    What must i do for distributing the program as a standalone application for all windows platforms?

    Hey Joachim,
    In order to create an installer that includes the VISA Run-time engine for serial IO you will have to purchase LabVIEW 7.x. See screen shot. This packages a small compact version of the run-time that can only be used for serial, but it takes up much less space. The installer that I created has my application, the LV Run-time, and the VISA run-time and it is about 26 MB.
    That is much smaller than if I had to include the 32 MB LV 7.1 run-time and the 14 MB VISA run-time separately. It would have been even smaller if I would have uncheck some of the items that I wasn't using.
    -Josh
    Attachments:
    advanced.JPG ‏31 KB

  • Installing Oracle 10g Grid Control on Winxp

    Hi All,
    I am facing a problem while installing Grid controls on Winxp. The installation completes everytime but it just hangs when configuring componenet Java Security.
    Do you have any idea how can I get rid of this. I tried running using configtools from command prompt but it seems the same problem, it hangs...I am trying first time on Windows system but its never install....
    Thanks
    Namit Sehgal

    Don't you get some details on the screen as to what exactly is being run? If not check the logs and post the error here.

  • HELP! k7t266 pro2-u winxp install

    Hi,
    I have a problem with installation of winXP SP1 on my computer. First i got a blue screen in the first step of installation (windows loads drivers, then freezes).  It said that acpi.sys is the problem. I disabled it and then the problem was irq not less... . Then i disabled
    internal cache,  system bios cacheable and shadowing options and installation started but the computer was too slow ( it took about an hour to copy the files on hard disk). After the installation was finished i put back the fields internal cache to writeback and c00 32k shadow to cached and left system bios cacheable on disabled ( i read in the manual that it might be a reason for system hangups) to speed it up.  For a while it seemed like it was working ok, i installed the drivers, software... but  tomorrow everything up. windows started to freeze when i tried to encode mp3's from audio cd's, when i tried to install new sofware...
    I dont know what to do and don't want to disable   internal cache because of the huge system slowdown...
    Can anyone help !!!
    my config is
    amd athlon xp 1800+
    microstar  k7t266 pro2-u with lan
    256mb kingston 266 ddr
    maxtor 40gb ata133
    teac w540e writer
    nvidia g-force 2 mx400 64mb

    Quote
    Hi!
    What can your PSU provide in terms of ampères?
    Load BIOS setup defaults. Open case.
    Have the HDD and the CDRW on different IDE channels and cables, with both as Master respectively at the end of the cable.
    Install VIA 4in1 drivers.
    When everything works, make proper BIOS adjustments.
    Best wishes, and good night!
    Can't provide the data about my PSU because i'm not at home right now.
    I will do it tomorow.
    Cables are already set up like that.
    Thank you

  • Oracle 11g for WinXP VirtualMachine install problem

    Hi!
    I have problem with installation Oracle 11g x32 on WinXP x32 which was installed into VMWare Player
    When my installation goes to 60% i have an error em.ear file not found...
    I looking for many issues on this forum, but i can't fix this error (i have been unzipped all 2 archives in the same folder, i have deleted all files in temp folders...), but i can't pass the oracle install test... all test is filed, but i ignor this screen, because i know, that all is right... so can any one help me with installation?

    957717 wrote:
    Hi!
    I have problem with installation Oracle 11g x32 on WinXP x32 which was installed into VMWare Player
    When my installation goes to 60% i have an error em.ear file not found...
    I looking for many issues on this forum, but i can't fix this error (i have been unzipped all 2 archives in the same folder, i have deleted all files in temp folders...), but i can't pass the oracle install test... all test is filed, but i ignor this screen, because i know, that all is right... so can any one help me with installation?What is the full path name to the directory where unzipped the files?
    Do a system 'find' and locate 'em.ear'. What is the full path name to it? At acommand prompt, enter the following:
    cd \
    dir /s em.earcopy the entire session -- command and results, and paste back here.
    Also, does the path to the installation files contain any spaces? Does the path to the installed ORACLE_HOME contain any spaces?
    You have my condolences for having to work with Windows. To paraphrase a line from a popular movie . . "My momma always said Windows was like a box of chocolates."
    Edited by: EdStevens on Sep 7, 2012 3:42 PM

  • Problem with OBI Apps v7.9.5 installation on WinXP SP2

    We are attempting to install OBI Apps v7.9.5 on a WinXP SP2 machine. However, upon clicking the setup.exe file, we get the following error message -- Unable to load the launcher file index. Invalid file type in the index.
    As a pre-requisite for OBI Apps, JDK 1.5.x and OBIEE v10.1.3.3.1 have been installed without any issues. Hence, not sure why we are getting the above error for OBI Apps. We have searched Oracle documentation, blogs and forums, but not found any reason or solution to this problem.
    Any inputs will be greatly appreciated.
    Thank you..
    Edited by: OBIGuy on Nov 2, 2009 1:00 PM

    Thank you for the input. The contents of the installation directory are as below:
    Oracle_BI_Applications
    |- doc (folder)
    |- createResponseFile.bat
    |- installWithResponseFile.bat
    |- media.inf
    |- setup.exe
    |- setup.jar
    |- version_apps.txt
    Before posting this query, I did run the setup.jar file. However, when the installation process reaches 100%, it terminates with the following error - */version_apps.txt does not exist*. Also, it rolls back the complete installation, so I do not get the OBI Apps files/directories such as DAC, dwrep, RPD, Web Catalog zip, etc.
    As shown in the directory structure, this file does exist. My guess is - since I am running the JAR file and not the EXE, it is unable to resolve the path of version_apps.txt correctly and hence throws this error. Having gone through related blogs and posts, I understand that OBI Apps can be installed on Win XP SP2.
    Any inputs?
    Edited by: OBIGuy on Nov 5, 2009 10:15 AM

Maybe you are looking for

  • Final Cut Pro Monitor/TV/Camera hookup

    How do I hook up my G5 dual core Mac to JVC monitor(Model # TM-R9U) through Sony DSR 200 DV Cam camera(used for my deck) and then to my Toshiba television with RCA and S-video Line 2 outlets. tv? I want to watch and monitor my Final Cut Pro timeline

  • Problem in query result

    Hi All, I have created a query and there is a keyfigure "Amount"  and characteristics are company code and calender day (key date). In result it should display total amount on keydate(user input)...it is displaying result if there is only single entr

  • Is there a FREE WMA conversion program?

    Hi everyone, quick question: Is there a WMA to MP3 Conversion program out there that is FREE? I've searched and searched but everything is a demo with an activation fee. If you know of any, can you give me the name and/or link please? Thank you VERY

  • Returning parts to Apple question

    I called apple out of warrenty and paid $80 for a new power brick for my display. Was getting curious what went wrong with my original brick and new 100% it was the brick that was bad so I hacked open the brick and saw the grounding point was loose.

  • Activate Airport on Disconnecting from Ethernet

    Hey, I have a computer I use as a server, so I have it by default plugged into the Ethernet, with Airport Off (so that it uses the ethernet network). But I need to remote into it from off the network, and if it gets accidently unplugged, airport will