Error NO_RESOURCES when using Apache Plug-in for Weblogic

Hi all,
LoadModule weblogic_module modules/mod_wl.so
   OS.....: OEL 6.3 64 bits
   Weblogic Server: 12.1.0.2 (192.168.0.123)
   Apache: Apache/2.2.15 (Unix) (192.168.0.149)
   I am trying to configure the Apache Plug-in to forward the requests to the Weblogic Server. I already did all the configuration, but when i try to access a page, i get the following error in Apache's error.log:
[Wed Dec 03 18:25:42 2014] [error] [client 192.168.0.149] <649114176419322> weblogic: *******Exception type [NO_RESOURCES] (apr_socket_connect call failed with error=13, host=192.168.0.123, port=7006 ) raised at line 1682 of URL.cpp
[Wed Dec 03 18:25:42 2014] [error] [client 192.168.0.149] weblogic: Trying GET /benefits/ at backend host '192.168.0.123/7006; got exception 'NO_RESOURCES: [os error=13,  line 1682 of URL.cpp]: apr_socket_connect call failed with error=13, host=192.168.0.123, port=7006 '
[Wed Dec 03 18:25:44 2014] [error] [client 192.168.0.149] <649114176419322> weblogic: request [/benefits/] did NOT process successfully..................
   My httpd.conf if configured as follows:
Listen 8080
LoadModule weblogic_module modules/mod_wl.so
<IfModule mod_weblogic.c>
   WeblogicHost 192.168.0.123
   WeblogicPort 7006
</IfModule>
<Location /benefits>
   SetHandler weblogic-handler
</Location>
When i try to access the app deployed in Weblogic with the following address: "http://192.168.0.149:8080/benefits/" , i get the error mentioned above and the following error is displayed in my browser:
   Failure of Web Server bridge:
   No backend server available for connection: timed out after 10 seconds or idempotent set to OFF or method not idempotent.
What am i doing wrong?
Thanks in advance.

Hi all,
I had some progress... i disabled the firewall (SELinux) on the Apache server. Before, i had just disabled the firewall from the Weblogic Server. Now, when i access the apache server, it redirects (sometimes, actually) the request to my Weblogic Cluster. Let's say that 50% of the time it works and the other 50% i get the error informed previously.
   I am using the apache user and the ulimit of this user is:
      [apache@vm-apache conf]$ ulimit -a
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 15915
max locked memory       (kbytes, -l) 64
max memory size         (kbytes, -m) unlimited
open files                      (-n) 1024
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 8192
cpu time               (seconds, -t) unlimited
max user processes              (-u) 1024
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited
   From the Apache server (192.168.0.149), when i execute the "culr" command, i get the following message:
      [apache@vm-apache conf]$ curl http://192.168.0.123:7006/benefits
      <html><head><title>302 Moved Temporarily</title></head>
      <body bgcolor="#FFFFFF">
      <p>This document you requested has moved temporarily.</p>
      <p>It's now at <a href="http://192.168.0.123:7006/benefits/">http://192.168.0.123:7006/benefits/</a>.</p>
      </body></html>
   The message above represents a OK situation or a problematic one?
   Below you can see the last few lines of my Error Log and Access Log:
   ### error log ###
[Thu Dec 18 20:54:16 2014] [error] [client 192.168.0.123] <340514189468553> weblogic: parseJVMID: could not resolve hostname '-1062731653'. Returning NULL from parseJVMID 
[Thu Dec 18 20:54:16 2014] [error] [client 192.168.0.123] <340314189468563> weblogic: parseJVMID: could not resolve hostname '-1062731653'. Returning NULL from parseJVMID
[Thu Dec 18 20:54:17 2014] [error] [client 192.168.0.123] File does not exist: /var/www/html/favicon.ico
[Thu Dec 18 20:54:17 2014] [error] [client 192.168.0.123] File does not exist: /var/www/html/favicon.ico
[Thu Dec 18 20:54:21 2014] [error] [client 192.168.0.123] <340114189468603> weblogic: parseJVMID: could not resolve hostname '-1062731653'. Returning NULL from parseJVMID, referer: http://192.168.0.149:8080/benefits/
[Thu Dec 18 20:54:44 2014] [error] [client 192.168.0.149] <339814189468792> weblogic: parseJVMID: could not resolve hostname '-1062731653'. Returning NULL from parseJVMID
[Thu Dec 18 20:54:44 2014] [error] [client 192.168.0.149] <339814189468792> weblogic: initJVMID: parseClusterServerList failure
[Thu Dec 18 20:54:45 2014] [error] [client 192.168.0.123] <339914189468844> weblogic: parseJVMID: could not resolve hostname '-1062731653'. Returning NULL from parseJVMID, referer: http://192.168.0.149:8080/benefits/servlet
[Thu Dec 18 20:54:45 2014] [error] [client 192.168.0.123] <339914189468844> weblogic: initJVMID: parseClusterServerList failure, referer: http://192.168.0.149:8080/benefits/servlet
[Thu Dec 18 20:54:56 2014] [error] [client 192.168.0.149] <339814189468792> weblogic: request [/benefits/welcome.html] did NOT process successfully..................
[Thu Dec 18 20:54:57 2014] [error] [client 192.168.0.123] <339914189468844> weblogic: request [/benefits/welcome.html] did NOT process successfully.................., referer:http://192.168.0.149:8080/benefits/servlet
   ### access log ###
192.168.0.123 - - [18/Dec/2014:20:54:15 -0300] "GET /benefits HTTP/1.1" 302 267 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:10.0.5) Gecko/20120605 Firefox/10.0.5" 
192.168.0.123 - - [18/Dec/2014:20:54:16 -0300] "GET /benefits/ HTTP/1.1" 200 5832 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:10.0.5) Gecko/20120605 Firefox/10.0.5"
192.168.0.123 - - [18/Dec/2014:20:54:17 -0300] "GET /favicon.ico HTTP/1.1" 404 290 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:10.0.5) Gecko/20120605 Firefox/10.0.5"
192.168.0.123 - - [18/Dec/2014:20:54:17 -0300] "GET /favicon.ico HTTP/1.1" 404 290 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:10.0.5) Gecko/20120605 Firefox/10.0.5"
192.168.0.123 - - [18/Dec/2014:20:54:20 -0300] "POST /benefits/servlet HTTP/1.1" 200 492 "http://192.168.0.149:8080/benefits/" "Mozilla/5.0 (X11; Linux x86_64; rv:10.0.5) Gecko/20120605 Firefox/10.0.5"
192.168.0.149 - - [18/Dec/2014:20:54:39 -0300] "GET /benefits/welcome.html HTTP/1.1" 503 250 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:10.0.5) Gecko/20120605 Firefox/10.0.5"
192.168.0.123 - - [18/Dec/2014:20:54:44 -0300] "GET /benefits/welcome.html HTTP/1.1" 503 250 "http://192.168.0.149:8080/benefits/servlet" "Mozilla/5.0 (X11; Linux x86_64; rv:10.0.5) Gecko/20120605 Firefox/10.0.5"
Is there any additional or recommended configuration for this solution to work properly?
Thanks again for the attention and pacience.

Similar Messages

  • Apache plug-in for weblogic server under linux

    Ladies and gents,
              Having problems getting the plug-in working..............
              System components:
              RedHat linux 6.1
              BEA Weblogic server 5.1
              Apache web server 1.3.19 (WLS supports the plug-in)
              I have enabled DSO support and verified this using
              {APACHEHOME}/bin/httpd -l which lists mod_so.c as one of its
              components
              I have installed and activated the plug-in using apxs
              To verify that the plug-in was installed I did this:
              %grep weblogic {APACHEHOME}/conf/httpd.conf
              which returns
              LoadModule weblogic_module libexec/mod_wl.so
              BUT NOT:
              AddModule mod_weblogic.c
              I have checked {APACHEHOME}/src/modules/standard and that does not
              contain the file. Please could someone mail me the source file
              "mod_weblogic.c" or enlighten me as to why this not happening.
              Many thanks in advance,
              Kevin
              

    Ladies and gents,
              Having problems getting the plug-in working..............
              System components:
              RedHat linux 6.1
              BEA Weblogic server 5.1
              Apache web server 1.3.19 (WLS supports the plug-in)
              I have enabled DSO support and verified this using
              {APACHEHOME}/bin/httpd -l which lists mod_so.c as one of its
              components
              I have installed and activated the plug-in using apxs
              To verify that the plug-in was installed I did this:
              %grep weblogic {APACHEHOME}/conf/httpd.conf
              which returns
              LoadModule weblogic_module libexec/mod_wl.so
              BUT NOT:
              AddModule mod_weblogic.c
              I have checked {APACHEHOME}/src/modules/standard and that does not
              contain the file. Please could someone mail me the source file
              "mod_weblogic.c" or enlighten me as to why this not happening.
              Many thanks in advance,
              Kevin
              

  • When connecting to Itunes, it shows the following error: registry settings used by itunes drivers for importing and burning cds are missing.  I have installed the gear drivers, uninstalled and installed itunes still showing same error.  Anything else?

    When connecting to Itunes, it shows the following error: registry settings used by itunes drivers for importing and burning cds are missing.
    I have edited the registery, downloaded the Gear drivers, uninstalled and installed itunes, and the error still appears.
    What else can I do.  Cannot connect any of our iphones or ipods to itunes because of this error. 

    I have edited the registery,
    We'd better have a closer look at the keys to see what's going on.
    Can you post a screenshot of the contents of the key you've been editing, please? Include all of the regedit screen, including the left-hand column. Save the screenshot to an image file, and insert the image file in a reply by clicking the wee camera icon at the top of the reply window.

  • I receive the following error message when trying to install QuickTime for Windows "Error writing to file C:/Program Files/QuickTime/QTSystems/QuickTimeCheck.ocx. Verify that you have access to that directory."

    I recieve the following error message when trying to install Quicktime for Windows "Error writing to file C:/Program Files/QuickTime/QTSystems/QuickTimeCheck.ocx. Verify that you have access to that directory."  I just trying to get the latest version of iTunes.  Thanks

    "Error writing to file C:/Program Files/QuickTime/QTSystems/QuickTimeCheck.ocx. Verify that you have access to that directory."
    That one's consistent with disk/file damage. The first thing I'd try with that is running a disk check (chkdsk) over your C drive.
    XP instructions in the following document: How to perform disk error checking in Windows XP
    Select both Automatically fix file system errors and Scan for and attempt recovery of bad sectors, or use chkdsk /r (depending on which way you decide to go about doing this). You'll almost certainly have to schedule the chkdsk to run on startup. The scan should take quite a while ... if it quits after a few minutes or seconds, something's interfering with the scan.
    Does the chkdsk find/repair any damage? If so, can you get an install to go through properly afterwards?

  • Error message when using xrpcc in JWSDP 1_0_01

    Dear all,
    I've got the following error message when using xrpcc of JWSDP 1_0_01 for my config.xml file.
    D:\jwsdp-1_0_01\Message>xrpcc -classpath build -both -d build config.xml
    error: invalid element "{http://java.sun.com/jax-rpc-ri/xrpcc-config}configurati
    on" in configuration file (line 2)
    The content of 'config.xml' is shown as follows.
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration xmlns="http://java.sun.com/jax-rpc-ri/xrpcc-config">
    <rmi name="MessageService"
    targetNamespace="http://messageuri.com/wsdl"
    typeNamespace="http://messageuri/types">
    <service name="MyMessage" packageName="Message">
    <interface name="Message.MessageIF"
    servantName="Message.MessageImpl"/>
    </service>
    </rmi>
    </configuration>
    Thank you for your kind attention!
    Regards,
    Eddie

    Thanks all! I've already solved my previous problem, however, i got another one now.
    =========================================================
    error: unknown model info in configuration file (line 5)
    =========================================================
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
    <rmi name="MessageService"
    targetNamespace="http://messageuri.com/wsdl"
    typeNamespace="http://messageuri.com/types">
    <service name="MyMessage" packageName="Message">
    <interface name="Message.MessageIF"
    servantName="Message.MessageImpl" />
    </service>
    </rmi>
    </configuration>
    Thanks,
    Eddie

  • Error message when using search

    why do i keep getting an error message when using the "search" tabe in iTunes. This happend whe i upgraded t the latest version of itunes.

    Well, I believe JHeadstart does not really have this functionality.
    One way is use a Query Operator 'startsWith', but then you always query like LIKE '<entered search value>%'
    This is probably not what you want...
    But you could hack it into advancedSearch in YourApplicationModuleImpl
    try {
    if (viewCriterium.getQueryValue() != null) { //This is where exception JHS-00116 is raised...
    value = viewCriterium.getQueryValue().toString();
    } else {
    value = null;
    catch (NumberFormatException ex) {
    //insert check for wildcard
    value = viewCriterium.getValue().toString();
    if (value.indexOf('%')>=0) {          
    sLog.debug("Ja, een wildcard!!!");
    operator = "LIKE";
    } else {//original exceptionhandling code here...
    ...and a bit later, add test for "LIKE":
    if (viewCriterium.isDate() || viewCriterium.isString() || "LIKE".equals(operator)) {
    value = "'" + value + "'";
    very nasty code, and does not raise an exception for searches like '%xxx'
    Good luck,
    HJH
    Edited by: HJHorst on Mar 5, 2009 12:03 AM

  • Error message when using FM 'BAPI_BUPA_ADDRESS_CHANGE'.

    I'm continually getting an error message when using FM 'BAPI_BUPA_ADDRESS_CHANGE'. The message being 'Table BAPIADTEL entry to be changed not found in target system'.
    I have looked up this message but all links seem to refer to FM 'BAPI_BUPA_CENTRAL_CHANGE', which I'm not using, and has different parameter settings.
    I'm simply trying to update the telephone number and I'm updating strcuture BAPIADTEL and BAPIADTELX but still the message appears. I know that there is a really simple reason for this, but I have been double-checking everything and experimenting with lots of different areas, but with no effect.
    Has anyone encountered this problem using the specific FM ''BAPI_BUPA_ADDRESS_CHANGE' ?.
    Jason

    Hi Jason,
    In case your database tables had already value for field telephone number, then only the flag should be "U".
    If the telephone number field was empty, and we will try to change it by using the flag as U, it wont work. In this case, we should be using "I".
    I even wrote that before in this post, but somehow I guess the post was locked, and a lot of comments from you and me were not visible apart from the first two. So, I couldnt get any update from you.
    Anyway, its good that its working for you. Thank you for the update.
    Regards,
    Susanta

  • Aperture crashes when using NIK Plug-In

    I have a Mac Pro 2008 8-core 2.8 with 16 GB ram and the ATI HD 5870.
    Sometimes in Aperture 3 (newest update) when using NIK plug-in colorefex pro 4 it crashes.
    It only crashes when performing certain tasks, like certain recipes.  Or more often when I try to edit multiple images at once with the plug-in.
    The plug-in works fine with PS, but you can not edit mulitple images at a time.
    As per NIK's suggestion, I deleted any duplicate arial fonts but it hasn't helped.
    Thanks for any help,
    here's my crash report
    Process:         Aperture [1900]
    Path:            /Applications/Aperture.app/Contents/MacOS/Aperture
    Identifier:      com.apple.Aperture
    Version:         3.2.1 (3.2.1)
    Build Info:      Aperture-201094000000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [170]
    PlugIn Path:       /Library/Application Support/Aperture/*/Color Efex Pro 4
    PlugIn Identifier: com.niksoftware.cep4.aperture_edit
    PlugIn Version:    4.0 (4.0)
    Date/Time:       2011-12-08 15:44:48.904 -0500
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          788756 sec
    Crashes Since Last Report:           20
    Per-App Interval Since Last Report:  317967 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      F7B82CE4-FBF4-44B5-8BD0-52AED3F4B94C
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000000000004c
    VM Regions Near 0x4c:
    -->
        __TEXT                 0000000100000000-000000010078c000 [ 7728K] r-x/rwx SM=COW  /Applications/Aperture.app/Contents/MacOS/Aperture
    Application Specific Information:
    objc[1900]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.ATIRadeonX3000GLDriver          0x000000010d97503f 0x10d91f000 + 352319
    1   com.apple.ATIRadeonX3000GLDriver          0x000000010d94e622 0x10d91f000 + 194082
    2   com.apple.ATIRadeonX3000GLDriver          0x000000010d95db80 gldUpdateDispatch + 202
    3   GLEngine                                0x000000010cf02b42 gleDoSelectiveDispatchNoErrorCore + 352
    4   GLEngine                                0x000000010ce390bc glGetTexLevelParameteriv_Exec + 2387
    5   com.niksoftware.cep4.aperture_edit          0x00000001a0df3461 luabridge::rawgetfield(lua_State*, int, char const*) + 5007156
    6   com.niksoftware.cep4.aperture_edit          0x00000001a0e138fd luabridge::rawgetfield(lua_State*, int, char const*) + 5139408
    7   com.niksoftware.cep4.aperture_edit          0x00000001a0e14798 luabridge::rawgetfield(lua_State*, int, char const*) + 5143147
    8   com.niksoftware.cep4.aperture_edit          0x00000001a0dbc40a luabridge::rawgetfield(lua_State*, int, char const*) + 4781789
    9   com.niksoftware.cep4.aperture_edit          0x00000001a0dbc6b6 luabridge::rawgetfield(lua_State*, int, char const*) + 4782473
    10  com.niksoftware.cep4.aperture_edit          0x00000001a0da3783 luabridge::rawgetfield(lua_State*, int, char const*) + 4680278
    11  com.niksoftware.cep4.aperture_edit          0x00000001a0db3432 luabridge::rawgetfield(lua_State*, int, char const*) + 4744965
    12  com.niksoftware.cep4.aperture_edit          0x00000001a0f1b0ac luabridge::rawgetfield(lua_State*, int, char const*) + 6218623
    13  com.niksoftware.cep4.aperture_edit          0x00000001a0bfb791 luabridge::rawgetfield(lua_State*, int, char const*) + 2943588
    14  com.niksoftware.cep4.aperture_edit          0x00000001a0d63bcc luabridge::rawgetfield(lua_State*, int, char const*) + 4419231
    15  com.niksoftware.cep4.aperture_edit          0x00000001a0f05b3a luabridge::rawgetfield(lua_State*, int, char const*) + 6131213
    16  com.niksoftware.cep4.aperture_edit          0x00000001a0f063e4 luabridge::rawgetfield(lua_State*, int, char const*) + 6133431
    17  com.niksoftware.cep4.aperture_edit          0x00000001a12b3bae nbError nbGaussianBlurYoungVanVlietWorkerUInt<unsigned char, nbTileSet, nbTileSet, nbTileSet>(nbTileSet const*, double, nbTileSet*) + 277102
    18  com.niksoftware.cep4.aperture_edit          0x00000001a12b4318 nbError nbGaussianBlurYoungVanVlietWorkerUInt<unsigned char, nbTileSet, nbTileSet, nbTileSet>(nbTileSet const*, double, nbTileSet*) + 279000
    19  com.niksoftware.cep4.aperture_edit          0x00000001a0a48a68 luabridge::rawgetfield(lua_State*, int, char const*) + 1162555
    20  com.niksoftware.cep4.aperture_edit          0x00000001a128c888 nbError nbGaussianBlurYoungVanVlietWorkerUInt<unsigned char, nbTileSet, nbTileSet, nbTileSet>(nbTileSet const*, double, nbTileSet*) + 116552
    21  com.niksoftware.cep4.aperture_edit          0x00000001a0bed0a8 luabridge::rawgetfield(lua_State*, int, char const*) + 2884475
    22  com.apple.AppKit                        0x00007fff8ca950cc -[NSView _drawRect:clip:] + 3995
    23  com.apple.AppKit                        0x00007fff8ca92d7e -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3020
    24  com.apple.AppKit                        0x00007fff8ca9386f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5821
    25  com.apple.AppKit                        0x00007fff8ca91ab3 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 270
    26  com.apple.AppKit                        0x00007fff8ca8cec9 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4755
    27  com.apple.AppKit                        0x00007fff8ca8593e -[NSView displayIfNeeded] + 1676
    28  com.apple.AppKit                        0x00007fff8ca8507d _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 648
    29  com.apple.CoreFoundation                0x00007fff8fcf1f37 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    30  com.apple.CoreFoundation                0x00007fff8fcf1e96 __CFRunLoopDoObservers + 374
    31  com.apple.CoreFoundation                0x00007fff8fcc7159 __CFRunLoopRun + 825
    32  com.apple.CoreFoundation                0x00007fff8fcc6ae6 CFRunLoopRunSpecific + 230
    33  com.apple.HIToolbox                     0x00007fff878113d3 RunCurrentEventLoopInMode + 277
    34  com.apple.HIToolbox                     0x00007fff8781863d ReceiveNextEventCommon + 355
    35  com.apple.HIToolbox                     0x00007fff878184ca BlockUntilNextEventMatchingListInMode + 62
    36  com.apple.AppKit                        0x00007fff8ca493f1 _DPSNextEvent + 659
    37  com.apple.AppKit                        0x00007fff8ca48cf5 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    38  com.apple.Aperture                      0x00000001004b289b 0x100000000 + 4925595
    39  com.apple.AppKit                        0x00007fff8ccffec5 -[NSApplication _realDoModalLoop:peek:] + 610
    40  com.apple.AppKit                        0x00007fff8ccffaf9 -[NSApplication runModalForWindow:] + 120
    41  com.niksoftware.cep4.aperture_edit          0x00000001a0bba2ec luabridge::rawgetfield(lua_State*, int, char const*) + 2676159
    42  com.niksoftware.cep4.aperture_edit          0x00000001a094109b luabridge::rawgetfield(lua_State*, int, char const*) + 82798
    43  com.niksoftware.cep4.aperture_edit          0x00000001a023f4f4 nik::plugin_common::BaseImageHandler::setInputImage(nik::util::SharedPtr<nik::i maging::Image> const&) + 2676
    44  com.niksoftware.cep4.aperture_edit          0x00000001a024034a nik::plugin_common::BaseImageHandler::BaseImageHandler(nik::util::SharedPtr<nik ::plugin_common::ImageFileAbstraction> const&) + 762
    45  com.niksoftware.cep4.aperture_edit          0x00000001a02407e6 nik::plugin_common::BaseImageHandler::create(nik::util::SharedPtr<nik::plugin_c ommon::ImageFileAbstraction> const&) + 54
    46  com.niksoftware.cep4.aperture_edit          0x00000001a0212573 nik::plugin_common::BaseApplicationController::createImageHandlerFromImageFile( nik::util::SharedPtr<nik::plugin_common::BaseApplicationController::ImageFile>) + 899
    47  com.niksoftware.cep4.aperture_edit          0x00000001a0197b6c 0x1a0152000 + 285548
    48  com.niksoftware.cep4.aperture_edit          0x00000001a021c200 nik::plugin_common::BaseApplicationController::loadImage(unsigned long) + 480
    49  com.niksoftware.cep4.aperture_edit          0x00000001a0bb13ad luabridge::rawgetfield(lua_State*, int, char const*) + 2639488
    50  com.niksoftware.cep4.aperture_edit          0x00000001a0362822 nik::plugin_common::BaseBottomBar::onNextClicked() + 130
    51  com.niksoftware.cep4.aperture_edit          0x00000001a0a51ddd luabridge::rawgetfield(lua_State*, int, char const*) + 1200304
    52  com.niksoftware.cep4.aperture_edit          0x00000001a0b3dc51 luabridge::rawgetfield(lua_State*, int, char const*) + 2166564
    53  com.niksoftware.cep4.aperture_edit          0x00000001a0aed90f luabridge::rawgetfield(lua_State*, int, char const*) + 1838050
    54  com.niksoftware.cep4.aperture_edit          0x00000001a0a963dc luabridge::rawgetfield(lua_State*, int, char const*) + 1480367
    55  com.niksoftware.cep4.aperture_edit          0x00000001a0bf0a2a luabridge::rawgetfield(lua_State*, int, char const*) + 2899197
    56  com.apple.AppKit                        0x00007fff8cb171a6 -[NSWindow sendEvent:] + 6504
    57  com.apple.AppKit                        0x00007fff8caaf68f -[NSApplication sendEvent:] + 5593
    58  com.apple.prokit                        0x00000001013651b8 -[NSProApplication sendEvent:] + 1829
    59  com.apple.Aperture                      0x00000001004b282b 0x100000000 + 4925483
    60  com.apple.AppKit                        0x00007fff8ccfff27 -[NSApplication _realDoModalLoop:peek:] + 708
    61  com.apple.AppKit                        0x00007fff8ccffaf9 -[NSApplication runModalForWindow:] + 120
    62  com.apple.Aperture                      0x0000000100271127 0x100000000 + 2560295
    63  com.apple.Aperture                      0x00000001000378cd 0x100000000 + 227533
    64  com.apple.CoreFoundation                0x00007fff8fd21a1d -[NSObject performSelector:withObject:] + 61
    65  com.apple.AppKit                        0x00007fff8cb4e710 -[NSApplication sendAction:to:from:] + 139
    66  com.apple.prokit                        0x0000000101366fce -[NSProApplication sendAction:to:from:] + 100
    67  com.apple.Aperture                      0x00000001004b1a37 0x100000000 + 4921911
    68  com.apple.AppKit                        0x00007fff8cc3bbd7 -[NSMenuItem _corePerformAction] + 399
    69  com.apple.AppKit                        0x00007fff8cc3b90e -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
    70  com.apple.AppKit                        0x00007fff8ced8194 -[NSMenu _internalPerformActionForItemAtIndex:] + 38
    71  com.apple.AppKit                        0x00007fff8cd69ce5 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 138
    72  com.apple.AppKit                        0x00007fff8cbb551f NSSLMMenuEventHandler + 339
    73  com.apple.HIToolbox                     0x00007fff87817308 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1263
    74  com.apple.HIToolbox                     0x00007fff87816914 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 446
    75  com.apple.HIToolbox                     0x00007fff8782d6c7 SendEventToEventTarget + 76
    76  com.apple.HIToolbox                     0x00007fff878739f5 _ZL18SendHICommandEventjPK9HICommandjjhPKvP20OpaqueEventTargetRefS5_PP14OpaqueE ventRef + 398
    77  com.apple.HIToolbox                     0x00007fff8795a645 SendMenuCommandWithContextAndModifiers + 56
    78  com.apple.HIToolbox                     0x00007fff879a0ef9 SendMenuItemSelectedEvent + 253
    79  com.apple.HIToolbox                     0x00007fff8786cb07 _ZL19FinishMenuSelectionP13SelectionDataP10MenuResultS2_ + 101
    80  com.apple.HIToolbox                     0x00007fff87999909 _ZL19PopUpMenuSelectCoreP8MenuData5PointdS1_tjPK4RecttjS4_S4_PK10__CFStringPP13 OpaqueMenuRefPt + 1660
    81  com.apple.HIToolbox                     0x00007fff87999bc8 _HandlePopUpMenuSelection7 + 621
    82  com.apple.AppKit                        0x00007fff8cd6c9b1 _NSSLMPopUpCarbonMenu3 + 3860
    83  com.apple.AppKit                        0x00007fff8cd6a9b1 -[NSCarbonMenuImpl _popUpContextMenu:withEvent:forView:withFont:] + 190
    84  com.apple.prokit                        0x00000001013f8aef -[NSProCarbonMenuImpl _popUpContextMenu:withEvent:forView:withFont:] + 388
    85  com.apple.prokit                        0x0000000101356204 -[NSMenu(ProAdditions) _popUpContextMenu:withEvent:forView:withFont:] + 529
    86  com.apple.AppKit                        0x00007fff8d0bec9d -[NSView rightMouseDown:] + 129
    87  com.apple.Aperture                      0x00000001001bb546 0x100000000 + 1815878
    88  com.apple.AppKit                        0x00007fff8cb17544 -[NSWindow sendEvent:] + 7430
    89  com.apple.prokit                        0x0000000101389360 -[NSProWindow sendEvent:] + 242
    90  com.apple.AppKit                        0x00007fff8caaf68f -[NSApplication sendEvent:] + 5593
    91  com.apple.prokit                        0x00000001013651b8 -[NSProApplication sendEvent:] + 1829
    92  com.apple.Aperture                      0x00000001004b282b 0x100000000 + 4925483
    93  com.apple.AppKit                        0x00007fff8ca45682 -[NSApplication run] + 555
    94  com.apple.prokit                        0x00000001013673c6 NSProApplicationMain + 387
    95  com.apple.Aperture                      0x000000010000f4a4 0x100000000 + 62628
    96  com.apple.Aperture                      0x000000010000f264 0x100000000 + 62052
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff863f87e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff8ecff5be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff8ecfe14e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff863f667a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863f5d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8fcbeb6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8fcc72d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8fcc6ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff84b8804f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.proxtcore                     0x0000000101aec893 -[XTRunLoopThread run:] + 435
    7   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff863f667a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863f5d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8fcbeb6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8fcc72d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8fcc6ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff84b8804f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.proxtcore                     0x0000000101aec893 -[XTRunLoopThread run:] + 435
    7   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff863f667a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863f5d71 mach_msg + 73
    2   com.apple.CoreFoundation                0x00007fff8fcbeb6c __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation                0x00007fff8fcc72d4 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation                0x00007fff8fcc6ae6 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation                    0x00007fff84b8804f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.proxtcore                     0x0000000101aec893 -[XTRunLoopThread run:] + 435
    7   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    8   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    9   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    10  libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 24:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 26:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 27:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib                  0x00007fff863f667a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863f5d71 mach_msg + 73
    2   com.apple.iLifeSQLAccess                0x0000000101c31b79 -[RALatchTrigger wait] + 57
    3   com.apple.iLifeSQLAccess                0x0000000101c31a3c -[RAOperationQueueImpl _workThread] + 204
    4   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib                  0x00007fff863f667a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863f5d71 mach_msg + 73
    2   com.apple.iLifeSQLAccess                0x0000000101c31b79 -[RALatchTrigger wait] + 57
    3   com.apple.iLifeSQLAccess                0x0000000101c31a3c -[RAOperationQueueImpl _workThread] + 204
    4   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib                  0x00007fff863f667a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863f5d71 mach_msg + 73
    2   com.apple.iLifeSQLAccess                0x0000000101c31b79 -[RALatchTrigger wait] + 57
    3   com.apple.iLifeSQLAccess                0x0000000101c31a3c -[RAOperationQueueImpl _workThread] + 204
    4   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 32:
    0   libsystem_kernel.dylib                  0x00007fff863f667a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863f5d71 mach_msg + 73
    2   com.apple.iLifeSQLAccess                0x0000000101c31b79 -[RALatchTrigger wait] + 57
    3   com.apple.iLifeSQLAccess                0x0000000101c31a3c -[RAOperationQueueImpl _workThread] + 204
    4   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 33:
    0   libsystem_kernel.dylib                  0x00007fff863f667a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863f5d71 mach_msg + 73
    2   com.apple.iLifeSQLAccess                0x0000000101c31b79 -[RALatchTrigger wait] + 57
    3   com.apple.iLifeSQLAccess                0x0000000101c31a3c -[RAOperationQueueImpl _workThread] + 204
    4   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 34:
    0   libsystem_kernel.dylib                  0x00007fff863f667a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff863f5d71 mach_msg + 73
    2   com.apple.iLifeSQLAccess                0x0000000101c31b79 -[RALatchTrigger wait] + 57
    3   com.apple.iLifeSQLAccess                0x0000000101c31a3c -[RAOperationQueueImpl _workThread] + 204
    4   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    5   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    6   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    7   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 35:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13
    Thread 37:
    0   libsystem_kernel.dylib                  0x00007fff863f7bca __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff862482a6 _pthread_cond_wait + 890
    2   com.apple.Foundation                    0x00007fff84c05b10 -[NSCondition waitUntilDate:] + 371
    3   com.apple.Foundation                    0x00007fff84bcf302 -[NSConditionLock lockWhenCondition:beforeDate:] + 251
    4   com.apple.proxtcore                     0x0000000101aeb651 -[XTMsgQueue waitForMessage] + 49
    5   com.apple.proxtcore                     0x0000000101aea727 -[XTThread run:] + 375
    6   com.apple.Foundation                    0x00007fff84bd67fe -[NSThread main] + 68
    7   com.apple.Foundation                    0x00007fff84bd6776 __NSThread__main__ + 1575
    8   libsystem_c.dylib                       0x00007fff862448bf _pthread_start + 335
    9   libsystem_c.dylib                       0x00007fff86247b75 thread_start + 13

    Have you checked with the Font Book Utility if there are still any font families marked with an exclamation mark as duplicates?
    If the upgrade to 3.2.2. does not resolve your problem, try if running Aperture in 32bit mode will help.
    I am not entirely sure if duplicate fonts might cause the problem - the last crash with nik plug-ins reported in this forum that were related to duplicate Arial fonts  (Re: Nik Plugin Crash Issues) was with the viveza plug-in, not with the colorefex plug-in, also the crash occured when selecting the plug-in from the menu "Performing @selector(a_editWithPlugIn:) from sender NSMenuItem", not  with a bad access when addressing the graphics card.
    0   com.apple.ATIRadeonX3000GLDriver          0x000000010d97503f 0x10d91f000 + 352319
    So your problem might be related to the  ATIRadeonX3000GLDriver; maybe the plugin is still using an old Snow Leopard version, that may be incompatible with Lion?
    Regards
    Léonie

  • Adobe Air error message when using  PSE 10

    When I try using the tips in PSE 10 I get an error message from Adobe Air stating that it is damaged. Have tried uninstalling and re-installing, but that hasn't helped. I have windows 7

    Okay Jeff, this is as far as I have gotten so far. I'm using Air version 3.2.0.2070.  This is the install log.
    Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    Commandline is: -silent -eulaAccepted -programMenu AdobeHelp.air
    Installed runtime (2.6.0.19120) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Invoking Application Installer for combined install
    Launching subprocess with commandline C:\Users\Vette\AppData\Local\Temp\AIRD0CE.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Vette\AppData\Local\Temp\AIRD0CE.tmp -silent -withRuntime -url -programMenu -eulaAccepted file:///E:/Adobe%20Photoshop%20Elements%2010/ElementsSTIInstaller/payloads/AdobeHelp/Adob eHelp.air
    Application Installer begin with version 2.6.0.19140 on Windows 7 x86
    Commandline is: -runtime C:\Users\Vette\AppData\Local\Temp\AIRD0CE.tmp -silent -withRuntime -url -programMenu -eulaAccepted file:///E:/Adobe%20Photoshop%20Elements%2010/ElementsSTIInstaller/payloads/AdobeHelp/Adob eHelp.air
    Installed runtime (2.6.0.19120) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Unpackaging file:///E:/Adobe%20Photoshop%20Elements%2010/ElementsSTIInstaller/payloads/AdobeHelp/Adob eHelp.air to C:\Users\Vette\AppData\Local\Temp\flaE4EA.tmp
    Application signature verified
    Unpackaging/validation complete
    No app located for appID 'chc' and pubID '4875E02D9FB21EE389F73B8D1702B320485DF8CE.1'
    Converting unpackaged application to a native installation package in C:\Users\Vette\AppData\Local\Temp\fla71A.tmp
    Native installation package creation succeeded
    Starting silent combined runtime update and app install.
    Updating runtime from version 2.6.0.19120 to version 2.6.0.19140.
    Installing app chc.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 version 3.5.23 to C:\Program Files (x86)\Adobe  using the source file at file:///E:/Adobe%20Photoshop%20Elements%2010/ElementsSTIInstaller/payloads/AdobeHelp/Adob eHelp.air
    Reinstalling C:\Users\Vette\AppData\Local\Temp\AIRD0CE.tmp\setup.msi
    Installing msi at C:\Users\Vette\AppData\Local\Temp\fla71A.tmp\setup.msi with guid {BD7F1DA3-5EA0-65F8-52B0-5E103FDC045A}
    Application Installer end with exit code 0
    Subprocess app installer succeeded
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    Commandline is: -silent "E:\Adobe Photoshop Elements 10\AdobePhotoshopDotcomInspirationBrowser.air"
    Installed runtime (2.6.0.19140) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Invoking Application Installer for combined install
    Launching subprocess with commandline C:\Users\Vette\AppData\Local\Temp\AIR4EA4.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Vette\AppData\Local\Temp\AIR4EA4.tmp -silent -withRuntime -url file:///E:/Adobe%20Photoshop%20Elements%2010/AdobePhotoshopDotcomInspirationBrowser.air
    Application Installer begin with version 2.6.0.19140 on Windows 7 x86
    Commandline is: -runtime C:\Users\Vette\AppData\Local\Temp\AIR4EA4.tmp -silent -withRuntime -url file:///E:/Adobe%20Photoshop%20Elements%2010/AdobePhotoshopDotcomInspirationBrowser.air
    Installed runtime (2.6.0.19140) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Unpackaging file:///E:/Adobe%20Photoshop%20Elements%2010/AdobePhotoshopDotcomInspirationBrowser.air to C:\Users\Vette\AppData\Local\Temp\fla634C.tmp
    Application signature verified
    Unpackaging/validation complete
    No app located for appID 'PhotoshopdotcomInspirationBrowser' and pubID '4C35C4D325D350FE0114230CBADCA2DDD0AC8D25.1'
    Converting unpackaged application to a native installation package in C:\Users\Vette\AppData\Local\Temp\fla7325.tmp
    Native installation package creation succeeded
    Starting silent app installation to C:\Program Files (x86)\Adobe. Installing app PhotoshopdotcomInspirationBrowser.4C35C4D325D350FE0114230CBADCA2DDD0AC8D25.1 version 3.07 using the source file at file:///E:/Adobe%20Photoshop%20Elements%2010/AdobePhotoshopDotcomInspirationBrowser.air
    Installing msi at C:\Users\Vette\AppData\Local\Temp\fla7325.tmp\setup.msi with guid {4C184855-B85A-6873-C642-60A58682E721}
    Application Installer end with exit code 0
    Subprocess app installer succeeded
    Runtime Installer end with exit code 0
    Launching subprocess with commandline C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    Runtime Installer begin with version 2.6.0.19140 on Windows 7 x86
    Commandline is: -updatecheck
    Installed runtime (2.6.0.19140) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Performing pingback request
    Pingback request completed with HTTP status 200
    Starting runtime background update check
    Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/2.6.0.19140/update
    Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/2.6.0.19140/update to C:\Users\Vette\AppData\Roaming\Adobe\AIR\Updater\Background
    Unpackaging complete
    Download success
    Runtime updated downloaded
    User has selected immediate install of the update
    Starting runtime background update installation
    Launching subprocess with commandline C:\Users\Vette\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update
    Runtime updater successfully launched
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    Commandline is: -update
    Installed runtime (2.6.0.19140) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Relaunching with elevation
    Launching subprocess with commandline c:\users\vette\appdata\local\temp\airafa3.tmp\adobe air installer.exe -ei
    Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    Commandline is: -stdio
    .\pipe\AIR_704_0 -ei
    Installed runtime (2.6.0.19140) located at C:\Program Files (x86)\Common Files\Adobe AIR
    Starting silent runtime update. Updating runtime from version 2.6.0.19140 to version 3.1.0.4880
    Installing msi at c:\users\vette\appdata\local\temp\airafa3.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    Runtime Installer end with exit code 0
    Elevated install completed
    Runtime Installer end with exit code 0
    Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    Commandline is: -updatecheck
    Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Performing pingback request
    Pingback request completed with HTTP status 200
    Starting runtime background update check
    Clearing unused background update directory
    Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update
    Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.1.0.4880/update to C:\Users\Vette\AppData\Roaming\Adobe\AIR\Updater\Background
    Runtime update not available
    Unpackaging cancelled
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.1.0.4880 on Windows 7 x86
    Commandline is: -arp:uninstall
    Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Runtime Installer end with exit code 6
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is:
    Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Relaunching with elevation
    Launching subprocess with commandline c:\users\vette\appdata\local\temp\aire7af.tmp\adobe air installer.exe -ei
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -stdio
    .\pipe\AIR_4784_0 -ei
    Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Starting silent runtime update. Updating runtime from version 3.1.0.4880 to version 3.2.0.2070
    Installing msi at c:\users\vette\appdata\local\temp\aire7af.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    Runtime Installer end with exit code 0
    Elevated install completed
    Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -installupdatecheck
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Performing pingback request
    Pingback request completed with HTTP status 200
    Starting runtime background update check
    Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.2.0.2070/update
    Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.2.0.2070/update to C:\Users\Vette\AppData\Roaming\Adobe\AIR\Updater\Background
    Runtime update not available
    Unpackaging cancelled
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -arp:uninstall
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Relaunching with elevation
    Launching subprocess with commandline c:\program files (x86)\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -stdio
    .\pipe\AIR_3840_0 -eu
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Starting runtime uninstall. Uninstalling runtime version 3.2.0.2070
    Uninstalling product with GUID {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    Runtime Installer end with exit code 0
    Elevated install completed
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is:
    No installed runtime detected
    Relaunching with elevation
    Launching subprocess with commandline c:\users\vette\appdata\local\temp\airbda4.tmp\adobe air installer.exe -ei
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -stdio
    .\pipe\AIR_764_0 -ei
    No installed runtime detected
    Starting silent runtime install. Installing runtime version 3.2.0.2070
    Installing msi at c:\users\vette\appdata\local\temp\airbda4.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    Runtime Installer end with exit code 0
    Elevated install completed
    Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -installupdatecheck
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Performing pingback request
    Pingback request completed with HTTP status 200
    Starting runtime background update check
    Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.2.0.2070/update
    Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.2.0.2070/update to C:\Users\Vette\AppData\Roaming\Adobe\AIR\Updater\Background
    Runtime update not available
    Unpackaging cancelled
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is:
    No installed runtime detected
    Relaunching with elevation
    Launching subprocess with commandline c:\users\vette\appdata\local\temp\air2fa8.tmp\adobe air installer.exe -ei
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -stdio
    .\pipe\AIR_5396_0 -ei
    No installed runtime detected
    Starting silent runtime install. Installing runtime version 3.2.0.2070
    Installing msi at c:\users\vette\appdata\local\temp\air2fa8.tmp\setup.msi with guid {47FA2C44-D148-4DBC-AF60-B91934AA4842}
    Runtime Installer end with exit code 0
    Elevated install completed
    Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    Runtime Installer end with exit code 0
    Runtime Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -installupdatecheck
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Performing pingback request
    Pingback request completed with HTTP status 200
    Starting runtime background update check
    Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.2.0.2070/update
    Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/3.2.0.2070/update to C:\Users\Vette\AppData\Roaming\Adobe\AIR\Updater\Background
    Runtime update not available
    Unpackaging cancelled
    Runtime Installer end with exit code 0
    Application Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -playerVersion=11,2,202,233 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -url http://www.adobe.com/support/chc/air/350/AdobeHelp.air -- WWW aHR0cDovL3d3dy5hZG9iZS5jb20vc3VwcG9ydC9jaGMv
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Begin air file download from http://www.adobe.com/support/chc/air/350/AdobeHelp.air
    Download destination is C:\Users\Vette\AppData\Local\Temp\fla7A97.tmp
    Received download status 200
    Response URL is http://www.adobe.com/support/chc/air/350/AdobeHelp.air
    Download success
    Unpackaging file:///C:/Users/Vette/AppData/Local/Temp/fla7A97.tmp to C:\Users\Vette\AppData\Local\Temp\flaB22B.tmp
    Application signature verified
    Unpackaging/validation complete
    No app located for appID 'chc' and pubID '4875E02D9FB21EE389F73B8D1702B320485DF8CE.1'
    Converting unpackaged application to a native installation package in C:\Users\Vette\AppData\Local\Temp\flaC7B.tmp
    Native installation package creation succeeded
    Starting app installation to C:\Program Files (x86)\Adobe. Installing app chc.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 version 3.5.23 using the source file at file:///C:/Users/Vette/AppData/Local/Temp/fla7A97.tmp
    Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Directory can't be written to" errorID=5006]
    Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime "c:\Program Files (x86)\Common Files" -silent -logToStdout -url -location "C:\Program Files (x86)\Adobe" -desktopShortcut -programMenu file:///C:/Users/Vette/AppData/Local/Temp/fla7A97.tmp
    Relaunching with elevation
    Application Installer begin with version 3.2.0.2070 on Windows 7 x86
    Commandline is: -stdio
    .\pipe\AIR_4952_0 -runtime "c:\Program Files (x86)\Common Files" -silent -logToStdout -url -location "C:\Program Files (x86)\Adobe" -desktopShortcut -programMenu file:///C:/Users/Vette/AppData/Local/Temp/fla7A97.tmp
    Installed runtime (3.2.0.2070) located at c:\Program Files (x86)\Common Files\Adobe AIR
    Unpackaging file:///C:/Users/Vette/AppData/Local/Temp/fla7A97.tmp to C:\Users\Vette\AppData\Local\Temp\fla3260.tmp
    Application signature verified
    Unpackaging/validation complete
    No app located for appID 'chc' and pubID '4875E02D9FB21EE389F73B8D1702B320485DF8CE.1'
    Converting unpackaged application to a native installation package in C:\Users\Vette\AppData\Local\Temp\fla3BF3.tmp
    Native installation package creation succeeded
    Starting silent app installation to C:\Program Files (x86)\Adobe. Installing app chc.4875E02D9FB21EE389F73B8D1702B320485DF8CE.1 version 3.5.23 using the source file at file:///C:/Users/Vette/AppData/Local/Temp/fla7A97.tmp
    Installing msi at C:\Users\Vette\AppData\Local\Temp\fla3BF3.tmp\setup.msi with guid {BD7F1DA3-5EA0-65F8-52B0-5E103FDC045A}
    Application Installer end with exit code 0
    Elevated install completed
    Launching subprocess with commandline C:\Program Files (x86)\Adobe\Adobe Help\Adobe Help.exe
    Application Installer end with exit code 0
    Date: Thu, 12 Apr 2012 17:10:46 -0600
    From: [email protected]
    To: [email protected]
    Subject: Adobe Air error message when using  PSE 10
        Re: Adobe Air error message when using  PSE 10
        created by Jeff A Wright in Downloading, Installing, Setting Up - View the full discussion
    Vetteski65 I would recommend reviewing Troubleshoot AIR installation | Windows - http://helpx.adobe.com/air/kb/troubleshoot-air-installation-windows.ht ml for steps on how to resolve your difficulties.  Please feel free to respond to this thread if you have any questions about the steps listed within the document.  If you could also respond with the specific error message you receive it would be appreciated.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4331328#4331328
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4331328#4331328. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Downloading, Installing, Setting Up by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Help about W2K Apache plug-in for WLS

    Hi,everybody.
    I want to use the W2K apache http server for redirect the dynamic request to
    WLS. But i don't have the corresponding plug-in. Who can help me? or Who can
    give me some hint about this?
    Thanks in advance.
    BR
    Steven Zhao

    Hi Steven,
    as far as I know there is no Apache Plugin for Windows Platform. Your
    choice is either Unix->Apache or Windows->IIS. I think there is a
    Netscape Plugin as well, but I don't know for which platforms.
    Daniel
    -----Original Message-----
    From: Steven Zhao [mailto:[email protected]]
    Posted At: Friday, October 20, 2000 6:02 AM
    Posted To: management
    Conversation: Help about W2K Apache plug-in for WLS
    Subject: Help about W2K Apache plug-in for WLS
    Hi,everybody.
    I want to use the W2K apache http server for redirect the dynamic
    request to
    WLS. But i don't have the corresponding plug-in. Who can help me? or Who
    can
    give me some hint about this?
    Thanks in advance.
    BR
    Steven Zhao

  • Licence error message when using automation software

    Error message when using Rational Functional Tester 7.0.1.1
    to record a Flex application. The message seemed to come from the
    Flex application.
    I can record a fiew step in the application, then I have the
    message : "Licence are not present. Eith the trial version only
    limited record are allowed". But, my license of my Rational
    Functional Tester application is activated.
    I am using a Flex builder 3 trial version and the trial is
    not over.
    Is there any problem to get the license in the File compiler
    with "D:\apps\IBM\SDP70\FunctionalTester\bin\rft.swc"? That RFT
    file is supposed to be included in the flex application once
    compile

    Does anyone know how to build with automation support in a
    linux environment?
    We simply run an ant script build and have the SDK installed.
    We purchased Flex Builder Professional, but cannot install on Linux
    (we don't want to use the alpha version).
    Thanks for any pointers :)

  • Compile Apache plug-in for WL7.1 SP4

    Hi all,
    Several advisories of Apache have been published. We would like to acquire the latest Apache version. According to the information of BEA. Apache plug-in of WL71SP4 is only provided for Apache 2.0.42-2.0.49. As a result, a new plug-in is needed: we would like to compile one.
    We only have compiled Apache plug-in (with WL71SP4). We cannot find the source in WL71SP4.
    Does anyone know how can I compile a Apache plug-in for the latest Apache version? Preferably, we would like to use APXS for the compilation.
    Does anyone know if we can use the existing plug-in in latest Apache version? We have encountered problems before -- the plug-in refuses to start and complains about incorrect magic string of the Apache version.
    Thank you very much.
    Regards.

    I'm using the mod_wl_ssl.so for Apache on Linux from service pack 5. I
              understand that the communication from Apache to WLS will be via http...
              that's not the issue.
              I think what would solve the issue would be if someone from BEA could post
              an httpd.conf file that was configured correctly to use the ssl proxy for
              Apach on Linux. Also, I can't seem to get clarification if openssl is or is
              not supported.
              Can you post a correctly configured httpd.conf file that was used in testing
              the ssl proxy as well as confirm whether or not openssl is supported???
              Steve...
              Vinod Mehra wrote:
              > Also note that currently we do not support https between the plugins and
              >
              > WebLogic. https requests will be degraded to http. So the WebLogicPort
              > parameter in the plugins should point to the http port of WebLogic.
              >
              > https between plug-ins and WebLogic will be available in near future.
              >
              > --Vinod.
              >
              > Vinod Mehra wrote:
              >
              > > > Are there any known issues with the Apache SSL proxy???
              > >
              > > No
              > >
              > > > I've setup the ssl
              > > > proxy but can't access any WL content via https... http works ok
              > > > though. Also,
              > > > does BEA support openssl or just Stronghold and Raven???
              > >
              > > Yes. Try using mod_wl_ssl.so from 510 SP4 or later.
              > >
              > > --Vinod.
              

  • Dreamweaver CC generates one of 3 error messages when using find and replace on Win 8.1 64 bit.

    Dreamweaver CC generates one of 3 error messages when using find and replace is used more than twice in succession. "While executing onLoad in bc_afterSave.htm, the following JavaScript error(s) occurred: At line 188 of file C:\Program Files (x86)\Adobe|Adobe DreamweaverCC|Configuration|Shared|BC\JS\bc_sites.js": out of memory"
    or
    While executing runCommand in File_Save.htm, a JavaScript erroroccurred.
    or
    While exciting getDynamicContent inAdressURL.htm, a Javascript erroroccirred.
    Any thoughts - I end up closing DWCC and reopening. Will work for two additional Find and Replace before the error messaged\s popup again.

    bkaufman43 wrote:
    Thanks Jon. I tried all of those solutions before posting. Same problem. It seems that the problem is tied to DWCC. Do not have the problem when using DW6 on Win8.1. When running DWCC on a Win7 pc, we get the same error message. When running DW6 on Win 7, f&c works fine. It seems to be a bug in DWCC. DWCC works flawlessly on our Macs.
    The same steps apply to DWCC, you just need to choose the CC folders rather than the DWCS4-6 versions that the page talks about. The layout of CC's folders hasn't changed from the older versions which is why, I think, Adobe hasn't updated the troubleshooting page as of yet.
    As Nancy mentions, a 38,500 page site is sort of ridiculously large for a static website, that could be part of the problem, but your response quoted above leads me to think you may have tried the troubleshooting steps in the wrong version of the program. Could you confirm that?

  • HT2623 I keep getting an error message when I enter my password for iCloud IMAP server

    I keep getting an error message when I enter my password for iCloud IMAP server

    A number of users who have chosen to set up iCloud mail manually in the Mail application seem to encounter problems with continually being asked to sign in. This may well be a result of incorrect settings such as not setting 'Apple Token' for authentication under the accounts advanced settings.
    A more general approach to remedying such problems would be to turn off Mail in System Preferences/Settings > iCloud, checking the account has been removed from Mail (and deleting it if it hasn't), restarting and then enabling iCloud Mail again from System Preferences/Settings > iCloud. This will ensure the correct settings are used.

  • My Application gets Error 37 when using Serial Port VIs.

    My Application works fine developed with LV 6.1. Then I updated to LV 7.1 and now the Executable of my application gets error 37 when using the old serial port functions. The "serpdrv" file is located in the application directory and is from 02/2002. The application runs well in the development environment after I placed the "serpdrv" file in the LabView directory. I tried to put a line with "serialDevices=..." in the .ini-file of my application but this did not cause an improvement. I also tried to rebuild the EXE with this line in the "labview.ini" file but nothing changes.
    Does anybody have another idea ?
    Many thanks for help
    Thomas

    >Did you actually replace the old serial functions that come with 7.1 with the functions from 6.1?
    Yes. E.g. "open serial driver.vi" uses "open device" with "serpdrv" as device string.
    I had the same problem running my application as VI´s. After the copy of serpdrv into the LV 7.1 directory everything works fine.
    I don´t understand why the application running as a .exe doesn´t find the serpdrv when it is in the same directory....
    Nevertheless many thanks for your answer
    Thomas

Maybe you are looking for

  • Is there a Better Way to do This? (C++, Qt)

    Inside a Qt application I'm using ImageMagick to create an image (from variable text) on-the-fly and save it to the hard drive. Then right afterwards I'm telling Qt to load that image in an object (called currQorA). I know it would be more efficient

  • Report Painter - Dynamic Columns

    Dear Expert, I'm preparing a report painter report with cost centers as columns. Is there anyway I can use cost center group as variable and then the no. of columns and column texts are populated based on the no. of cost centers and cost center names

  • Fundamental exception handling irritation

    Hello experts, I have come across a very disturbing effect when using a function module capable of asynchronous execution in a <i>try-cleanup-endtry</i> statement. Please have a look at the following simple construct: TRY.     do_some_db_update( ).  

  • I purchased 10GB of storage but doesn't work

    I purchased 10GB of storage for $20 on my iphone 4s, but it still says I only have 5GB, and that I don't have enough room to backup...

  • Wrong entry posted in Excise Invoice.

    Dear All, We are in now golive stage and I found one issue regarding the post the excise invoice for capital material. Issue is- I create one purchase order for capital material through account assignment category F (Internal order) While doing GR th