Can I programmatically copy vi within llb AND build an application?

I previously posted the question how to programmatically work (copy, delete) on files within llbs and got two answers to use the librarian vis in vi.lib > utility > libraryn.llb
That works really good but only till I try to build an application. The application builder seems to use the librarian vis also and complains that it cannot build an application with vis that are currently in use...
Any idea how to solve that?
Cheers, Daniel Troendle

Make a copy of all the VIs used by the librarian and save them under a
different name (making sure to link the sub-VIs to the new name of course.
Awkward, but it should work.
Shane
D. Troendle schrieb in Nachricht
<[email protected]>...
>I previously posted the question how to programmatically work (copy,
>delete) on files within llbs and got two answers to use the librarian
>vis in vi.lib > utility > libraryn.llb
>
>That works really good but only till I try to build an application.
>The application builder seems to use the librarian vis also and
>complains that it cannot build an application with vis that are
>currently in use...
>
>Any idea how to solve that?
>Cheers, Daniel Troendle
Using LV 6.1 and 8.2.1 on W2k (SP4) and WXP (SP2)

Similar Messages

  • Can I programmatically copy and delete VIs within LLBs?

    When I try to programmatically copy a vi within a llb using the "copy"-vi I get an error. The same occurs with "delete". Is there any way in LabView 5.1 to get that going? Does it work in LV 6? Thanks for any idea,
    Daniel Troendle

    Dennis is partially correct. I think all LV versions have it, because it is used in the menu system to manage VI libraries.
    If you go to vi.lib->utility->libraryn.llb, you'll see the librarian vis, including the librarian delete. This will allow you to delete a file in a library.
    I don't have the professional version, and I have it. I tried it, and it works.
    Mark

  • HP4620 will not print black BUT i can scan a copy to the printer and then print out black

    AS soon as i changed the black print cartridge it stopped printing black copies    but i can scan a document to the pc and then print it and it prints out perfect .... this is the third HP printer that i have (different models) where the SAME thing happens... i just sent 105.00 for cartridges that the printer still does not print.  I'm not understanding why i can print out a scanned document but cannot print anything else   PLEASE help me because ive already wasted 105.00 .... i've done everything ... cleaned the printheads 20 times and also reset printer to factory defaultsNOTHING WORKS .......

    Hi,
    I am currently replying to this as it shows in the iChat Community.
    I have asked the Hosts to move it to Snow Leopard  (you should not lose contact with it through any email links you get)
    I also don't do Wirelss printing so I can't actaully help either.
    10:01 PM      Friday; July 29, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How can I enable java applet plug-in and Web Start applications via terminal?

    Since the last Java update to Snow Leopard, I have found that the system periodically disables the Java applet plug-in after a period of disuse.  I know I can go to /Applications/Utilities/Java Preferences and just click to re-enable Java.  But I want to write a script which will do this periodically for a couple hundred Mac users where I work. 
    My question is - how can I reenable the Java applet plug-in and web start applications via Terminal command?  Is this possible?  Is there a plist file that can be modified, etc.?
    Bob Reed

    It is my understanding that Apple's most recent Java update automatically disables Java after a certain period of time that it hasn't been used.  We don't want users to have to keep re-enabling it.  So we wanted to find a way to do this via script either run by a Casper JSS server or stored locally on each workstation.   With the guidance provided by Mark Jalbert above and some text from a script written by Rich Trouton, I was able to make a script (with some minor changes) and a launch agent to re-run the script upon login.  So the preference is always enabled.
    For your reference, the script content is:
    #!/bin/sh
    # DYNAMICALLY SET THE UUID FOR THE BYHOST FILE NAMING
    if [[ `ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-50` == "00000000-0000-1000-8000-" ]]; then
    MAC_UUID=`ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c51-62 | awk {'print tolower()'}`
    elif [[ `ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-50` != "00000000-0000-1000-8000-" ]]; then
    MAC_UUID=`ioreg -rd1 -c IOPlatformExpertDevice | grep -i "UUID" | cut -c27-62`
    fi
    # Set the the "Enable applet plug-in and Web Start Applications" setting in the Java Preferences for the current user.
    /usr/libexec/PlistBuddy -c "Delete :GeneralByTask:Any:WebComponentsEnabled" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Add :GeneralByTask:Any:WebComponentsEnabled bool true" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Delete :GeneralByTask:Any:WebComponentsLastUsed" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    /usr/libexec/PlistBuddy -c "Add :GeneralByTask:Any:WebComponentsLastUsed real $(( $(date "+%s") - 978307200 ))" /Users/$USER/Library/Preferences/ByHost/com.apple.java.JavaPreferences.${MAC_UU ID}.plist
    The launch agent plist content is:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>Disabled</key>
              <false/>
              <key>Label</key>
              <string>org.XXXXX.enableJavaPlugin</string>
              <key>ProgramArguments</key>
              <array>
                        <string>sh</string>
                        <string>/Library/Scripts/XXXXX/enableJava_plugin.sh</string>
              </array>
              <key>RunAtLoad</key>
              <true/>
              <key>StartOnMount</key>
              <true/>
    </dict>
    </plist>
    I hope this is helpful to anyone wishing to keep the Java web plugin enabled.
    Bob
    Message was edited by: Robert Reed2

  • How can I calling LabView DLL within LabView and pass similar Data Types?

    I am trying to use an Instrument Driver, which is created in LabView6.1 as a DLL. At this point I have only LabView to test this DLL. I was wondering, is there easy way to find out what sort of Parameter or Data Type I should be using.
    How can I pass the following data with in LabView:
    LVRefnum as Type?
    LVBoolean as Type?
    TD1 (a structure) as Type?
    It is funny to see that I am able to create a DLL in labview but having trouble calling it within LabView. I thought, it would be easier to test the DLL within the same environment.
    Basically, I am more worried about the VISA calls that are used in the driver to communicate with instrument. Because, there is no link to �VISA32.dll� in
    the header file, is that handled by the LV Run-time engine? I guess more details are needed on using the LabView DLL within LabView from National Instrument Technical Support.
    Attachments:
    RL5000.h ‏1 KB

    A LVRefNum seems to be an unsigned long data type (32bit). You can cast it
    in LV then use that as a parameter to call the DLL. (an Occurrence type
    seems to be a Ulong32)
    When you created the DLL what was the resulting type for the LVRefNum?
    Happy Holidays
    "Enrique" wrote in message
    news:[email protected]..
    > I see...
    >
    > After doing some research, it seems to me that there is no easy way to
    > find out the type of data, other than looking at the header file and
    > have documents like Using External Code in LabVIEW handy. The
    > following information is from that document:
    >
    > LVBoolean is an 8-bit integer. 1 if TRUE, 0 if FALSE.
    >
    > LabVIEW specifies file refnums using t
    he LVRefNum data type, the
    > exact structure of which is private to the file manager. To pass
    > references to open files into or out of a CIN, convert file refnums to
    > file descriptors, and convert file descriptors to file refnums using
    > the functions described in Chapter 6, Function Descriptions.
    >
    > I know you are creating a dll in LabVIEW, but I am pretty sure the
    > information applies as well and is useful. For your dll this can be
    > interpreted that, rather than passing a LVRefnum, try passing the file
    > descriptor.
    >
    > From the header file, is can be deduced that TD1 is a cluster in
    > LabVIEW.
    >
    > You are right in saying that "more details are needed on using the
    > LabView DLL within LabView from National Instrument Technical
    > Support.".
    >
    > Enrique

  • Can you NOT copy an Amerture image and paste it into keynote?

    I'm able to highlight an image in iPhoto, copy it, and paste it into another Mac app like keynote no problem. But my trial version of Aperture doesn't allow me to do that. How come?
    Yes, I should be able to drag the image into a Mac app, but often they get out of sync and the recent image I've imported into iphoto is not available for dragging. So I just copy and paste it.
    But what's up with Aperture in this area?

    To use images from the media browser, you must generate previews of the images first. It sounds like the "automatically generate previews for every new project" is turned off under Aperture >Preferences>Previews. To generate a preview for a photo to use in the media browser, right click it and select "update preview". The quality of the preview photo is determined by the settings in the Previews tab found under the Aperture>Preferences menu.

  • Can AVCHD be copied to a mac and ingested later?

    Would it be possible to offload video from a SDHC card being shot with AVCHD using by using a high capacity card reader, and later ingesting it into FCP using Log and Capture while the file already resides on the mac?
    Thanks.

    Hi. I'm no expert, but here has been my AVCHD "workflow" using the Panasonic HDC-SD1.
    1. I capture my material to 8GB class 6 SDHC card
    2. I remove the card from camera, place it in my sonnet expresscard34 card reader, insert into MBP
    3. I copy the card contents, with its directory structure to an external fast FW800 disk
    4. I run Toast to burn that directory to a dual layer DVD, with verification
    5. I store the DVD in a case in my DVD storage rack
    6. I start Final Cut Pro
    7. I type shiftapple8 to run log and transfer, invoking FCP's ProRes transcoding ingest
    8. With the log and transfer window open, I click the disk icon, select the BDMV directory
    9. FCP loads icon view of the clips (.mts files) that are in the Stream directory under BDMV
    10. I select a clip in the icon view, and preview its contents in the clip viewer to the right
    11. I highlight the clips which I want to ingest (ProRes will transcode) and click Add to Selection
    12. I take a break, since it will take a while to ingest all 80 minutes of material
    13. I then edit in FCP as I normally would
    So, I hope this helps anyone using AVCHD footage, but I also would like to hear what some of you are using in the way of presets in Final Cut Pro's audio/video settings with the AVCHD footage.
    Regards

  • Can you share a harddrive with Itunes and other music applications.

    So here's my issue....
    I have been using PCDJ FX on a Windows based laptop for quite a few years.
    So what I would like to do is basically beable to take my harddrive and plug it into my desktop and have Itunes use that music disk and then unplug it and put it on my DJ system.
    now the issue is there is kind of a process to get the music ready for PCDJ which consists of:
    rip the music to my HD
    Run MP3Gain to set the Gain.
    load it into a temp folder on my harddrive
    bring up PCDJ to do the BPM scan to set the Beats per minute.
    once this is all done I then go and place the music into it's proper folders such as Bass/breakbeats/bassnectar or 70's Rock/led Zepplin.
    the problem that I found is after I do that if I take that harddrive back to Itunes it doesn't realize the new music is there.
    is there a way to refresh and scan the folder for the new stuff so Itunes knows it's there???
    John

    wow I stumped the all mighty Apple Discussion group????

  • Out of memory Error While deploying and building the application

    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0808f7ef, pid=5036, tid=5072
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_11-b06 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x8f7ef]
    --------------- T H R E A D ---------------
    Current thread (0x078b4ac0): JavaThread "ExecuteThread: '9' for queue: 'weblogic.kernel.Default'" daemon [_thread_in_vm, id=5072]
    siginfo: ExceptionCode=0xc0000005, reading address 0x079c7ffc
    Registers:
    EAX=0x00000000, EBX=0x078b4ac0, ECX=0x079c7ff0, EDX=0x0080908c
    ESP=0x0823f5a0, EBP=0x0823f5f8, ESI=0x0718ac70, EDI=0x00000000
    EIP=0x0808f7ef, EFLAGS=0x00010246
    Top of Stack: (sp=0x0823f5a0)
    0x0823f5a0: 08064249 0080908c 079c7ff0 0823f618
    0x0823f5b0: 0718ac20 0808f80a 0080908c 0808f7e5
    0x0823f5c0: 0718a220 0808eda6 0080908c 0003bc78
    0x0823f5d0: 0808eec6 0080908c 0823f618 00000001
    0x0823f5e0: 080925ab 0080908c 078b4d7c 00000001
    0x0823f5f0: 00000000 078b4ac0 0823f60c 0095f4f4
    0x0823f600: 0080908c 0823f618 078b4b5c 0823f628
    0x0823f610: 0095f4ac 078b4b5c 0080908c 0823f624
    Instructions: (pc=0x0808f7ef)
    0x0808f7df: 02 33 c0 c2 04 00 8b 4c 24 08 8b 54 24 04 33 c0
    0x0808f7ef: 3b 51 0c 0f 94 c0 c3 56 8b f1 68 e5 f7 08 08 ff
    Stack: [0x08200000,0x08240000), sp=0x0823f5a0, free space=253k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0x8f7ef]
    C [jdwp.dll+0xf4f4]
    C [jdwp.dll+0xf4ac]
    C [jdwp.dll+0xbf91]
    C [jdwp.dll+0xbe23]
    C [jdwp.dll+0x7b6b]
    C [jdwp.dll+0x89c8]
    V [jvm.dll+0x8fc00]
    V [jvm.dll+0x909e4]
    V [jvm.dll+0x90291]
    V [jvm.dll+0x6df8a]
    j jsp_servlet._data_usage.__new_request._jspService(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V+2387
    j com.telus.smartdesktop.framework.JSPControllerServlet.service(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+74
    j weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run()Ljava/lang/Object;+12
    j weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Lweblogic/servlet/internal/FilterChainImpl;)V+387
    j weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Lweblogic/servlet/internal/FilterChainImpl;)V+618
    j weblogic.servlet.internal.TailFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+10
    j weblogic.servlet.internal.FilterChainImpl.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+28
    j com.sun.identity.agents.filter.AmAgentFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+175
    j weblogic.servlet.internal.FilterChainImpl.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+28
    j weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run()Ljava/lang/Object;+79
    j weblogic.security.acl.internal.AuthenticatedSubject.doAs(Lweblogic/security/subject/AbstractSubject;Ljava/security/PrivilegedAction;)Ljava/lang/Object;+34
    j weblogic.security.service.SecurityManager.runAs(Lweblogic/security/acl/internal/AuthenticatedSubject;Lweblogic/security/acl/internal/AuthenticatedSubject;Ljava/security/PrivilegedAction;)Ljava/lang/Object;+18
    j weblogic.servlet.internal.WebAppServletContext.invokeServlet(Lweblogic/servlet/internal/ServletRequestImpl;Lweblogic/servlet/internal/ServletResponseImpl;)V+685
    j weblogic.servlet.internal.ServletRequestImpl.execute(Lweblogic/kernel/ExecuteThread;)V+141
    j weblogic.kernel.ExecuteThread.execute(Lweblogic/kernel/ExecuteRequest;)V+23
    j weblogic.kernel.ExecuteThread.run()V+66
    v ~StubRoutines::call_stub
    V [jvm.dll+0x72846]
    V [jvm.dll+0xac976]
    V [jvm.dll+0x72753]
    V [jvm.dll+0x7244f]
    V [jvm.dll+0x72488]
    V [jvm.dll+0x8a3a0]
    V [jvm.dll+0xd0de8]
    V [jvm.dll+0xd0db6]
    C [MSVCRT.dll+0x2a3b0]
    C [kernel32.dll+0xb729]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j jsp_servlet._data_usage.__new_request._jspService(Ljavax/servlet/http/HttpServletRequest;Ljavax/servlet/http/HttpServletResponse;)V+2387
    j com.telus.smartdesktop.framework.JSPControllerServlet.service(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+74
    j weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run()Ljava/lang/Object;+12
    j weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Lweblogic/servlet/internal/FilterChainImpl;)V+387
    j weblogic.servlet.internal.ServletStubImpl.invokeServlet(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Lweblogic/servlet/internal/FilterChainImpl;)V+618
    j weblogic.servlet.internal.TailFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+10
    j weblogic.servlet.internal.FilterChainImpl.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+28
    j com.sun.identity.agents.filter.AmAgentFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V+175
    j weblogic.servlet.internal.FilterChainImpl.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V+28
    j weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run()Ljava/lang/Object;+79
    j weblogic.security.acl.internal.AuthenticatedSubject.doAs(Lweblogic/security/subject/AbstractSubject;Ljava/security/PrivilegedAction;)Ljava/lang/Object;+34
    j weblogic.security.service.SecurityManager.runAs(Lweblogic/security/acl/internal/AuthenticatedSubject;Lweblogic/security/acl/internal/AuthenticatedSubject;Ljava/security/PrivilegedAction;)Ljava/lang/Object;+18
    j weblogic.servlet.internal.WebAppServletContext.invokeServlet(Lweblogic/servlet/internal/ServletRequestImpl;Lweblogic/servlet/internal/ServletResponseImpl;)V+685
    j weblogic.servlet.internal.ServletRequestImpl.execute(Lweblogic/kernel/ExecuteThread;)V+141
    j weblogic.kernel.ExecuteThread.execute(Lweblogic/kernel/ExecuteRequest;)V+23
    j weblogic.kernel.ExecuteThread.run()V+66
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x071c8520 JavaThread "JDWP Command Reader" daemon [_thread_in_native, id=5340]
    0x07aa37b0 JavaThread "Thread-20" daemon [_thread_in_native, id=3248]
    0x07f777f0 JavaThread "HvcReferenceDataPeriodicRefreshThread" daemon [_thread_blocked, id=1448]
    0x07aa30f0 JavaThread "SD-PerformanceMonitorThread" daemon [_thread_blocked, id=5856]
    0x08bb2b48 JavaThread "cache-PrepareThread" daemon [_thread_blocked, id=3968]
    0x07cfe008 JavaThread "cache-CommitThread" daemon [_thread_blocked, id=4128]
    0x00a59410 JavaThread "Thread-14" daemon [_thread_in_native, id=2096]
    0x073e0a20 JavaThread "ListenThread.Default" [_thread_in_native, id=4432]
    0x07b2b808 JavaThread "Thread-12" [_thread_blocked, id=4472]
    0x072ad9f8 JavaThread "Thread-11" daemon [_thread_in_native, id=4160]
    0x0893b648 JavaThread "RulesCachePeriodicRefreshThread" daemon [_thread_blocked, id=2024]
    0x07485828 JavaThread "ReferenceDataRefreshThread" daemon [_thread_blocked, id=2204]
    0x07e80408 JavaThread "ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'" daemon [_thread_in_native, id=1588]
    0x071fb3e8 JavaThread "ExecuteThread: '3' for queue: 'weblogic.socket.Muxer'" daemon [_thread_in_native, id=3532]
    0x07bf4240 JavaThread "ExecuteThread: '2' for queue: 'weblogic.socket.Muxer'" daemon [_thread_in_native, id=112]
    0x07bf40d8 JavaThread "ExecuteThread: '1' for queue: 'weblogic.socket.Muxer'" daemon [_thread_in_native, id=3680]
    0x07294ea0 JavaThread "ExecuteThread: '0' for queue: 'weblogic.socket.Muxer'" daemon [_thread_in_native, id=6016]
    0x00a71e60 JavaThread "com.telus.provider.scheduling.Scheduler@b245dc" daemon [_thread_blocked, id=4636]
    0x07204828 JavaThread "ExecuteThread: '3' for queue: 'JMS.TimerClientPool'" daemon [_thread_blocked, id=5604]
    0x07b2cea0 JavaThread "ExecuteThread: '2' for queue: 'JMS.TimerClientPool'" daemon [_thread_blocked, id=1520]
    0x0791bea0 JavaThread "ExecuteThread: '1' for queue: 'JMS.TimerClientPool'" daemon [_thread_blocked, id=5496]
    0x07849ce0 JavaThread "ExecuteThread: '0' for queue: 'JMS.TimerClientPool'" daemon [_thread_blocked, id=3828]
    0x0739af88 JavaThread "Thread-6" daemon [_thread_blocked, id=2784]
    0x072241d0 JavaThread "ExecuteThread: '0' for queue: 'JMS.TimerTreePool'" daemon [_thread_blocked, id=4004]
    0x072eb7b8 JavaThread "weblogic.health.CoreHealthMonitor" daemon [_thread_blocked, id=3976]
    0x0754ace0 JavaThread "Thread-5" [_thread_blocked, id=3236]
    0x078eac38 JavaThread "DoSManager" [_thread_blocked, id=3740]
    0x07893190 JavaThread "VDE Transaction Processor Thread" [_thread_blocked, id=3408]
    0x07938408 JavaThread "ExecuteThread: '2' for queue: 'weblogic.admin.RMI'" daemon [_thread_blocked, id=4372]
    0x07abb408 JavaThread "ExecuteThread: '1' for queue: 'weblogic.admin.RMI'" daemon [_thread_blocked, id=5148]
    0x07aafda8 JavaThread "ExecuteThread: '0' for queue: 'weblogic.admin.RMI'" daemon [_thread_blocked, id=2656]
    0x0739c898 JavaThread "ExecuteThread: '1' for queue: 'weblogic.admin.HTTP'" daemon [_thread_blocked, id=4264]
    0x074009b8 JavaThread "ExecuteThread: '0' for queue: 'weblogic.admin.HTTP'" daemon [_thread_blocked, id=5196]
    0x078004a8 JavaThread "weblogic.security.SpinnerRandomSource" daemon [_thread_blocked, id=3516]
    0x077ffea8 JavaThread "weblogic.time.TimeEventGenerator" daemon [_thread_blocked, id=1296]
    0x0718aea0 JavaThread "ExecuteThread: '4' for queue: 'weblogic.kernel.System'" daemon [_thread_blocked, id=2072]
    0x0718a220 JavaThread "ExecuteThread: '3' for queue: 'weblogic.kernel.System'" daemon [_thread_blocked, id=2832]
    0x071895d8 JavaThread "ExecuteThread: '2' for queue: 'weblogic.kernel.System'" daemon [_thread_blocked, id=3696]
    0x071d6ed8 JavaThread "ExecuteThread: '1' for queue: 'weblogic.kernel.System'" daemon [_thread_blocked, id=4064]
    0x071d6ac0 JavaThread "ExecuteThread: '0' for queue: 'weblogic.kernel.System'" daemon [_thread_blocked, id=5168]
    0x071d5640 JavaThread "ExecuteThread: '14' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=1184]
    0x071d4ab8 JavaThread "ExecuteThread: '13' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=2200]
    0x07401b68 JavaThread "ExecuteThread: '12' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=4608]
    0x07a99900 JavaThread "ExecuteThread: '11' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=5900]
    0x078b4df8 JavaThread "ExecuteThread: '10' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=4028]
    =>0x078b4ac0 JavaThread "ExecuteThread: '9' for queue: 'weblogic.kernel.Default'" daemon [_thread_in_vm, id=5072]
    0x078b4018 JavaThread "ExecuteThread: '8' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=4108]
    0x07380448 JavaThread "ExecuteThread: '7' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=4740]
    0x07477c30 JavaThread "ExecuteThread: '6' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=4668]
    0x07477a28 JavaThread "ExecuteThread: '5' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=844]
    0x07bdda60 JavaThread "ExecuteThread: '4' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=4588]
    0x07bdd8f8 JavaThread "ExecuteThread: '3' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=3732]
    0x07195918 JavaThread "ExecuteThread: '2' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=5588]
    0x071957b0 JavaThread "ExecuteThread: '1' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=5116]
    0x0787d008 JavaThread "ExecuteThread: '0' for queue: 'weblogic.kernel.Default'" daemon [_thread_blocked, id=4956]
    0x07a7b1f8 JavaThread "Thread-1" daemon [_thread_blocked, id=5328]
    0x00a148a8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=5716]
    0x00a139c0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3524]
    0x00a12538 JavaThread "JDWP Event Helper Thread" daemon [_thread_in_native, id=5680]
    0x009d4d38 JavaThread "JDWP Transport Listener: dt_socket" daemon [_thread_in_native, id=5748]
    0x009d1530 JavaThread "Finalizer" daemon [_thread_blocked, id=4868]
    0x009d0120 JavaThread "Reference Handler" daemon [_thread_blocked, id=4184]
    0x0003ce58 JavaThread "main" [_thread_blocked, id=420]
    Other Threads:
    0x00a116f8 VMThread [id=3084]
    0x00a164f8 WatcherThread [id=4416]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
    [0x0003bc78/0x00000f20] Threads_lock - owner thread: 0x078b4ac0
    Heap
    def new generation total 36288K, used 13059K [0x10010000, 0x12770000, 0x12770000)
    eden space 32256K, 32% used [0x10010000, 0x10a2b788, 0x11f90000)
    from space 4032K, 67% used [0x12380000, 0x12625788, 0x12770000)
    to space 4032K, 0% used [0x11f90000, 0x11f90000, 0x12380000)
    tenured generation total 483968K, used 27091K [0x12770000, 0x30010000, 0x30010000)
    the space 483968K, 5% used [0x12770000, 0x141e4ec0, 0x141e5000, 0x30010000)
    compacting perm gen total 44544K, used 44391K [0x30010000, 0x32b90000, 0x34010000)
    the space 44544K, 99% used [0x30010000, 0x32b69d30, 0x32b69e00, 0x32b90000)
    Dynamic libraries:
    0x00400000 - 0x0040b000      C:\bea\jdk142_11\jre\bin\java.exe
    0x7c900000 - 0x7c9b2000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f6000      C:\WINDOWS\system32\kernel32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f03000      C:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x08000000 - 0x0813f000      C:\bea\jdk142_11\jre\bin\client\jvm.dll
    0x7e410000 - 0x7e4a1000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f59000      C:\WINDOWS\system32\GDI32.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x10000000 - 0x10007000      C:\bea\jdk142_11\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x003a0000 - 0x003ae000      C:\bea\jdk142_11\jre\bin\verify.dll
    0x003c0000 - 0x003d9000      C:\bea\jdk142_11\jre\bin\java.dll
    0x003e0000 - 0x003ee000      C:\bea\jdk142_11\jre\bin\zip.dll
    0x00950000 - 0x0096c000      C:\bea\jdk142_11\jre\bin\jdwp.dll
    0x003f0000 - 0x003f5000      C:\bea\jdk142_11\jre\bin\dt_socket.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\ws2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\mswsock.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    0x06fb0000 - 0x06fbf000      C:\bea\jdk142_11\jre\bin\net.dll
    0x76f20000 - 0x76f47000      C:\WINDOWS\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINDOWS\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINDOWS\system32\WLDAP32.dll
    0x76fc0000 - 0x76fc6000      C:\WINDOWS\system32\rasadhlp.dll
    0x070d0000 - 0x070d8000      C:\bea\jdk142_11\jre\bin\nio.dll
    0x070e0000 - 0x070e6000      C:\bea\jdk142_11\jre\bin\ioser12.dll
    0x09940000 - 0x09945000      C:\bea\weblogic81\server\bin\stackdump.dll
    0x09950000 - 0x09955000      C:\bea\weblogic81\server\bin\wlntio.dll
    0x68000000 - 0x68036000      C:\WINDOWS\system32\rsaenh.dll
    0x769c0000 - 0x76a74000      C:\WINDOWS\system32\USERENV.dll
    0x5b860000 - 0x5b8b5000      C:\WINDOWS\system32\netapi32.dll
    VM Arguments:
    jvm_args: -Xmx512M -Xms512M -Dcom.telus.provider.initialContextFactory=weblogic.jndi.WLInitialContextFactory -Dcom.telus.provider.providerURL=t3://wlpt168smartdteca:6382 -Dcom.telus.credit.providerURL=t3://wlpt168eascommonservices:8623 -Dcom.telusmobility.config.java.naming.factory.initial=com.sun.jndi.ldap.LdapCtxFactory -Dcom.telusmobility.config.java.naming.provider.url=ldap://ldapread-pt168.tmi.telus.com:589/cn=pt168_81,o=telusconfiguration -DignoreIdentity=true -Dbranding=super -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=9090,suspend=n,server=y -Dweblogic.Domain=smartdesktop -Dbea.home=C:\bea -Djava.security.policy==C:\bea\weblogic81\server\lib\weblogic.policy -Dweblogic.ProductionModeEnabled=false
    java_command: weblogic.Server
    Launcher Type: SUN_STANDARD
    Environment Variables:
    JAVA_HOME=C:\bea\jdk142_11
    CLASSPATH=C:\bea\JROCKI~1\lib\tools.jar;C:\bea\WEBLOG~1\server\lib\weblogic_sp.jar;C:\bea\WEBLOG~1\server\lib\weblogic.jar;C:\bea\WEBLOG~1\common\eval\pointbase\lib\pbserver44.jar;C:\bea\WEBLOG~1\common\eval\pointbase\lib\pbclient44.jar;C:\bea\JROCKI~1\jre\lib\rt.jar;C:\bea\WEBLOG~1\server\lib\webservices.jar;.;C:\Program Files\Java\jre1.5.0_09\lib\ext\QTJava.zip;..\..\..\..\common\ThirdParty\sun\mail\activation.jar;..\..\..\..\common\ThirdParty\sun\mail\mail.jar
    PATH=C:\bea\WEBLOG~1\server\bin;C:\bea\jdk142_11\jre\bin;C:\bea\jdk142_11\bin;C:\bea\WEBLOG~1\server\bin;C:\bea\jdk142_11\jre\bin;C:\bea\jdk142_11\bin;C:\bea\WEBLOG~1\server\bin;C:\bea\JROCKI~1\jre\bin;C:\bea\JROCKI~1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\Program Files\ActivIdentity\ActivClient\;C:\Program Files\Borland\CaliberRM SDK 2008\lib;C:\Program Files\Borland\StarTeam SDK 10.0\Lib;C:\Program Files\Borland\StarTeam SDK 10.0\Bin;C:\Program Files\Borland\CaliberRM SDK 2008;C:\Program Files\Borland\StarTeam SDK 10.0;C:\Program Files\Windows Imaging\;C:\Program Files\Oracle\jre\1.1.8\bin\;C:\Oracle9i\bin\;C:\ORACLE\Product\11.2.0\client_1;C:\WINDOWS\system32\;C:\WINDOWS\system32\Wbem;C:\Program Files\InstallShield\AdminStudio\6.0\ConflictSolver;C:\Program Files\ClickSoftware\Service Optimization\Bin;C:\Program Files\Windows Imaging;C:\Program Files\QuickTime\QTSystem\;C:\bea\WEBLOG~1\server\bin\oci920_8;C:\bea\WEBLOG~1\server\bin\oci920_8
    USERNAME=x120751
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 37 Stepping 5, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 3
    CPU:total 4 family 6, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 2097151k(1723568k free), swap 4194303k(4117288k free)
    vm_info: Java HotSpot(TM) Client VM (1.4.2_11-b06) for windows-x86, built on Feb 13 2006 10:19:30 by "java_re" with MS VC++ 6.0
    My ant build.xml is as given below
    <case value="pt">
    <property name="jvmArgs" value="-hotspot -Xmx512M -Xms512M -Dcom.telus.provider.initialContextFactory=weblogic.jndi.WLInitialContextFactory -Dcom.telus.provider.providerURL=cc://wlpt111smartdteca:4444 -Dcom.telus.cd.providerURL=w3://wlpt111eascommonservices:444 -Dcom.mobility.config.java.naming.factory.initial=com.sun.jndi.ldap.LdapCtxFactory -Dcom.bility.config.java.naming.provider.url=ldap://ldapread-pt.tmi.cins.com:555/cn=pt33_181,o=telusconfiguration"/>
    </case>
    <java failonerror="true" fork="true" dir="${deployDir}/jspc" classname="weblogic.appc" classpathref="appc.classpath">
    <jvmarg line="-Xmx1024M -Xms1024M"/>
    <arg line="-forceGeneration -verbose -deprecation ${sourceDir}/html"/>
    </java>

    Hi user13118647,
    It looks like your application is triggering an existing Sun HotSpot VM bug from the older 1.4.2_11 JDK.
    Please review the Sun bug references below.
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6405062
    http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6385867
    The problem appears to be resolved in JDK 1.4.2_13(b01). You may want to download and attempt to replicate with this service pack upgrade.
    Another potential problem I noticed is at your classpath level. It looks like you are using a mix of runtime JDK jar files from the Sun JDK and JRockit. Please ensure your JDK classpath; including any reference to any JDK related runtime jar files (tools.jar, rt.jar etc.) is consistent and unique e.g. Sun HotSpot or Oracle JRockit but not both.
    ## Example:
    JAVA_HOME=C:\bea\jdk142_11 // JDK home is setup to the Sun JDK
    CLASSPATH=C:\bea\JROCKI~1\lib\tools.jar; // tools.jar is loaded from the JRockit JDK home
    Regards,
    P-H
    http://javaeesupportpatterns.blogspot.com/

  • Building and Deploying Java applications in different platform (OS)

    Hi all,
    We currently have a J2EE based web services application that is built (compiled) and deployed on Windows 2000 Advanced server. But in future, we will be using WIndows 2000 server for development only and HP-UX for production.
    So, we are planning on executing the build (compilation) of our application on Windows 2000 server and deploy the same binaries (WAR) on HP-UX also. So, I wanted to know anyone has faced issues in the past by deploying an application on a different platform than the one on which it was compiled. Is it recommended by SUN to compile and build Java applications on the same platform on which the application is deployed.
    Note that in my case, the JVM versions between Windows server and HP-UX would be the same. But the JVM for Windows server has been provided by Sun and the JVM for HP-UX has been provided by HP-UX.
    Your inputs are greatly appreciated.

    Well, it's all Java, right? So what's the problem? Since the JVM for HP-UX isn't made by Sun, so there could be compatibility problems, but I would expect that would be minimal if a problem at all. But you can't know unless you run it.
    I don't know about building on the different systems. Java's supposed to be write once, run anywhere.... The byte code should be compatible no matter what. I've never heard of Sun saying "compile it on each platform". If the HP JVM isn't going to like bytecode compiled on Windows or another OS, then something isn't kosher with someone's JVM or compiler.

  • Can Photoshop Starter Editor 3.0 run as a server application

    Can Photoshop Starter Editor 3.0 run as a server application and be accessed by more then one computer simultaniously? If this is in breach of the license agreement, where can I find more information on this ?
    If this program cant perform as a server app. is Adobe Photoshop Album 2.0 able to operate as a server app. ?

    Okay Tom...
    Now these may be things that people have already discussed in the forum, so
    you'll have to pardon me if you already know this.
    You CAN use the database on the server and put the application on the client
    computer. PSE prevents multiple accesses to the same database so that will
    avoid any conflict issues, however you would still need to contact Adobe
    about licencing. Further with PSE 4.0 out now... you are looking at another
    application.
    I'll see what Picassa can do, but I would NOT hold my breath... and while it
    is a handy little app, for me it is FAR too limited for anything more than a
    quick search and some very basic tools.
    I'll see what I can do in the next 20 minutes or so and get back to you.
    Cheers

  • Difference between BSP_WD_CMPWB  and SE80/BSP Application

    Hi Guys,
    This is related to SAP CRM Module.
    Can somebody tell the difference between BSP_WD_CMPWB and SE80 / BSP Applications.
    Also can somebody give the tutorial for BSP_WD_CMPWB.
    Thanks,

    post this in CRM web forum at
    SAP CRM: Interaction Center

  • I'm having trouble with custom ringtones.  I have downloaded the free software "makeTones" and have created some ringtones.  I then copied those to Mac and played them in ITunes.  My Itunes does not have a ringtone tab.  I can not sync the ringtones.

    I'm having trouble with custom ringtones.  I have downloaded the free software "makeTones" and have created some ringtones.  I then copied those to Mac and played them in ITunes.  My Itunes library does not have a ringtones tab.  I can not sync the ringtones (or I don't know how)!  Please help.

    Yes, the file extension is M4R.  Does it matter where I save these files on my Macbook?  I then opened them in Itunes and played them.  I did find the Tones folder in Itunes but the Tones or Ringtones tab does not show up when I select Iphone (within Itunes).  When I open the Tones folder in the Library, it is empty.  Thanks in advance for your help.

  • Can we programmatically search, hightlight text and make annotations in PDF using JQuery?

    How can i  programmatically search, hightlight text and make annotations in PDF using JQuery?

    JQuery is part of the OS and Acrobat/Reader is very isolated from the contact with the OS. If you were to write a plug-in in and add it to your copy of Acrobat/Reader you could then use that plug-in to access the OS shell.

  • Create exe that can open .llb and edit contents

    Is there a way to create an exe that can open a Labview .LLB and replace certain vi's within it? I'm trying to develop a patching tool that can make upgrades and fixes to existing customer installations without requiring the customer to reinstall the entire product.

    Jim77215 wrote:
    thankyou  for that information. I've been trying to download download VIPM 1.0 but so far have not been successful. The download starts but never gets past the 2% marker.
    I just tested the download and it seems to be working OK.  Are you still having issues?

Maybe you are looking for

  • I-tunes cannot connect to I-tunes store

    I just downloaded I-tunes 7, now when I go to the music store it says that it cannot connect to I-tunes store, and the network connection was confused.

  • Ipod playing some of the song the skips it

    hello my ipod nano 3rd gen on some certain songs but some of them it plays for like a minute then skips it i have tryed to restore and re download the song PLEASE HELP

  • "Previous iTunes Library" title. How do I remove this?

    I upgraded to iTunes 10 and when I decided to open iTunes it told me to choose a library. I chose the most recent one but noticed that some songs were missing. Right now I have organized all of my music under the iTunes folder and deleted all the oth

  • Multiple OMAs on same OMS Host

    Hi - I have not tried this but wanted to get some input if i can do it etall. I have two different OMS servers. I'm planning to install additional agent on each OMS and monitor other OMS---meaning... OMS1 - has its own agent OMA1 OMS2 - has its own a

  • PPT on ipod touch

    Can ppt files be shown on my ipod touch? If so what program can I use and where can I download it? Thanks for the help!