Compile exe subpanel problems

Hi
i.m working on a big VI that has also uses some subpanels. The whole VI works fine when using labview but when I compile an EXE and run the .exe, the program hangs with an Windows error. This occurs at the startup of a subpanel. but not always at the same subpanel, sometimes it opens one subpanel and the next subpanel crashes the program. All the subpanel startup codes are the same..(pat conventions, initializing, etc.) Could it be that i have to add a close reference to each subpanel code..? (I will try this tomorrow) but are there other reasons that it wont work? My paths are ok, because sometimes they open ok.
sorry for my bad english..
Thanks
Bart Bakels
Labview CLD , Engineer/Manager
Promedes and DSM
using LV 7.1, 8.0, 8.2, 8.5 and 2009 SP1
http://www.promedes.nl

LV 8.0 has the ability to debug the compiled application.  If you have a valid SSP, you can download it and use it today to debug your issue.
The other alternative is good old printf better known as the dialog box.  Add a series of dailog boxes as the program starts and this will help you isolate where the program is hanging up.  Last good dialog   ---  Problem   --- Didn't see next dialog.
Matt
Matthew Fitzsimons
Certified LabVIEW Architect
LabVIEW 6.1 ... 2013, LVOOP, GOOP, TestStand, DAQ, and Vison

Similar Messages

  • Why does my compiled exe ask for the location of subvis when installed on another computer?

    Hello,
    I have a piece of deployable software I have developed and so I have created two build specifications to produce an .exe file and an installer.
    The build specification for the installer includes the compiled exe and all of the required SubVIs to reside in a sub directory in the install directory and when it installs on another computer the SubVIs are located in the correct place.
    However, when I install and run it on another computer, a dialog box appears prompting for the location of the SubVIs, I select the one that it is asking for and it then loads the remaining VIs and runs as normal.
    Is there something fundamentally I'm missing in the way SubVIs are called after using an installer, or is there a way to bundle them into the .exe/installer so that I don't receive the dialog box?
    Many thanks in advance,
    Sam
    Certified LabVIEW Architect, Certified TestStand Developer
    NI Days (and A&DF): 2010, 2011, 2013, 2014
    NI Week: 2012, 2014
    Knowledgeable in all things Giant Tetris and WebSockets
    Solved!
    Go to Solution.

    Yes - but on my computer, I believe the exe is finding the files from the .exe build, rather than the installer location.
    In fact, I just renamed the default build directory (where it places the installer / exe after the build and I get the same dialog - it is looking in C:\LabVIEW Builds\etc.
    rather than...
    C:\Program Files\My Software\subvidirectory
    So maybe it is the problem you suggested Yamaeda? If so - is there a solution/workaround for this?
    Certified LabVIEW Architect, Certified TestStand Developer
    NI Days (and A&DF): 2010, 2011, 2013, 2014
    NI Week: 2012, 2014
    Knowledgeable in all things Giant Tetris and WebSockets

  • How to start a compiled exe with a parameter like -n

    Is there an possibility to start a compiled exe with a paramter like -n ?I searched the forum but only found sth. about dlls and so on.I just want to say, when the programm is started for example as Myprogram.exe -n that the program creates a new file or sth like this in which it writes current data. I never have done that before and do not know how to realize that operation.
    Thanks for help
    kind regards

    Hello
    This link explains how to pass command line parameters to app.exe.
    link
    Hope it helps
    Alipio
    "Qod natura non dat, Salmantica non praestat"

  • Isqlplussvc.exe meet problem and closed

    when i open my computer it said isqlplussvc.exe meet problem and have to close
    how to fix it?
    my oracle_home environment setting is C:\OC4J10g
    following some post, do it cause error?

    hi
    kindly let us know
    the error you are facing
    any ORA Errors...
    Cheers

  • Flexunit ant task on CI Server - rundll32.exe causing problems

    My team is using flexunit and a CI server running Hudson. On a development system, everything runs fine, and we get the reports just like we need them. It also works fine on the CI server when just the flexunit task is run, but the build fails when the CI server tries to run a full build - the build tries to run the tests and clean to prepare for the next build, but the clean fails because there is a "rundll32.exe" process using one of the files and it can't be deleted. We tracked this process down to the one run by the flexunit task.
    Our task is:
        <target name="xci-test" depends="set-flex-coverage-home, prepare-domain-metadata-to-war, prepare-sounds-to-war, prepare-domain-metadata-for-testing, compile-unit-test-flex">
            <echo>**** The flexunit target requires that you have the standalone flash player installed and configured to run .swf files automatically! ****</echo>
            <mkdir dir="${dir.flexgui.test.output}"/>
        <!-- Execute TestRunner.swf as FlexUnit tests and publish reports -->
        <!-- Please see http://docs.flexunit.org/index.php?title=Ant_Task -->
        <flexunit workingDir="${dir.flexgui.test.output}"   
                  swf="${dir.flexgui.build.war}/${flex.swf.name}test.swf"
                  toDir="${dir.flexgui.test.output}"
                  haltonfailure="false" verbose="true" localTrusted="true"
                                port="11028" timeout="40000"/>
            <!-- Generate readable JUnit-style reports -->
            <junitreport todir="${dir.flexgui.test.output}">
                <fileset dir="${dir.flexgui.test.output}">
                    <include name="TEST-*.xml"/>
                </fileset>
                <report format="frames" todir="${dir.flexgui.test.output}/"/>
            </junitreport>
            <sleep seconds="10"/>
        </target>
    I can reproduce this behavior on my dev machine by running "ant xci-test clean". We tried putting a sleep in to give the process time to shut down, no change. We attempted to use the 'command' option to the flexunit task to bypass the use of rundll32.exe, but then the flash player just hangs onto the file and the clean still fails. Since "ant xci-test" followed by "ant clean" works, we also tried running ant from within ant in order to force the process to stop, but that also didn't work. Any help on this would be greatly appreciated.
    Thanks for your time,
    Linden

    @Linden - Have not heard of this side effect from anyone as of yet, but good to know.  Sounds like the file lock is coming from the Flash Player and causing the spawning process (rundll32.exe) to hang around as well.  The FlexUnit team runs on Hudson using the FlexUnit Ant task, but we don't seem to encounter the same issue.  What's the longest interval you've tried to use with the sleep task?  Does the FP ever release its handle to the test SWF on your development machines?
    Not sure this is a problem with the FlexUnit Ant task, but in 4.2 we could try to explicitly kill the rundll32 process since we'll have the PID when the task launches it.  Head on over to JIRA and file a feature request for us and I'll see what I can do in the new year.  In the short term though, maybe try upgrading your version of the stand alone debug flash player to see if that helps.  Has anyone else seen this issue?  Could you possible just move the clean target to be called before the xci-test target is run?  Just some suggestions.
    -Brian

  • Call library node in builded exe - path problem

    Hi!
    I have builded an EXE with the App. Builder. In my application I use the Call Library Node, and call functions from a DLL.
    I give the path of the dll with the "Current VI path", than strip the path, and add the DLL-s name. So in the CallLibNode I check the "specify path on diagram" option.
    It works when I run my application on a PC that has the LV 8.5 installed.
    But when I install my app on a PC that does not have it, just my setup installs the Runtime Engine onto it, it does not work, and I get errors.
    Which is the proper way to give the DLL-s path, if I want my app run on any PC that does not have LV installed?
    Thanks:
    Waszil

    Does the executable run correctly on the development machine? If not I would imagine it is a problem with how you are referencing the dll.
    Have you installed all necessary support libraries you may be using throughout the program on the target machine? Are you able to confirm that the error messages are referencing to the dll not being found?
    It sounds like you are referencing the dll correctly. When compiled, the dll is put into the 'data' directory within the root directory, so make sure that is there on the target pc
    Message Edited by yenknip on 08-04-2008 10:42 AM
    - Cheers, Ed

  • Compiled executable language problem(s)

    Hello,
    I have a really annoying problem with unexpected Chinese language instead of the English!
    First the Distributed System manager showed up in Chinese. A search within ni.com hit a document instructing to 1st try and rename the following folder (being originally "ChineseS"):
    ..\Program Files\National Instruments\Shared\System Manager\11.0\Chinese
    I did that and the Distributed System Manager showed up correctly in English! Then I had to check its help and again it showed up in Chinese so I 1st renamed the corresponding subfolder in the:
    ..\Program Files\National Instruments\Shared\System Manager\11.0\help
    However since that had not helped I did the 2nd option - copying the english help file over the chiense... - and that solved the problem.
    Now I am trying to build a HostVI EXE to read a TargetVI EXE from a cRIO and allthough the VI shows correct English, its compiled version shows messed characters like in the "Host VI App.png". "Run-Time Languages.png" shows a working language selection combination. The compiled HostVI EXE simply won't run if the Chinese language is not included. And regardless to the default selection being English - the EXE shows garbage...
    Does anyone know how to solve this ridiculus issue?
    Thanks in advance,
    Attachments:
    Run-Time Languages.png ‏21 KB
    Host VI App.png ‏17 KB

    Hi golubovski,
    I'm sorry to hear that you're having this issue with LabVIEW. In the interest of reproducing your issue, can you confirm that you're using version 2011 of our software and which OS are you using on the two PCs that you mention. Also, to clarify, when you say that this happens on 2/3 of your PCs, do you mean that you have tried compiling the executive on multiple PCs with the development environment, or just that you have tested the compiled executive on multiple PCs? Thank you for your cooperation as we look into the issue!

  • Yoga 3 Pro lmcfrundll​.exe Run Problem, how to fix?

    While Lenovo is in the process of developing a solution, an official work-around to the automatic update delivered on February 7th to Yoga 3 Pro laptops bas been released to address the following errors:
    lmcfrundll.exe application error       unable to start correctly (0xc000007b)
    problem starting c:\program files\lenovo\communications utility\libstartstub.dll      specified module could not be found
    Please note this is a work-around, not the final solution.
    It is intended for Yoga 3 Pro systems running Win 8.1 on Lenovo Settings Dependency Package version 2.3.1.30 only.
    The readme file and work-around can be obtained here:
    https://drive.google.com/folderview?id=0B0Wzd6g3yn​HwfmpTQmhxOHBUSGRSN05tejU1cU1hT1hDN3ZEN1MzUlR4LWRO​...
    Thank you,
    2/20/15 EDIT: Tagging this temp fix as a solution so it can be found by others joining the conversation. I will tag the permanant fix when it becomes available. Amy_Lenovo
    Amy Tupper
    Technical Resolution Lead, Pervasive Issues
    Lenovo US
    ThinkPad T431s, S3 Yoga 14, Helix, Edge 11 & 14, E431, IdeaTab A1107, IdeaPad A1-07, IdeaCentre Horizon, Yoga Tablet 2 10 1051
    First computer was a 1980 Commodore 64 from Radio Shack/ GEnie SFRT member from 1993-1996
    Solved!
    Go to Solution.

    I have a Yoga 3 Pro, Windows 8.1 Pro x64.
    There are errors in the Event Viewer related to the problems of LMCSTART1, LMCSTART2, LMCSTART3, which I will cut and paste below. These are there because they are failing to load as the error message on the pop-up window states.
    As for the libstartstub.dll "specified module could not be found", there were not errors or warnings in the Event Viewer related to this, but I have noticed that if I disable LENOVO.TPKNRRES from running (via OneKey Optimizer), that particular error doesn't come up.
    Here are the errors now from Event Viewer:
    Event ID 1005 (same error listed 3 times as an Application error, with a different RecordID listed below)
    Windows cannot access the file  for one of the following reasons: there is a problem with the network connection, the disk that the file is stored on, or the storage drivers installed on this computer; or the disk is missing. Windows closed the program Lenovo® Multimedia and Communications Framework Custom Rundll because of this error.
    Program: Lenovo® Multimedia and Communications Framework Custom Rundll
    File:
    The error value is listed in the Additional Data section.
    User Action
    1. Open the file again. This situation might be a temporary problem that corrects itself when the program runs again.
    2. If the file still cannot be accessed and
        - It is on the network, your network administrator should verify that there is not a problem with the network and that the server can be contacted.
        - It is on a removable disk, for example, a floppy disk or CD-ROM, verify that the disk is fully inserted into the computer.
    3. Check and repair the file system by running CHKDSK. To run CHKDSK, click Start, click Run, type CMD, and then click OK. At the command prompt, type CHKDSK /F, and then press ENTER.
    4. If the problem persists, restore the file from a backup copy.
    5. Determine whether other files on the same disk can be opened. If not, the disk might be damaged. If it is a hard disk, contact your administrator or computer hardware vendor for further assistance.
    Additional Data
    Error value: 00000000
    Disk type: 0
    - System
      - Provider
       [ Name]  Application Error
      - EventID 1005
       [ Qualifiers]  49152
       Level 2
       Task 100
       Keywords 0x80000000000000
       EventRecordID for the three different times: 13645 - 13648 -  13651
    - EventData
       Lenovo® Multimedia and Communications Framework Custom Rundll
       00000000
     Faulting application name: lmcfrundll.exe, version: 5.0.9.73, time stamp: 0x54ab2d05
    Faulting module name: ntdll.dll, version: 6.3.9600.17476, time stamp: 0x54516af9
    Exception code: 0xc000007b
    Fault offset: 0x000a36e5
    Faulting process id: 0x644
    Faulting application start time: 0x01d04337a63a774e
    Faulting application path: C:\Windows\SysWOW64\lmcfrundll.exe
    Faulting module path: C:\windows\SYSTEM32\ntdll.dll
    Report Id: 33af5abb-af2b-11e4-8287-f87dd6bcf066
    Faulting package full name:
    Faulting package-relative application ID:
    - System
      - Provider
       [ Name]  Application Error
      - EventID 1000
       [ Qualifiers]  0
       Level 2
       Task 100
       Keywords 0x80000000000000
      - TimeCreated
       [ SystemTime]  2015-02-08T00:41:22.000000000Z
       EventRecordID 13650
       Channel Application
       Security
    - EventData
       lmcfrundll.exe
       5.0.9.73
       54ab2d05
       ntdll.dll
       6.3.9600.17476
       54516af9
       c000007b
       000a36e5
       644
       01d04337a63a774e
       C:\Windows\SysWOW64\lmcfrundll.exe
       C:\windows\SYSTEM32\ntdll.dll
       33af5abb-af2b-11e4-8287-f87dd6bcf066 
     Faulting application name: lmcfrundll.exe, version: 5.0.9.73, time stamp: 0x54ab2d05
    Faulting module name: ntdll.dll, version: 6.3.9600.17476, time stamp: 0x54516af9
    Exception code: 0xc000007b
    Fault offset: 0x000a36e5
    Faulting process id: 0x15e4
    Faulting application start time: 0x01d04337a609bbd0
    Faulting application path: C:\Windows\SysWOW64\lmcfrundll.exe
    Faulting module path: C:\windows\SYSTEM32\ntdll.dll
    Report Id: 33170cdc-af2b-11e4-8287-f87dd6bcf066
    Faulting package full name:
    Faulting package-relative application ID:
    - System
      - Provider
       [ Name]  Application Error
      - EventID 1000
       [ Qualifiers]  0
       Level 2
       Task 100
       Keywords 0x80000000000000
      - TimeCreated
       [ SystemTime]  2015-02-08T00:41:21.000000000Z
       EventRecordID 13647
       Channel Application
       Security
    - EventData
       lmcfrundll.exe
       5.0.9.73
       54ab2d05
       ntdll.dll
       6.3.9600.17476
       54516af9
       c000007b
       000a36e5
       15e4
       01d04337a609bbd0
       C:\Windows\SysWOW64\lmcfrundll.exe
       C:\windows\SYSTEM32\ntdll.dll
       33170cdc-af2b-11e4-8287-f87dd6bcf066 
     Faulting application name: lmcfrundll.exe, version: 5.0.9.73, time stamp: 0x54ab2d05
    Faulting module name: ntdll.dll, version: 6.3.9600.17476, time stamp: 0x54516af9
    Exception code: 0xc000007b
    Fault offset: 0x000a36e5
    Faulting process id: 0xb74
    Faulting application start time: 0x01d04337a5c87954
    Faulting application path: C:\Windows\SysWOW64\lmcfrundll.exe
    Faulting module path: C:\windows\SYSTEM32\ntdll.dll
    Report Id: 32206a90-af2b-11e4-8287-f87dd6bcf066
    Faulting package full name:
    Faulting package-relative application ID: 
    - System
      - Provider
       [ Name]  Application Error
      - EventID 1000
       [ Qualifiers]  0
       Level 2
       Task 100
       Keywords 0x80000000000000
      - TimeCreated
       [ SystemTime]  2015-02-08T00:41:19.000000000Z
       EventRecordID 13644
       Channel Application
       Security
    - EventData
       lmcfrundll.exe
       5.0.9.73
       54ab2d05
       ntdll.dll
       6.3.9600.17476
       54516af9
       c000007b
       000a36e5
       b74
       01d04337a5c87954
       C:\Windows\SysWOW64\lmcfrundll.exe
       C:\windows\SYSTEM32\ntdll.dll
       32206a90-af2b-11e4-8287-f87dd6bcf066

  • Adobe master collection cs4 setup.exe installation problem

    This is frustrating.
    I have 30 day trial DVD from adobe, it is Master Collection CS4 and can't install it. Double clicking on setup.exe goes nowhere, just no response at all. You can see and hear DVD working, but nothing is happening, no response. I've been searching on forums, everywhere, no solution. Tried msicuu2.exe, also tried WinCS4Cleanupscript. Even registry cleaning tools. No progress.
    It is HP Pavilion dv7, core 2 duo, 2.2GHz, 4GB ram, 320 GB Hard Drive, Windows Vista SP1 (fresh instalation).
    Also tried with all current (july 2009) microsoft updates.
    Obviously because it is a trial version I can't contact adobe support.
    It is strange, I was able to install it on my old Windows XP laptop, but I can't do it on vista.
    Strange is also that I can install separatelly 30day trials of Photoshop CS4 and After Effects CS4 from adobe.com.
    As I said, this is fresh instalation, so there was no previous adobe product installed at all.
    Please help.

    yes I expected as much.  But I wasn't getting any good answers on vista either.  I have several users who will be moving to 7 in the fall and need to see if it will work.  thanks for the response.
    Since my last post, I may have found the answer (no thanks to Adobe).  Most of us having this issue are in using fresh installs of our OS.  Since the setup is very heavy Java, I downloaded the Java Runtime from Sun and POOF I can install now.  The error above went away and the install is running.  InDesign failed, but everything else has installed so far.  One would think that if the installer is so dependant on a Java VM being in place they would check for it and either prompt the end user or if an error occurs, post that in the error message.  But I have noticed that most of my Adobe problems in the past do not have good QA or error message support.  Usually I get a generic error message and am left to hunting for some kind of answer.
    So to those who are having this issue.  Load or re-load your Java VM and try again.  That helped me.

  • DAQ browser not working in compiled exe

    I have built an executable of my code.  It installs on a non-LabVIEW PC fine, but throws the error in the attached image.  Previous releases of this software worked fine.  I added functionality of being able to select a DAQ device/port/line shown in control line.jpg.  That control is for a sub-vi in my code.
    When I did a search for the attached error:
    "Cannot load the Browse dialog.  Some necessary components are missing.  To correct the problem, reinstall the drive software that is associated with this control"
    . . . I found the same error in reference to a Fieldpoint IO Point causing this problem in an exe with steps to solve the issue, but could not find anything related to DAQ IO.
    Any thoughts and/or suggestions would be much appreciated.  I would like to allow my user to select which DAQ port he wants to control.
    -Aaron M. Baumer
    Aaron M. Baumer
    Attachments:
    Browse error.JPG ‏145 KB
    control line.JPG ‏12 KB
    Toggle Line.vi ‏20 KB

    Hooovahh wrote:
    You say you have an installer for this, in the installer did you choose to include the DAQmx components?  You say it worked fine before which makes me believe that the DAQmx components were installed before.  If they were not then you will need to include them in the installer.  Expect the installer to go from 200MB for EXE and run-time to probably 800MB to 1.2GB with the DAQmx components being included.
    I did a manual install of DAQmx on the pc in question before, but this time I included DAQmx in the installer anyway (and, yes, it is now a 1.4Gb file!).  Anyway, I'm having my guy onsite install that version to see if it helps, but I have a feeling it will not.  It's the same error as here (also here). so I think it may require a similar workaround.
    Almost forgot, I'm running LabVIEW 2012.0f3, MAX 5.3.1f0
    Aaron M. Baumer

  • Compiling package body problem

    hello
    i have a problem with portal 9.0.2.2.22(win2k server). When i try to log in i get the error
    Error: Could not open web cache connection. The portal use-web-cache setting is set to ON while web cache may be down. (WWC-40019)
    after that i run oracle enterprise manager console, logged into iasdb and tried to compile different package bodies(dbe_build_sql, wwv_qbe,...) and get the error:
    Line # = 0 Column # = 0 Error Text = PLS-00801: internal error [56106]
    inside this package body there is only one word
    wrapped
    and nothing else
    on a different machine i have in the same package body tons of code(dbe_build_sql consists of 20622 lines), inside my package only one word
    wrapped
    where is the problem?
    can anybody help me? please
    need help
    thanks
    Marjan

    Marjan,
    Try to post your question in the Portal Caching forum.

  • Why does compiled (EXE) VI run when you double-cli​ck the icon even though I un-checked "Run When Opened"?

    My VI code uses the VI's that came with the NI  USB-8451  USB-to-SPI converter.  Before compiling I needed to use one of those VI's to select the particular USB device that I'm trying to address, then I click the Run button.  But after I compile my code into an EXE file, and then double-click the executable file it immediately starts running without allowing me to select the USB device - even though I un-checked the "Run When Opened" box.  In fact I also un-checked the Show Menu Bar and Show Scroll Bars boxes as well, yet it shows both of them.  What am I doing wrong?

    It seems silly to start and stop a built LabVIEW application from the toolbar. A complete application should always run and have the LabVIEW toolbar hidden. A user of you code is not supposed to be familiar with LabVIEW mechanics.
    You should do all this in code. Really!
    Do a nice state machine with at least two states. (1) a state for where the device has not been entered and is simply waiting for your input, and (2) another state that verifies your device input and hands it to the rest of the code for afterwards.
    Still, what LabVIEW version do you have. Did you set the "run when openend" setting in the application builder for the desired VI or just in the VI itself?
    LabVIEW Champion . Do more with less code and in less time .

  • Subpanel problem & memory leak in Labview 8.0

    Hi,
    I just installed Labview 8.0 Evaluation package yesterday. I tried to
    code a user interface class using dqGOOP object oriented package. It
    seems that LV 8 behaves differently from LV 7.1 which is good. One can
    use same subvivi in multiple subpanels. I however run into problems
    with this new feature i.e. I cannot edit the subvi after it has been
    placed on two subpanels. Editing is possible after LV 8 restart.
    In my code I create two similar object instances from the panel class. I have a class method panel_run which puts itself on the subpanel defined by refence. I have two subpanels on the main vi, one for each of my panel_run instances. I do not stop the panel_run instances cleanly, instead I use the Labview stop button to stop the execution. Once the main vi has runned, the panel_run subvi cannot be edited any more. When one opens the panel_run
    subvi, a clone of the subvi is always opened instead. One cannot modify
    the clone. After a few runs, I also got a memory segmentation fault
    from labview, which then crashed. I was unable to repeat the crash.
    I attached the code. Use panel_test.vi to start the program. Is
    there any way to get around this problem of not being able to access a
    subvi after it has been placed on a subpanel?
    Regards,
    Tomi
    p.s. Sorry for the wrong category. This is Labview 8.0 problem. There
    was not however a category for labview 8, so I selected Labview 7.1.
    Tomi Maila
    Attachments:
    panel_test.zip ‏569 KB

    Open your panel_run VI --> you get a clone
    Press CTRL+M --> Will open your VI (Not the Clone)
    Close the Clone and work on the VI.
    PJM
    Got EasyXML?
    JKI.VIPM.EasyXML.OpenG.LAVA.Builder.blog

  • WLS 7 JSP Jikes Compiler Encoding UTF8 Problem

    Hi,
              How are you doing? I am trying to configure Jikes as the default
              compiler in WebLogic. I know some of you have configured Jikes as the
              default compiler.
              I get the following error only for some pages. Even though I get the
              error the page is compiled successfully, but the error page is shown
              in the browser. However, if I refresh the page then I will get the
              next error. However, after a while every page will start working
              fine. Even the new pages will compile just fine. Ideas, suggestions,
              thoughts?
              Is encoding option the culprit? When is the option included?
              Thank you so much,
              -Prakash
              <Sep 11, 2002 10:38:33 AM PDT> <Error> <HTTP> <101046>
              <[ServletContext(id=53596
              2,name=web,context-path=/web)] Compilation of
              C:\bea\user_projects\c2c\myserver\
              .wlnotdelete\c2c_web_535962\jsp_servlet\_layouts\__mainlayout.java
              failed:
              Issued 4 system warnings:
              *** Warning: "-encoding" is an invalid option; use: jikes
              [-bootclasspath path][
              -classpath path][-d dir][-debug][-depend|-Xdepend][-deprecation][-extdirs
              path][
              -g][-nowarn][-nowrite][-O][-sourcepath
              path][-verbose][-Xstdout][++][+B][+c][+OL
              DCSO][+D][+DR=filename][+E][+F][+Kname=TypeKeyWord][+M][+P][+Td...d][+U][+Z]
              fil
              e.java....
              *** Warning: The file "C:\bea\jdk131_02\jre\classes" is not a valid
              directory.
              *** Warning: The file "C:\bea\weblogic700\server\lib\weblogic_sp.jar"
              is not a v
              alid zip file.
              *** Caution: The input file "UTF8" does not have the ".java"
              extension.
              java.io.IOException: Compiler failed
              executable.exec(java.lang.String[C:\jikes-1
              .15\bin\jikes.exe, -classpath,
              C:\work\dev\sonyc2c\web\WEB-INF\classes;C:\bea\us
              er_projects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\comm
              ons-beanutils27902.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_web_
              535962\jarfiles\WEB-INF\lib\commons-collections27903.jar;C:\bea\user_projects\c2
              c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\commons-dbcp27904.
              jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB
              -INF\lib\commons-digester27905.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdel
              ete\c2c_web_535962\jarfiles\WEB-INF\lib\commons-pool27906.jar;C:\bea\user_projec
              ts\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\commons-servi
              ces27907.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jar
              files\WEB-INF\lib\commons-validator27908.jar;C:\bea\user_projects\c2c\.\myserver
              \.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\struts27909.jar;C:\bea\user_pr
              ojects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\tiles2791
              0.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\W
              EB-INF\lib\junit27911.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_w
              eb_535962\jarfiles\WEB-INF\lib\aspectjrt27912.jar;C:\bea\user_projects\c2c\.\mys
              erver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\codigoxp_runtime27913.jar
              ;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-IN
              F\lib\codigoxp_support27914.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete
              \c2c_web_535962\jarfiles\WEB-INF\lib\cactus27915.jar;C:\bea\user_projects\c2c\.\
              myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\cx_sonyc2c27916.jar;C:
              \bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\l
              ib\weblogic-tags27917.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_w
              eb_535962\jarfiles\WEB-INF\lib\poi27918.jar;C:\bea\user_projects\c2c\myserver\.w
              lnotdelete\c2c_web_535962;C:\bea\jdk131_02\jre\lib\rt.jar;C:\bea\jdk131_02\jre\l
              ib\i18n.jar;C:\bea\jdk131_02\jre\lib\sunrsasign.jar;C:\bea\jdk131_02\jre\classes
              ;C:\work\dev\sonyc2c\lib\CR079672_70.jar;C:\bea\jdk131_02\lib\tools.jar;C:\bea\w
              eblogic700\server\lib\weblogic_sp.jar;C:\bea\weblogic700\server\lib\weblogic.jar
              ;.;C:\work\dev\sonyc2c\lib\jakarta-regexp-1.2.jar;C:\work\dev\sonyc2c\lib\common
              s-logging.jar, -d, C:\bea\user_projects\c2c\myserver\.wlnotdelete\c2c_web_535962
              , -encoding, UTF8, C:\bea\user_projects\c2c\myserver\.wlnotdelete\c2c_web_535962
              \jsp_servlet\_layouts\__mainlayout.java])
              at weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvo
              ker.java:575)
              at weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:
              354)
              at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:414)
              at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:214)
              at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:168)
              at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.
              java:447)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:287)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:376)
              at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:20)
              at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
              va:27)
              at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispat
              cherImpl.java:542)
              at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispat
              cherImpl.java:368)
              at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:119
              at org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTag(Inser
              tTag.java:757)
              at org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.java:369)
              at jsp_servlet.__index._jspService(__index.java:111)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
              (ServletStubImpl.java:945)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:332)
              at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              pl.java:376)
              at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:20)
              at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
              va:27)
              at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
              n.run(WebAppServletContext.java:5369)
              at weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
              eManager.java:721)
              at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
              rvletContext.java:3043)
              at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
              pl.java:2466)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
              >
              

              I tried your suggestion. Now it works. Thank you so much,
              -Bart Simpson
              "nagesh" <[email protected]> wrote:
              >
              >jikes doesnt support the -encoding option
              >so u can set compilerSupportsEncoding to false in your
              >weblogic.xml (as a param-name in your jsp-descriptor)while using jikes
              >as the
              >compileCommand
              >
              >Error: The option "-encoding" is unsupported in this build.
              >
              >thanks
              >Nagesh
              >
              >
              >
              >"Bart Simpson" <[email protected]> wrote:
              >>
              >>"Narayan Anand" <[email protected]> wrote:
              >>>Which WLS version with SP?
              >>
              >>I am using WLS 7.0 If you have any other questions please do not hesitate
              >>to
              >>ask.
              >>
              >>Best regards...
              >>-Bart Simpson
              >>
              >>>
              >>>
              >>>
              >>>"Bart Simpson" <[email protected]> wrote in message
              >>>news:[email protected]...
              >>>> Hi,
              >>>>
              >>>> How are you doing? I am trying to configure Jikes as the default
              >>>> compiler in WebLogic. I know some of you have configured Jikes as
              >>>the
              >>>> default compiler.
              >>>>
              >>>> I get the following error only for some pages. Even though I get
              >>the
              >>>> error the page is compiled successfully, but the error page is shown
              >>>> in the browser. However, if I refresh the page then I will get
              >the
              >>>> next error. However, after a while every page will start working
              >>>> fine. Even the new pages will compile just fine. Ideas, suggestions,
              >>>> thoughts?
              >>>>
              >>>> Is encoding option the culprit? When is the option included?
              >>>>
              >>>> Thank you so much,
              >>>> -Prakash
              >>>>
              >>>> <Sep 11, 2002 10:38:33 AM PDT> <Error> <HTTP> <101046>
              >>>> <[ServletContext(id=53596
              >>>> 2,name=web,context-path=/web)] Compilation of
              >>>> C:\bea\user_projects\c2c\myserver\
              >>>> .wlnotdelete\c2c_web_535962\jsp_servlet\_layouts\__mainlayout.java
              >>>> failed:
              >>>>
              >>>> Issued 4 system warnings:
              >>>>
              >>>> *** Warning: "-encoding" is an invalid option; use: jikes
              >>>> [-bootclasspath path][
              >>>> -classpath path][-d dir][-debug][-depend|-Xdepend][-deprecation][-extdirs
              >>>> path][
              >>>> -g][-nowarn][-nowrite][-O][-sourcepath
              >>>> path][-verbose][-Xstdout][++][+B][+c][+OL
              >>>>
              >>>DCSO][+D][+DR=filename][+E][+F][+Kname=TypeKeyWord][+M][+P][+Td...d][+U][+Z]
              >>>> fil
              >>>> e.java....
              >>>>
              >>>>
              >>>> *** Warning: The file "C:\bea\jdk131_02\jre\classes" is not a valid
              >>>> directory.
              >>>>
              >>>>
              >>>> *** Warning: The file "C:\bea\weblogic700\server\lib\weblogic_sp.jar"
              >>>> is not a v
              >>>> alid zip file.
              >>>>
              >>>>
              >>>> *** Caution: The input file "UTF8" does not have the ".java"
              >>>> extension.
              >>>>
              >>>> java.io.IOException: Compiler failed
              >>>> executable.exec(java.lang.String[C:\jikes-1
              >>>> .15\bin\jikes.exe, -classpath,
              >>>> C:\work\dev\sonyc2c\web\WEB-INF\classes;C:\bea\us
              >>>>
              >>>er_projects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\
              >>>comm
              >>>>
              >>>ons-beanutils27902.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_
              >>>web_
              >>>>
              >>>535962\jarfiles\WEB-INF\lib\commons-collections27903.jar;C:\bea\user_project
              >>>s\c2
              >>>>
              >>>c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\commons-dbcp27
              >>>904.
              >>>>
              >>>jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles
              >>>\WEB
              >>>> -INF\lib\commons-digester27905.jar;C:\bea\user_projects\c2c\.\myserver\.wl
              >>>notdel
              >>>>
              >>>ete\c2c_web_535962\jarfiles\WEB-INF\lib\commons-pool27906.jar;C:\bea\user_pr
              >>>ojec
              >>>>
              >>>ts\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\commons-s
              >>>ervi
              >>>>
              >>>ces27907.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_web_535962
              >>>\jar
              >>>>
              >>>files\WEB-INF\lib\commons-validator27908.jar;C:\bea\user_projects\c2c\.\myse
              >>>rver
              >>>>
              >>>\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\struts27909.jar;C:\bea\use
              >>>r_pr
              >>>>
              >>>ojects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\tiles
              >>>2791
              >>>>
              >>>0.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfil
              >>>es\W
              >>>>
              >>>EB-INF\lib\junit27911.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c
              >>>2c_w
              >>>>
              >>>eb_535962\jarfiles\WEB-INF\lib\aspectjrt27912.jar;C:\bea\user_projects\c2c\.
              >>>\mys
              >>>>
              >>>erver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\codigoxp_runtime27913
              >>>..jar
              >>>>
              >>>;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WE
              >>>B-IN
              >>>>
              >>>F\lib\codigoxp_support27914.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotde
              >>>lete
              >>>>
              >>>\c2c_web_535962\jarfiles\WEB-INF\lib\cactus27915.jar;C:\bea\user_projects\c2
              >>>c\.\
              >>>>
              >>>myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-INF\lib\cx_sonyc2c27916.ja
              >>>r;C:
              >>>>
              >>>\bea\user_projects\c2c\.\myserver\.wlnotdelete\c2c_web_535962\jarfiles\WEB-I
              >>>NF\l
              >>>>
              >>>ib\weblogic-tags27917.jar;C:\bea\user_projects\c2c\.\myserver\.wlnotdelete\c
              >>>2c_w
              >>>>
              >>>eb_535962\jarfiles\WEB-INF\lib\poi27918.jar;C:\bea\user_projects\c2c\myserve
              >>>r\.w
              >>>>
              >>>lnotdelete\c2c_web_535962;C:\bea\jdk131_02\jre\lib\rt.jar;C:\bea\jdk131_02\j
              >>>re\l
              >>>>
              >>>ib\i18n.jar;C:\bea\jdk131_02\jre\lib\sunrsasign.jar;C:\bea\jdk131_02\jre\cla
              >>>sses
              >>>>
              >>>;C:\work\dev\sonyc2c\lib\CR079672_70.jar;C:\bea\jdk131_02\lib\tools.jar;C:\b
              >>>ea\w
              >>>>
              >>>eblogic700\server\lib\weblogic_sp.jar;C:\bea\weblogic700\server\lib\weblogic
              >>>..jar
              >>>>
              >>>;.;C:\work\dev\sonyc2c\lib\jakarta-regexp-1.2.jar;C:\work\dev\sonyc2c\lib\co
              >>>mmon
              >>>> s-logging.jar, -d,
              >>>C:\bea\user_projects\c2c\myserver\.wlnotdelete\c2c_web_535962
              >>>> , -encoding, UTF8,
              >>>C:\bea\user_projects\c2c\myserver\.wlnotdelete\c2c_web_535962
              >>>> \jsp_servlet\_layouts\__mainlayout.java])
              >>>> at
              >>>weblogic.utils.compiler.CompilerInvoker.compileMaybeExit(CompilerInvo
              >>>> ker.java:575)
              >>>> at
              >>>weblogic.utils.compiler.CompilerInvoker.compile(CompilerInvoker.java:
              >>>> 354)
              >>>> at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:414)
              >>>> at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:214)
              >>>> at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:168)
              >>>> at
              >>>weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.
              >>>> java:447)
              >>>> at
              >>>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              >>>> pl.java:287)
              >>>> at
              >>>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              >>>> pl.java:376)
              >>>> at
              >>>weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:20)
              >>>> at
              >>>weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
              >>>> va:27)
              >>>> at
              >>>weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispat
              >>>> cherImpl.java:542)
              >>>> at
              >>>weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispat
              >>>> cherImpl.java:368)
              >>>> at
              >>>weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:119
              >>>> )
              >>>> at
              >>>org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTag(Inser
              >>>> tTag.java:757)
              >>>> at
              >>>org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.java:369)
              >>>>
              >>>> at jsp_servlet.__index._jspService(__index.java:111)
              >>>> at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              >>>> at
              >>>weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
              >>>> (ServletStubImpl.java:945)
              >>>> at
              >>>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              >>>> pl.java:332)
              >>>> at
              >>>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
              >>>> pl.java:376)
              >>>> at
              >>>weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:20)
              >>>> at
              >>>weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.ja
              >>>> va:27)
              >>>> at
              >>>weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
              >>>> n.run(WebAppServletContext.java:5369)
              >>>> at
              >>>weblogic.security.service.SecurityServiceManager.runAs(SecurityServic
              >>>> eManager.java:721)
              >>>> at
              >>>weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
              >>>> rvletContext.java:3043)
              >>>> at
              >>>weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
              >>>> pl.java:2466)
              >>>> at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:152)
              >>>> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:133)
              >>>> >
              >>>
              >>>
              >>
              >
              

  • Btplayerctrl.exe causes problems in Microsoft Word

    I was having a problem in Microsoft Word 2010 and 2013: tooltips that show the content of comments, footnotes, etc., were flickering and disappearing.
    I have now identified this as an imcompatibility with btplayerctrl.exe, the Bluetooth Media Player Controller.
    In Programs and Features, I see that my version is listed as 3.1.1.1307.0366. On the Lenovo site, I find a driver package with the following list of versions:
    Package Driver Build ID Rev. Issue Date
    17.0.1401.0428 17.0.1401.422 GIWW10WW 02 2014/06/02
    17.0.1401.0428 17.0.1401.422 GIWW10WW 01 2014/05/26
    3.1.1311.0402 3.1.1311.400 (*) GIWW08WW 01 2014/01/15
    3.1.1309.0390 3.1.1309.390 GIWW07WW 02 2013/11/29
    3.1.1309.0390 3.1.1309.390 (*) GIWW07WW 01 2013/11/05
    3.1.1309.0390 3.1.1309.386 (**)
    3.1.1307.0366 3.1.1307.364 (*) GIWW05WW 01 2013/09/26
    I am wondering if I should update my driver to see if this fixes the problem--I don't want to run into further problems due to the update. And, would I have to uninstall the previous version before doing that?
    At the moment I am not using bluetooth at all, and I don't even know what btplayerctrl.exe does.

    Sorry for the senior moment comment.  I was following onto your mention of that phrase.
    If you go into File > Open Recent > More… you can select files you have touched Today, Yesterday, Past Week…
    Selecting a file and doing a Save As… should point to the folder where the file went.
    Does this work for you to find the file?

Maybe you are looking for

  • IMac screen is black

    I have a 17" iMac G5 ALS, recently the computer started up fine but after putting it to sleep the screen stays black. I've tried restarting and zapping PRAM but nothing gets the screen working. I've plugged in an external monitor and I can see that e

  • HT1657 Rental Movie problem

    I downloaded a rental movie to my PC and then attempted to transfer it to my ipod, it disappeared from my PC but never arrived on my ipod.  I checked the video app but nothing there.

  • On opening I get message "The connection was reset. The connection to the server was reset while the page was loading" ??

    On startup of Mozilla I recieve a message saying "The connection was reset ". The connection to the server was reset while the page was loading. Try again? After hitting the try again button it works. == This happened == Every time Firefox opened ==

  • IDOC Content

    Hi , Is there any way to know the actual content of IDOC means the actual data(500 rows/1000 rows or whatever) within the IDOC which got stuck. I have checked WE09 transaction or EDID4 table. I found fields only. I need to know what is the content of

  • EM console -configuration

    Hey friends, I had oracle database 10.2.0.1 installed in /u and OAS,ODS 10.1.2 installed in /u1. But due t osome reasons i had to swap the mount directories. Now database is in /u1 and OAS/ODS is in /u. I changed the corresponding locations in the fi