Java/Hibernate backend with FDS: issues

Hi everyone, I'm quite new to the Flex world but I'm so
excited about all of it that I decided to make a Flex app in order
to get my degree. So, I started by building my own app (which is a
management system for a library) starting from the great example
posted by Marcel Boucher on his blog. I run my app on JBoss
4.2.0-GA.
I'm actually using DB2 8.2 with 6 tables: USER, CUSTOMER,
IDCARD, LOAN, BOOK, AUTHOR.
Hibernate-wise, there should be a one-to-one association
between CUSTOMER and IDCARD (that is every customer has one and
only one idcard), a many-to-many association between IDCARD and
LOAN (that is many idcards can do many loans), a many-to-one
between LOAN and BOOK and a many-to-one between BOOK and AUTHOR.
The problem is that as long as I implement single POJOs
(user.java, customer.java...), correctly mapped with their
configuration file user.hbm.xml and hibernate.cfg.xml, and
respective destinations configured in data-management-config.xml,
BUT WITHOUT SPECIFYING ANY ASSOCIATION, it all runs and works
correctly.
As soon as I complete the database's tables mapping by adding
all the association mappings (I dont know how to exactly map
associations between fds destinations as well) it suddenly goes all
wrong and I keep getting this error in JBoss console:
GRAVE: Servlet /flex threw load() exception
flex.messaging.config.ConfigureException: Unable to create
service 'flex.data.DataService' for 'data-service' due to the
following error: Error instantiating application scoped instance of
type 'flex.data.assemblers.HibernateAssembler' for destination
'user.hibernate'...
Hope someone can help me with this.
Cheers,
Riccardo

Here's the JBoss log file:
JBoss log
And here are all the files involved:
User pojo
User hbm
Customer
pojo
Customer
hbm
Idcard
pojo
Idcard
hbm
Loan
pojo
Loan hbm
Book pojo
Book hbm
Author
pojo
Author hbm
Hibernate
cfg
Data-management-config
Currently the mapped associations are bidirectional CUSTOMER
to IDCARD (one-to-one) and bidirectional AUTHOR to BOOK
(one-to-many/many-to-one). LOAN is not currently mapped because I'm
still thinking about how to do it. Don't mind if you see "italian"
names inside the files, I called the entities with english names
here to make it all more understandable.
Actually what's driving me crazy is that if I map only USER,
CUSTOMER and AUTHOR (which are kinda "boundary" entities, meaning
they exist without any association) as hibernate.cfg.xml resources
(and with their respective destinations in data management), it all
works perfectly. As soon as I complete the mapping this error
suddenly comes up :(

Similar Messages

  • Parent Child Hierarchy with FDS and Hibernate

    I know my chances of getting heard here are slim, but I am at
    a dead end, so here goes.
    I have a four level hierarchy of objects
    PlanPoint
    ....UserScenario
    ........Scenario
    ............Competitor
    which have bi-directional one-to-many relationships between
    them.
    I have made sure that my hibernate mappings and FDS
    destination are matched and I definitely need to have managed
    associations as the graph of objects will grow large in my
    application (and besides, it is good development practice). So I
    have a fully formed project (or at least I think I do) and I get a
    duplicate object error.
    Right at the bottom I have an alternative that I have tried
    which gives a different error.
    Here is a snippet from my log... it picks up just after the
    message arrives
    2007-02-05 21:21:10,281 INFO [STDOUT] Hibernate: insert into
    COMPETITOR (COMPETITOR_ID, SCENARIO_ID, NAME, X, Y, RADIUS, ACTUAL,
    PROPOSITIONS, ORDER_SIZE, CONVERSION_RATE) values (null, ?, ?, ?,
    2007-02-05 21:21:10,281 INFO [STDOUT] Hibernate: call
    identity()
    2007-02-05 21:21:10,312 INFO [STDOUT] Hibernate: insert into
    SCENARIO (SCENARIO_ID, TITLE, SEQUENCE, POTENTIAL,
    USER_SCENARIO_ID) values (null, ?, ?, ?, ?)
    2007-02-05 21:21:10,312 INFO [STDOUT] Hibernate: call
    identity()
    2007-02-05 21:21:10,359 INFO [STDOUT] Hibernate: insert into
    USER_SCENARIO (USER_SCENARIO_ID, TITLE, PLANPOINT_ID, AUTHOR)
    values (null, ?, ?, ?)
    2007-02-05 21:21:10,359 INFO [STDOUT] Hibernate: call
    identity()
    2007-02-05 21:21:10,406 INFO [STDOUT] [Flex] Serializing
    AMF/RTMP response
    Version: 3
    (Command method=_error (0) trxId=8)
    (Typed Object #0 'flex.messaging.messages.ErrorMessage')
    rootCause = (Typed Object #1
    'org.hibernate.NonUniqueObjectException')
    throwables = (Array #2)
    [0] = (Ref #1)
    localizedMessage = "a different object with the same
    identifier value was already associated with the session:
    [pmco.pojos.Competitor#0]"
    message = "a different object with the same identifier value
    was already associated with the session: [pmco.pojos.Competitor#0]"
    identifier = 0
    cause = null
    throwableCount = 1
    entityName = "pmco.pojos.Competitor"
    messages = (Array #3)
    [0] = "a different object with the same identifier value was
    already associated with the session"
    destination = "competitor.hibernate"
    headers = (Object #4)
    correlationId = "BFAF11E0-6121-54BB-A836-93C81DAE7772"
    faultString = "Could not invoke sync method on data adapter
    for destination 'userscenario.hibernate' due to the following
    error: class org.hibernate.NonUniqueObjectException:a different
    object with the same identifier value was already associated with
    the session: [pmco.pojos.Competitor#0]."
    messageId = "78CB9396-9618-519F-8DB0-70D4E53357FE"
    faultCode = "Server.Processing"
    timeToLive = 0.0
    extendedData = null
    faultDetail = null
    clientId = null
    timestamp = 1.17071047039E12
    body = null
    Anyone got any ideas?
    I would provide my mappings and destinations but I can't fit
    them in a message

    Hi,
    thanks for the reply it was very helpful. I came to pretty
    much the same conclusion and started on the path of a re-write of
    the hibernate assembler myself. As far as I can tell the Hibernate
    Assembler is a Java Assembler, so there didn't seem much difference
    to me between fixing that one and writing another one. Adobe ship
    the code.
    Bit of a cheeky request, but I don't suppose you would be
    willing to share your assembler layer so I have a template against
    which to work? Biggest problem with this sort of activity is a lack
    of examples which makes it very slow going and largely trial and
    error.
    If you would like to know more about our application I will
    provide contact details so we can discuss.
    Simon
    PS Jeff Vroom posted a reply saying that the Adobe Hibernate
    Assembler didn't work properly with hierarchical data (which I
    imagine is every real application in the world), personally I think
    Adobe should fix it or pull it.
    http://tech.groups.yahoo.com/group/flexcoders/message/63961

  • Why can't I use WebCT chat with my computer?  I get the 'spiral of death' every time I try to type in my chat.  I have a feeling it has to do with compatibility issues between Java and Tiger.

    Why can't I use WebCT chat with my computer?  I get the 'spiral of death' every time I try to type in my chat.  I have a feeling it has to do with compatibility issues between Java and Tiger.

    Hi Elizabeth,
    Do your Mac meet any of these requirements?
    http://www.wvnet.edu/services/webct/requirements.html
    From this it appears to be PC only!???
    http://sourceforge.net/projects/awebctcclient/files/Pancake%20%28it%20own%20proj ect%20now%29/Pancake%20Console%20V1.0.0/PancakeConsole-1.0.0-src.zip/download
    Can you provide any more info on which bersion or file you have?
    Can you tell us why you need this for your use?

  • Java not working with 10.6.8 iMac

    Java is no longer working on my intel iMac with Snow Leapord 10.6.8 with Firefox.  This issue has come up when trying to use two different programs that I previously was able to use; Java automatically ran.  I have tried to read previous discussions on this topic, but am not understanding the solutions or some aspects don't apply.  I did try to restore defaults in Java Preferences but nothing seems to happen when I do this.  Any advice? thank you in advance for any assistance with this issue.

    Good news about the flashback trojan.
    I am running Firefox 14.01.
    I also have a Java applet 13.8.0 (disabled) in the tools file.
    You said earlier (post 12) that you don't have a Java applet listed in your list of Firefox plug-ins.
    Which seems to suggest one of us is running a different version of Firefox.
    Whether this is the problem, I can't work out.  But I'm trying.

  • Java Class (Compiled with JDK6_u12) that works with UCCX 9.0.2, don´t work with UCCX 10.5

    I have a Java Class (Compiled with JDK6_u12) that works with UCCX 9.0.2, after upgrade it don´t work with UCCX 10.5
    I get the error message: "Failed to access the WSDL at: https://www.brightnavigator.se/brightservice/brightservice.asmx?WSDL. It failed with: Got java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty while opening stream from https://www.brightnavigator.se/brightservice/brightservice.asmx?WSDL.; nested exception is: javax.xml.ws.WebServiceException: Failed to access the WSDL at: https://www.brightnavigator.se/brightservice/brightservice.asmx?WSDL. It failed with: Got java.lang.RuntimeException: Unexpected error: java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty while opening stream from https://www.brightnavigator.se/brightservice/brightservice.asmx?WSDL. (line: 1, col: 47)
    Does anyone know about this ?

    Did you ever find a resolution to this issue? I have a similar issue after upgrading from 7 to 10.5. I have loaded all provided certificates to the tomcat-trust store, restarted Tomcat Services and still get the same error
    Thanks

  • Can I use Java Creator 2 with old JRE/JDK 1.4.2_07??

    I am planning to install new Java Creator 2 but I am having JRE and JDK 1.4.2_07 and I am using mysql 3.23.55 and I want to integrate it.
    Currently my OS is Windows XP SP2 platform with processor Intel Centrino 1.4 and RAM 256 MB... I know the ram is not sufficient and i am planning to upgrade it.. but the problem is can i still remain to use the old JRE and JDK 1.4.2_07 and i am also using mysql 3.23.55... all the driver and engine are out to date but can i still use it and integrate it with java creator 2?
    The questions are:
    1) Can I use Java creator 2 with those old engine?
    2) What java compiler or development tools i can use to develop java standalone application?
    Thank you

    When the jar file is expanded within Eclipse, it shows that the mail.jar file is built with 1.5.0; I think? Here is the header contents of the MANIFEST.MF file, note "Created by."
    Manifest-Version: 1.0
    Implementation-Version: 1.4
    Specification-Title: JavaMail(TM) API Design Specification
    Specification-Version: 1.3
    Implementation-Title: javax.mail
    Extension-Name: javax.mail
    Created-By: 1.5.0 (Sun Microsystems Inc.)
    Implementation-Vendor-Id: com.sun
    Implementation-Vendor: Sun Microsystems, Inc.
    Specification-Vendor: Sun Microsystems, Inc.
    SCCS-ID: @(#)javamail.mf     1.6 05/12/09
    This is causing problems, because anytime I try to use this file, I get signing errors. I have several Web Services built by BAE and Plumtree that are running on 1.4.2; and therefore I am stuck with 1.4.2. I did try to remove the SUN_MICR.* files, thinkning it would resolve the signing issues, but then that caused other problems. I can provide you with code that demonstrates the problem.
    Is there a place where I can get a mail 1.4 jar file built with 1.4.2? that would most likely solve my problems.

  • Java Web dynpro with ABAP Clients?

    Morning,
    We have a situation where we would like to use a Java Web dynpro with multiple ABAP backend data sources. This is for autorization as well as data. We are not using Enterprise Portal.
    We've created a pair of system Jcos and mapped them to the Web dynpro via the URL. This works and the correct data from the correct Client is retrieved depending on which pair of Jcos we define in the URL.
    The problem we are having is that we are only able to logon using the ABAP Client defined in the ume....master.client parameter.
    Is there a way to achieve this (again without EP) either in the system configuration or programatically in the web dynpro?
    tia
    Cheers,
    Mitch

    Hello,
    Thanks for the updates. Actually my query is we have a SCM 5.0 system which has a java stack in it. But now we are going to upgrade it  to SCM  7.0. -  Is SCM 7.0 has a java stack ?
    If it doesn't have , can we upgrade SCM 5.0 to  SCM 7.0 without Java Stack ? Is it posssible to upgrade without Java Stack or not ?
    Is it possible that  we can convert Java Stuff into ABAP web dyn pro ? If yes , how shall we can achieve it ? If not, how shall we proceed in an alternate way ?
    Thanks for your help  in advance.
    Madhu

  • Java hibernate oracle sessions never get closed

    Hi all,
    I'm opening some Oracle sessions from a java-hibernate app. When a shutdown my java-hibernate the oracle sessions remain opened, even if the java process is not seen as running with "ps -fea | grep java".
    The problem is that this oracle sessions never die, they remain there and the only way to kill them is to either manually kill oracle process, or to restart the oracle instance or to restart the unix box where oracle resides.
    My java/hibernate app always close the session with a final statement in the source code, no matter what.
    Thanks in advanced.

    Hi all,
    I'm opening some Oracle sessions from a java-hibernate app. When a shutdown my java-hibernate the oracle sessions remain opened, even if the java process is not seen as running with "ps -fea | grep java".
    The problem is that this oracle sessions never die, they remain there and the only way to kill them is to either manually kill oracle process, or to restart the oracle instance or to restart the unix box where oracle resides.
    My java/hibernate app always close the session with a final statement in the source code, no matter what.
    Thanks in advanced.

  • I can't install Java in Firefox. Intead Java works fine with IE. I preffer Firefox 4 but...I'm running Win 7 64-bit.

    I;m running win7 64-bit and I can;t install Java in Firefox 4. Java works fine with IE.

    On Java, I think we've covered the basics. There are a couple of other articles that might help:
    [http://support.mozilla.com/en-US/kb/Java-related%20issues Java-related issues | Troubleshooting | Firefox Help]
    [http://kb.mozillazine.org/Plugin_scanning Plugin scanning - MozillaZine Knowledge Base] (you would want to make sure it is ''not'' disabled; in about:config, filter on plugin.scan and see whether anything has been changed from its default)
    On Norton, there are a number of recent threads here, but I have not been reading them. Hopefully someone has posted the answer.

  • Java VM terminated with a non-zero exit code (rc = -337)

    Hi,
    It seems that our portal (7.0) was unavailable for five minutes (all users experienced problems which after a few minutes solved itself). We had a look at the logs, and dev_server0 shows that the server node did shut down and start again:
    [Thr 6688] Wed Aug 13 10:19:36 2014
    [Thr 6688] JLaunchIExitJava: exit hook is called (rc = -337)
    [Thr 6688] **********************************************************************
    [Thr 6688] *** ERROR => The Java VM terminated with a non-zero exit code.
    [Thr 6688] *** Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    [Thr 6688] *** for additional information and trouble shooting.
    [Thr 6688] **********************************************************************
    [Thr 6688] JLaunchCloseProgram: good bye (exitcode = -337)
    The referenced note doesn't offer much help. I've tried to find more info about rc -337, and the only info I've found is that rc -337 is: "Exiting listener loop - restart the node (MSLib)."
    Do you guys know what exiting listener loop means, or what the rc -377 is?
    Thanks!
    M.

    Hi Moye,
    Hope you are doing good.
    Such issues can also be caused due to a network failure. Can you check the below notes along with the network administrator to ascertain that there are no network related issues presently:
    #124562     Hostname resolution problems (DNS timeouts)
    #500235     Network Diagnosis with NIPING
    #413330     Network timeout
    If you run the niping tool at the time the issue occurred, it should check the whole network and report the error.
    It is also possible to optimize the j2ee server in the manner it interacts with the message server for better performance. As Divyanshu mentioned, the note 1658385 - J2EE System fails with "exitcode = -334" explains, you need to optimize the manner in which the message server reconnects with the Java instances.
    This can happen sometimes if you have quite a few nodes in cluster. To make sure the issue does not happen again, you need to increase for each server node the timeout it waits for the confirmation,
    that is the value of 'ms.confirmation.timeout' property of ClusterManager along with the other parameters mentioned in the note. Also add the below parameters to the SCS instance file:
    <sid>_SCS01_<host> in folder /usr/sap/<sid>/SYS/profile
    ms/max_clients = 600
    ms/max_open_requests = 2000
    ms/audit=1
    and
    jstartup/keep_old_logfiles=3
    The latter 2 parameters will prevent  overwritting log files in case of restart. Once the values are increased, the time for the timeout should increase enabling the server to connect to the message server.
    Thank you!
    Kind Regards,
    Hemanth
    SAP AGS

  • Safari keeps shutting down with this issue:  Exception Type:  EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000078

    Safari keeps shutting down with this issue(it was also running slow but I seemed to have fixed that issue for now):  Exception Type:  EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000078
    Anyone have any fixes for this?

    Process:         com.apple.WebKit.WebContent [253]
    Path:            /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/XPCServices /com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Identifier:      com.apple.WebKit.WebContent
    Version:         9600 (9600.1.17)
    Build Info:      WebKit2-7600001017000000~8
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    Responsible:     Safari [243]
    User ID:         501
    Date/Time:       2014-12-03 19:52:30.132 -0500
    OS Version:      Mac OS X 10.9.5 (13F34)
    Report Version:  11
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000078
    VM Regions Near 0x78:
    -->
        __TEXT                 000000010d123000-000000010d124000 [    4K] r-x/rwx SM=COW  /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/XPCServices /com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Process Model:
    Multiple Web Processes
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.WebCore             0x000000010ead3829 WebCore::SocketStreamHandleBase::close() + 9
    1   com.apple.WebCore             0x000000010ec266ed WebCore::WebSocketChannel::processOutgoingFrameQueue() + 701
    2   com.apple.WebCore             0x000000010ec29331 WebCore::WebSocketChannel::processFrame() + 4769
    3   com.apple.WebCore             0x000000010ec2795a WebCore::WebSocketChannel::processBuffer() + 106
    4   com.apple.WebCore             0x000000010ec278ca WebCore::WebSocketChannel::didReceiveSocketStreamData(WebCore::SocketStreamHand le*, char const*, int) + 330
    5   com.apple.WebCore             0x000000010ead56cd WebCore::SocketStreamHandle::readStreamCallback(unsigned long) + 365
    6   com.apple.CoreFoundation      0x00007fff8fb90bd1 _signalEventSync + 385
    7   com.apple.CoreFoundation      0x00007fff8fb90a18 _cfstream_solo_signalEventSync + 328
    8   com.apple.CoreFoundation      0x00007fff8fb9088f _CFStreamSignalEvent + 623
    9   com.apple.CFNetwork           0x00007fff91077f0a CoreReadStreamCFStreamSupport::coreStreamReadEvent(__CoreReadStream*, unsigned long) + 102
    10  com.apple.CFNetwork           0x00007fff91077e79 CoreReadStreamClient::coreStreamEventsAvailable(unsigned long) + 53
    11  com.apple.CFNetwork           0x00007fff91179f85 CoreStreamBase::_callClientNow(CoreStreamClient*) + 53
    12  com.apple.CFNetwork           0x00007fff91077b99 CoreStreamBase::_streamSetEventAndScheduleDelivery(unsigned long, unsigned char) + 183
    13  com.apple.CFNetwork           0x00007fff91077922 SocketStream::dispatchSignalFromSocketCallbackUnlocked(SocketStreamSignalHolder *) + 74
    14  com.apple.CFNetwork           0x00007fff91077050 SocketStream::socketCallback(__CFSocket*, unsigned long, __CFData const*, void const*) + 206
    15  com.apple.CFNetwork           0x00007fff91076f52 SocketStream::_SocketCallBack_stream(__CFSocket*, unsigned long, __CFData const*, void const*, void*) + 64
    16  com.apple.CoreFoundation      0x00007fff8fb90057 __CFSocketPerformV0 + 855
    17  com.apple.CoreFoundation      0x00007fff8fb505b1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    18  com.apple.CoreFoundation      0x00007fff8fb41c62 __CFRunLoopDoSources0 + 242
    19  com.apple.CoreFoundation      0x00007fff8fb413ef __CFRunLoopRun + 831
    20  com.apple.CoreFoundation      0x00007fff8fb40e75 CFRunLoopRunSpecific + 309
    21  com.apple.HIToolbox           0x00007fff8b021a0d RunCurrentEventLoopInMode + 226
    22  com.apple.HIToolbox           0x00007fff8b0217b7 ReceiveNextEventCommon + 479
    23  com.apple.HIToolbox           0x00007fff8b0215bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    24  com.apple.AppKit              0x00007fff8c28f24e _DPSNextEvent + 1434
    25  com.apple.AppKit              0x00007fff8c28e89b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    26  com.apple.AppKit              0x00007fff8c28299c -[NSApplication run] + 553
    27  com.apple.AppKit              0x00007fff8c26d783 NSApplicationMain + 940
    28  com.apple.XPCService          0x00007fff91d75c0f _xpc_main + 385
    29  libxpc.dylib                  0x00007fff95bb2bde xpc_main + 399
    30  com.apple.WebKit.WebContent   0x000000010d123b40 0x10d123000 + 2880
    31  libdyld.dylib                 0x00007fff8a5825fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib        0x00007fff95bdb662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8d925421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff8d925136 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib        0x00007fff95bd6a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff95bd5d18 mach_msg + 64
    2   com.apple.CoreFoundation      0x00007fff8fb41f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation      0x00007fff8fb41539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation      0x00007fff8fb40e75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit              0x00007fff8c42f05e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 3:: WebCore: Scrolling
    0   libsystem_kernel.dylib        0x00007fff95bd6a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff95bd5d18 mach_msg + 64
    2   com.apple.CoreFoundation      0x00007fff8fb41f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation      0x00007fff8fb41539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation      0x00007fff8fb40e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation      0x00007fff8fbf6811 CFRunLoopRun + 97
    6   com.apple.WebCore             0x000000010df8cff4 WebCore::ScrollingThread::initializeRunLoop() + 244
    7   com.apple.JavaScriptCore      0x000000010d8ddfbf ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    9   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    10  libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 4:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib        0x00007fff95bd6a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff95bd5d18 mach_msg + 64
    2   com.apple.CoreFoundation      0x00007fff8fb41f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation      0x00007fff8fb41539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation      0x00007fff8fb40e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation          0x00007fff8f3e8ff7 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation          0x00007fff8f3e8dfb __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 5:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib        0x00007fff95bda716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8ba27c3b _pthread_cond_wait + 727
    2   libc++.1.dylib                0x00007fff894dcd43 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    3   com.apple.JavaScriptCore      0x000000010d8e7e83 JSC::BlockAllocator::blockFreeingThreadMain() + 227
    4   com.apple.JavaScriptCore      0x000000010d8ddfbf ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 6:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib        0x00007fff95bda716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8ba27c3b _pthread_cond_wait + 727
    2   libc++.1.dylib                0x00007fff894dcd43 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    3   com.apple.JavaScriptCore      0x000000010d8e86cb JSC::GCThread::waitForNextPhase() + 171
    4   com.apple.JavaScriptCore      0x000000010d8e8528 JSC::GCThread::gcThreadMain() + 88
    5   com.apple.JavaScriptCore      0x000000010d8ddfbf ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib        0x00007fff95bda716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8ba27c3b _pthread_cond_wait + 727
    2   libc++.1.dylib                0x00007fff894dcd43 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    3   com.apple.JavaScriptCore      0x000000010d8e86cb JSC::GCThread::waitForNextPhase() + 171
    4   com.apple.JavaScriptCore      0x000000010d8e8528 JSC::GCThread::gcThreadMain() + 88
    5   com.apple.JavaScriptCore      0x000000010d8ddfbf ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib        0x00007fff95bda716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8ba27c3b _pthread_cond_wait + 727
    2   libc++.1.dylib                0x00007fff894dcd43 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    3   com.apple.JavaScriptCore      0x000000010d8e86cb JSC::GCThread::waitForNextPhase() + 171
    4   com.apple.JavaScriptCore      0x000000010d8e8528 JSC::GCThread::gcThreadMain() + 88
    5   com.apple.JavaScriptCore      0x000000010d8ddfbf ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 9:: DFG Worklist Worker Thread
    0   libsystem_kernel.dylib        0x00007fff95bda716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8ba27c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore      0x000000010dba724b JSC::DFG::Worklist::runThread(JSC::DFG::ThreadData*) + 235
    3   com.apple.JavaScriptCore      0x000000010d8ddfbf ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 10:: FTL Worklist Worker Thread
    0   libsystem_kernel.dylib        0x00007fff95bda716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8ba27c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore      0x000000010dba724b JSC::DFG::Worklist::runThread(JSC::DFG::ThreadData*) + 235
    3   com.apple.JavaScriptCore      0x000000010d8ddfbf ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 11:: FTL Worklist Worker Thread
    0   libsystem_kernel.dylib        0x00007fff95bda716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8ba27c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore      0x000000010dba724b JSC::DFG::Worklist::runThread(JSC::DFG::ThreadData*) + 235
    3   com.apple.JavaScriptCore      0x000000010d8ddfbf ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 12:: FTL Worklist Worker Thread
    0   libsystem_kernel.dylib        0x00007fff95bda716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff8ba27c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore      0x000000010dba724b JSC::DFG::Worklist::runThread(JSC::DFG::ThreadData*) + 235
    3   com.apple.JavaScriptCore      0x000000010d8ddfbf ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 13:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib        0x00007fff95bda9aa __select + 10
    1   com.apple.CoreFoundation      0x00007fff8fb8da03 __CFSocketManager + 867
    2   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 14:: QTKit: listenOnDelegatePort
    0   libsystem_kernel.dylib        0x00007fff95bd6a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff95bd5d18 mach_msg + 64
    2   com.apple.CoreFoundation      0x00007fff8fb41f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation      0x00007fff8fb41539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation      0x00007fff8fb40e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation      0x00007fff8fbf6811 CFRunLoopRun + 97
    6   com.apple.QTKit               0x00007fff8bef0e6c listenOnDelegatePort + 385
    7   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 15:: QTKit: listenOnNotificationPort
    0   libsystem_kernel.dylib        0x00007fff95bd6a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib        0x00007fff95bd5d18 mach_msg + 64
    2   com.apple.CoreFoundation      0x00007fff8fb41f15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation      0x00007fff8fb41539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation      0x00007fff8fb40e75 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation      0x00007fff8fbf6811 CFRunLoopRun + 97
    6   com.apple.QTKit               0x00007fff8bef1334 listenOnNotificationPort + 353
    7   libsystem_pthread.dylib       0x00007fff8ba25899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff8ba2572a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff8ba29fc9 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib        0x00007fff95bdae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ba26f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8ba29fb9 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib        0x00007fff95bdae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ba26f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8ba29fb9 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib        0x00007fff95bdae6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff8ba26f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff8ba29fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x0000000000000001  rdx: 0x000000000009c580
      rdi: 0x0000000000000000  rsi: 0x0000000000000002  rbp: 0x00007fff52ada830  rsp: 0x00007fff52ada820
       r8: 0x00007ffd758510c0   r9: 0x00007ffd70f49b70  r10: 0x00000000da9b03bd  r11: 0x00000000fb952d8c
      r12: 0x000000011c198a18  r13: 0x000000011c1988c0  r14: 0x0000000000000004  r15: 0x000000011c198900
      rip: 0x000000010ead3829  rfl: 0x0000000000010246  cr2: 0x0000000000000078
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10d123000 -        0x10d123ff8  com.apple.WebKit.WebContent (9600 - 9600.1.17) <01AE09F5-BF23-30B6-B5D5-D5A624CFFF6F> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/XPCServices /com.apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
           0x10d12a000 -        0x10d12afff  WebProcessShim.dylib (7600.1.17) <868C1950-0B6A-3734-9FA0-3DA6D75A6CDD> /System/Library/StagedFrameworks/Safari/WebKit.framework/WebProcess.app/Content s/MacOS/WebProcessShim.dylib
           0x10d135000 -        0x10d3cffff  com.apple.WebKit (9600 - 9600.1.17) <8C2C77EF-14DD-3F9E-9EF1-95B2A9B4FFF8> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
           0x10d6ad000 -        0x10d7e0fff  com.apple.WebKitLegacy (9600 - 9600.1.17) <3B62C7FA-2646-3A09-BB76-79224FA2E723> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
           0x10d8d4000 -        0x10dd8bff5  com.apple.JavaScriptCore (9600 - 9600.1.17) <ADC5427B-649F-3C9F-A88A-D5EA81093BC1> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
           0x10defe000 -        0x10edb2ffd  com.apple.WebCore (9600 - 9600.1.17) <854B5ADC-58CA-34F4-B3CA-90D79F6534FB> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
           0x10f7fa000 -        0x10f7fafff  com.apple.WebKit2 (9600 - 9600.1.17) <E9BF6393-4D1C-3DD6-8E4F-644C4DBD08A1> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
           0x11000e000 -        0x110020ff7  com.apple.webcontentfilter.framework (5.1 - 5.1) <61A84F10-0B23-31E7-8E14-A689ED4DE80F> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalys is
           0x112b75000 -        0x113080ffb  com.apple.Safari.framework (9537 - 9537.85.10.17.1) <79BAD61D-4970-3FF8-9F40-6ABAFFAC4CE1> /System/Library/StagedFrameworks/Safari/Safari.framework/Safari
           0x113c04000 -        0x113c05ff0  ATSHI.dylib (363.3) <236B636F-A8E9-37A9-BEF0-7FE68BC58436> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x119da2000 -        0x119da6ffd  com.apple.audio.AppleHDAHALPlugIn (2.6.3 - 2.6.3f4) <2EB88B27-FA19-3C0C-AA06-7FB8BC56694E> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x11a820000 -        0x11b191f6b  libllvmForJSC.dylib (7600.1.17) <61C69E61-B56E-378C-A557-17F25F786320> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Libraries/libl lvmForJSC.dylib
        0x123400000000 -     0x12340047bff7  com.apple.driver.AppleIntelHD4000GraphicsGLDriver (8.28.32 - 8.2.8) <0B941CC0-E86A-3410-B64B-0BCDAD0922B0> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD4000GraphicsGLDriver
        0x7fff6e130000 -     0x7fff6e163817  dyld (239.4) <7AD43B9B-5CEA-3C7E-9836-A06909F9CA56> /usr/lib/dyld
        0x7fff880b2000 -     0x7fff881d4fff  com.apple.avfoundation (2.0 - 651.12.1) <FF001F98-E198-3B1D-A7EB-A8C48E6E34A3> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff881d5000 -     0x7fff88393fff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff88394000 -     0x7fff8839dff7  libcldcpuengine.dylib (2.3.58) <E3A84FEC-4060-39C2-A469-159A443D2B6D> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
        0x7fff8839e000 -     0x7fff88cbd797  com.apple.CoreGraphics (1.600.0 - 599.35.4) <C8CBC664-0CD2-3C7D-A301-9B3BA731250C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff88cbe000 -     0x7fff88cc9ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff88cf1000 -     0x7fff88d57fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff88d58000 -     0x7fff88e10ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff88eb7000 -     0x7fff88ebbfff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff88ebc000 -     0x7fff88ebffff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff88ec0000 -     0x7fff88ec2fff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff88fc4000 -     0x7fff89028fff  com.apple.datadetectorscore (5.0 - 354.5) <0AE9749A-6BFC-3032-B802-210DF59AEDB0> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff89029000 -     0x7fff8902afff  libquit.dylib (161.2) <7B9C07B6-8993-32C8-89C2-23D2E7FA85BA> /usr/lib/libquit.dylib
        0x7fff8902b000 -     0x7fff89361fff  com.apple.MediaToolbox (1.0 - 1273.54) <CB6F6690-D44C-30B5-93AB-CAB198D51884> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff89362000 -     0x7fff89366ff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
        0x7fff89367000 -     0x7fff894d5ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff894d6000 -     0x7fff89528fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff89529000 -     0x7fff8995cffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff8a46b000 -     0x7fff8a46dfff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8a46e000 -     0x7fff8a4bbfff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <608D91BD-9D88-3FAB-9A06-24C1DAEA092D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8a4c7000 -     0x7fff8a533fff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8a534000 -     0x7fff8a53dffb  libsystem_notify.dylib (121.20.1) <9B34B4FE-F5AD-3F09-A5F0-46AFF3571323> /usr/lib/system/libsystem_notify.dylib
        0x7fff8a53e000 -     0x7fff8a55afff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8a55b000 -     0x7fff8a571fff  com.apple.CoreMediaAuthoring (2.2 - 947) <F1886A05-1C29-3F88-88C0-4A1013530AD1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8a57f000 -     0x7fff8a582ff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
        0x7fff8a5cd000 -     0x7fff8a9aeffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8aa07000 -     0x7fff8aa0efff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8aa3d000 -     0x7fff8aa56ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8af27000 -     0x7fff8af4effb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8af4f000 -     0x7fff8af73ff7  libJPEG.dylib (1044) <BE0ED4E1-F7FC-3038-86D3-0456DD173FCB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8afc6000 -     0x7fff8afc8fff  libRadiance.dylib (1044) <461482C9-CADB-3B36-B023-597C64AD4B00> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8afc9000 -     0x7fff8aff2fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8aff3000 -     0x7fff8b29dff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8b2a0000 -     0x7fff8b2abfff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8b30d000 -     0x7fff8b31aff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8b31b000 -     0x7fff8b325ff7  com.apple.AppSandbox (3.0 - 1) <9F27DC25-C566-3AEF-92D3-DCFE7836916D> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff8b326000 -     0x7fff8b329ffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8b32a000 -     0x7fff8b32bfff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8b32c000 -     0x7fff8b356ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8b357000 -     0x7fff8b3b0fff  libTIFF.dylib (1044) <FBC5800B-7F34-3755-A44E-7B37B3E0B32E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b3b1000 -     0x7fff8b418ff7  com.apple.CoreUtils (2.0 - 200.34.4) <E53B97FE-E067-33F6-A9C1-D4EC2A20FB9F> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8b419000 -     0x7fff8b424fff  libGPUSupportMercury.dylib (9.6.1) <A34D5C51-28E0-398A-881D-552B47D2DD3C> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
        0x7fff8b425000 -     0x7fff8b454ff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8b462000 -     0x7fff8b496fff  libssl.0.9.8.dylib (52) <51C844FF-D7CD-3525-9ABB-84B8DD11D5E4> /usr/lib/libssl.0.9.8.dylib
        0x7fff8b497000 -     0x7fff8b4f5ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8b85a000 -     0x7fff8b9aeff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8ba24000 -     0x7fff8ba2bff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8ba2c000 -     0x7fff8bbc8ff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8bbc9000 -     0x7fff8be9aff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8be9b000 -     0x7fff8bec9ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8bedd000 -     0x7fff8c01efff  com.apple.QTKit (7.7.3 - 2826.24) <08E58C71-D16C-3357-989C-780A08994B27> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff8c01f000 -     0x7fff8c020fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8c021000 -     0x7fff8c029fff  libsystem_dnssd.dylib (522.92.1) <17B03FFD-92C5-3282-9981-EBB28B456207> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8c02a000 -     0x7fff8c030ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff8c031000 -     0x7fff8c11bfff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8c11e000 -     0x7fff8c121ffa  libCGXType.A.dylib (599.35.4) <A2B493FD-2EDE-3BC2-A281-2381E0156411> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8c122000 -     0x7fff8c127ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff8c167000 -     0x7fff8c16fff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8c170000 -     0x7fff8c1a9ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8c1ad000 -     0x7fff8c1b0fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8c1b1000 -     0x7fff8c1b1fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8c1c5000 -     0x7fff8c20aff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8c20b000 -     0x7fff8c20cff7  libodfde.dylib (20) <C00A4EBA-44BC-3C53-BFD0-819B03FFD462> /usr/lib/libodfde.dylib
        0x7fff8c20d000 -     0x7fff8c21fff7  com.apple.MultitouchSupport.framework (245.13.1 - 245.13.1) <38262B92-C63F-35A0-997D-AD2EBF2F8338> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8c26b000 -     0x7fff8cde1ff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8cde2000 -     0x7fff8cde4ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8cde5000 -     0x7fff8cdf4ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8ce1f000 -     0x7fff8cefbfff  libcrypto.0.9.8.dylib (52) <ED7F3865-10D4-346B-8C9C-D968EB3B5D35> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8d405000 -     0x7fff8d423ff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8d424000 -     0x7fff8d450fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8d533000 -     0x7fff8d54eff7  libPng.dylib (1044) <151BA92C-6E7C-3B69-8024-FDD1E2C89DD3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8d54f000 -     0x7fff8d636ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff8d637000 -     0x7fff8d65fffb  libRIP.A.dylib (599.35.4) <F3C60582-1F27-335D-9C97-8CF307670F7B> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff8d660000 -     0x7fff8d678ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8d679000 -     0x7fff8d683ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8d68d000 -     0x7fff8d921ff7  com.apple.RawCamera.bundle (5.07 - 760) <EA94F148-975D-32D7-8A20-B06017E5793B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8d922000 -     0x7fff8d93cfff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
        0x7fff8d93d000 -     0x7fff8d984ff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
        0x7fff8d985000 -     0x7fff8d9d2ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8d9d3000 -     0x7fff8d9ddfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8d9de000 -     0x7fff8dacfff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff8dad0000 -     0x7fff8daddff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8dade000 -     0x7fff8daf9ff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8ddc0000 -     0x7fff8ddc8ffc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8ddc9000 -     0x7fff8de1aff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8de44000 -     0x7fff8de4cff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8de61000 -     0x7fff8de83fff  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <C2687C2C-239A-3EB4-857C-BA107F34A5E8> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff8de84000 -     0x7fff8dea9ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8deaa000 -     0x7fff8e010fff  libGLProgrammability.dylib (9.6.1) <07700B99-8542-32D7-BB96-29472EFE75EF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
        0x7fff8e01e000 -     0x7fff8e1beff7  GLEngine (9.6.1) <28300FBD-E3B2-35D2-BB54-77DCE62FC371> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundl e/GLEngine
        0x7fff8e2b1000 -     0x7fff8e6fffef  com.apple.VideoToolbox (1.0 - 1273.54) <4699BB55-7387-3981-9217-869215F00CA9> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8e770000 -     0x7fff8e774ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8e775000 -     0x7fff8e7a6ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff8e7a7000 -     0x7fff8e7a8ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8e7c6000 -     0x7fff8e7cbfff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8e7cc000 -     0x7fff8eab6fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8eab7000 -     0x7fff8eabdfff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff8eb47000 -     0x7fff8eb55fff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8eb56000 -     0x7fff8eb63ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8eb64000 -     0x7fff8ec93fef  com.apple.MediaControlSender (2.0 - 200.34.4) <FC24EC8D-2E46-3F76-AF63-749F30857B96> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff8ec94000 -     0x7fff8ec97ff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8ec98000 -     0x7fff8ecc7fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff8ecc8000 -     0x7fff8ee80ffb  libicucore.A.dylib (511.35) <6F097DA7-147C-32A1-93D2-728A64CF0DC2> /usr/lib/libicucore.A.dylib
        0x7fff8ef34000 -     0x7fff8f17cff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8f1f2000 -     0x7fff8f20dff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8f20e000 -     0x7fff8f285fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8f286000 -     0x7fff8f286ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8f287000 -     0x7fff8f337ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8f338000 -     0x7fff8f33ffff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8f382000 -     0x7fff8f682ff7  com.apple.Foundation (6.9 - 1056.16) <24349208-3603-3F5D-95CC-B379616FBEF8> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8f684000 -     0x7fff8f6acffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff8f7b0000 -     0x7fff8f7d9ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
        0x7fff8f7da000 -     0x7fff8f7dafff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8f8ca000 -     0x7fff8f92fffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8f930000 -     0x7fff8f932fff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8f933000 -     0x7fff8f981fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7f

  • The Java VM terminated with a non-zero exit code.

    Hi,expert,
    I have got this error when I am trying to restart the sap Instance use
    command STARTSAP,
    The error log as below:
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 940893 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    trc file: "/usr/sap/J2E/JC00/work/dev_jcontrol", trc level: 1,
    release: "640"
    ERROR => can't retrieve client list (rc=24) [jcntrms_mt.c960]
    May 21, 2010 12:53:14... com.sap.engine.core.Framework [SAP
    J2EE Engi
    ne|MS Socket Listener] Fatal: Critical shutdown was invoked. Reason is:
    Exiting
    Listener Loop. This requires a restart of the node. Possible reason is
    an interr
    upted reconnect session to the message server.
    Thanks and Best regards,
    Michael

    Hi Michael,
    I am also facing the same issue, can you please let me know where to find the ms.hostname and enqu.hostname...It's very urgent.
    Thanks in advance..
    Regards,
    Krishna.M

  • Deadlock with thread issues while generating reports with Crystal Report XI

    We are facing deadlock with thread issues while generating report with Crystal Report XI
    Version Number is 11.0 and the database used is Oracle
    In the log file on line number 74350  by 2008/12/16 13:35:54 there is a dead lock with Thread: u20184u2019 is waiting to acquire lock for 'com.crystaldecisions.reports.queryengine.av@15214b9' which is held by the Thread: '0'.
    And  a dead lock with Thread: u20180u2019 is waiting to acquire lock for 'com.crystaldecisions.reports.queryengine.av@15214b9' which is held by the Thread: '4'.
    Exactly after 10 minutes we can see the thread 4 and 0 are declared as STUCK by 2008/12/16  13:45:54 .
    Is this an existing issue with Crystal Report?
    Is there some solution for this problem?
    THE LOG FILE INFORMATION IS GIVEN BELOW
    [deadlocked thread] [ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)':
    Thread '[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'' is waiting to acquire lock 'com.crystaldecisions.reports.queryengine.av@15214b9' that is held by thread '[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)''
    Stack trace:
         com.crystaldecisions.reports.queryengine.av.V(Unknown Source)
         com.crystaldecisions.reports.queryengine.av.do(Unknown Source)
         com.crystaldecisions.reports.queryengine.as.if(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.datainterface.j.c(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.cy.b(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.cy.long(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.a1.o(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.a1.a(Unknown Source)
         com.crystaldecisions.reports.common.ab.a(Unknown Source)
         com.crystaldecisions.reports.common.ab.if(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.a1.if(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.a1.o(Unknown Source)
         com.crystaldecisions.reports.reportengineinterface.a.a(Unknown Source)
         com.crystaldecisions.reports.reportengineinterface.a.a.b.a(Unknown Source)
         com.crystaldecisions.reports.sdk.ReportClientDocument.open(Unknown Source)
         com.sysarris.aris.crystalreports.RepServlet.generateReport(RepServlet.java:65)
         com.sysarris.aris.crystalreports.RepServlet.doPost(RepServlet.java:40)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
         weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
         weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
         weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165)
         weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3153)
         weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1973)
         weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1880)
         weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1310)
         weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    [deadlocked thread] [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)':
    Thread '[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'' is waiting to acquire lock 'com.crystaldecisions.reports.queryengine.av@12e0415' that is held by thread '[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)''
    Stack trace:
         com.crystaldecisions.reports.queryengine.av.V(Unknown Source)
         com.crystaldecisions.reports.queryengine.av.do(Unknown Source)
         com.crystaldecisions.reports.queryengine.as.if(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.datainterface.j.c(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.datainterface.j.a(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.cy.b(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.cy.long(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.a1.o(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.a1.a(Unknown Source)
         com.crystaldecisions.reports.common.ab.a(Unknown Source)
         com.crystaldecisions.reports.common.ab.if(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.a1.if(Unknown Source)
         com.crystaldecisions.reports.reportdefinition.a1.o(Unknown Source)
         com.crystaldecisions.reports.reportengineinterface.a.a(Unknown Source)
         com.crystaldecisions.reports.reportengineinterface.a.a.b.a(Unknown Source)
         com.crystaldecisions.reports.sdk.ReportClientDocument.open(Unknown Source)
         com.sysarris.aris.crystalreports.RepServlet.generateReport(RepServlet.java:65)
         com.sysarris.aris.crystalreports.RepServlet.doPost(RepServlet.java:40)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:225)
         weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:127)
         weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:272)
         weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:165)
         weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3153)
         weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:1973)
         weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1880)
         weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1310)
         weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         weblogic.work.ExecuteThread.run(ExecuteThread.java:179)
    Can you please suggest any work around for this?

    I'm not referring to Servlet threading issues.
    I'll clarify.
    You have two threads, both entering ReportClientDocument.open(...) method.
    Thread 4 is waiting to acquire 'com.crystaldecisions.reports.queryengine.av@15214b9'
    Thread 0 is waiting to acquire ''com.crystaldecisions.reports.queryengine.av@12e0415'
    So I'm thinking ??? are they the same objects?
    My specific question concerning the ReportClientDocument is that both are calling open - i.e., trying to open a new report.  You wouldn't be trying to open different reports using the same ReportClientDocument - so was wondering if you've cached the RCD and trying to open two different reports at the same time on the same instance via different threads.
    You'd normally tie a ReportClientDocument instance to a HTTP Session, to ensure each user gets their own copy.
    Sincerely,
    Ted Ueda

  • MII 12.1 Unknown Java AS user with permissions of deploy

    hi,
    I have to update a PRODUCTION Environment with Support Packages (unfortunately without a ready Quality one as mirror for testing them).
    So, I'm trying to install again the same software someone else used for PRODUCTION, in a Quality server.
    on
    SO: Microsoft Windows Server 2003 R2 Standard x64 Edition SP2
    I installed successfully SAP NetWeaver CE 7.1 EHP1, but after launching JSPM to install SAP MII 12.1, I'm requested to insert login of an
    Java AS user with deployment permissions.
    In details I undestrood that the path to be followed, after activating Java AS and checking read rights of OS user on JSPM packages folder,
    it should be:
    1- launch the JSPM with OS <SAPSID>adm user;
    2- insert Java AS user credentials with deployment permissions when requested (to log in to JSPM Server).
    3- ...
    n- ...
    on step 2, even inserting user administrator and master password of NetWeaver installation, I cannot proceed.
    Shouldn't it have those rights. How are them called and where can I assign them?
    Looking at the logs of JSPM I found something like this:
    Info: Connecting to Deploy Controller on host localhost port 50004 with user ce1adm.
    Error: com.sap.engine.services.dc.api.ConnectionException: ERROR CODE DPL.DCAPI.1144 NamingException.Cannot get initial context.
    Reason: Exception during getInitialContext operation. Cannot establish connection to the remote server.
    Info:DC API is trying to connect to 'localhost:50004'
    Error: Exception ::SessionImpl::getContext():get ctx. NamingException,cause=Exception during getInitialContext operation. Cannot establish connection to the remote server.
    Even if I try to "add" components starting from NetWeaver installation, I'm requested with a Java EE Administrator I cannot identify.
    any ideas of what's happening?
    regards

    I solved the issue.
    Simply, if you don't assign to the server an host name, it gets standard "localhost" and during jspm login system is somehow confused.
    The problem it was related to a not reachable AS java and not to users rights.
    regards

  • CF 11: Configuration a datasources to MS SQL Backend with encryption enforced by SQL Server

    Hello List;
    I have the following problem: Configuration a datasources to MS SQL Backend with option encryption enforced (by SQL Server).
    I goggled in the internet for the configuration of the datasource and find multiple articles/advices:
    Configuration a datasource type other with jtds.jdbc.Driver and manual configuration of the connection string:
    1. Downloading the driver and copy to the cfusion/lib directory: Done, the driver was recognized by coldfusion after a restart of the service.
    2. Copying the ntlmauth.dll to the bin directory of jre/bin: Done
    3. Configuration of the jdbc URL: jdbc:jtds:sqlserver://xxxx.xxx.xxx.net:1433/db: Works, I don’t  get a connection timeout
    4. User and PW: Works: I don’T get a login failure.
    5. Advanced settings: Connection String: Maybe here is something wrong: EncryptionMethod=SSL; TrustStore=Path\sqlstore.jks; TrustStorePassword=xxx; ValidateServerCertificate=true; HostNameInCertificate=xxx.xxx.xxx.net;
    Error Message (Coldfusion logs/stack trace):  I/O Error: DB server closed connection. SQLException while attempting to connect: java.sql.SQLException: I/O Error: DB server closed connection..
    Has anybody experiences with this topic/can give me advices/send me screenshots.
    frank

    Hi Stephen;
    we tried: add EncryptionMethod=SSL; ValidateServerCertificate=false; to the connection string;
    And it doesn't work.. Are you sure, that you have enabled encryption enforced in your SQL-Server Settings.
    Oherwise the connection works, but the Connection is not encrypted:
    Coldfusion lies!
    You can controll this by veryfining the open connections on the sqlserver with the query:
    SELECT net_transport, protocol_type, encrypt_option ,auth_scheme, program_name FROM sys.dm_exec_connections AS c JOIN sys.dm_exec_sessions AS s ON c.session_id = s.session_id cross apply sys.dm_exec_sql_text(most_recent_sql_handle) AS d
    There you can see the jtds Connectionand the (programname) and the encryt_option (must be true).
    frank

Maybe you are looking for

  • How to read files....plzzz

    Hi! All, I have a problem in reading files using jfilechooser class. when i select open menuitem from the file menu and reading it through the file reader class it is giving nullpointer exception. Also i tried by hardcoding filename in filereader cla

  • Need help with MySQL Query...Again

    Ok so I get this error when I enter "springfield" and "MA" for the city and state. This server program accepts either a 'zipcode' or 'city, state' depending on the choice # passed to it. I just need to be able to perform the query. Thanks!! java.sql.

  • Why is the Restore function in disk utility so slow?

    I am using the Restore functionality in Disk Utility to copy my old 250GB Time Machine disk (which is now full) to a new 1.1TB disk. 250GB is calculating to take 11 hours to copy. Both disks are connected via FireWire (old one is FireWire 400, new on

  • I have Windows surface RT 8.1 how do i get dream weaver on it

    @

  • How do I reboot to factory settings?

    I have a nasty virus plus my browser has been hijacked and everything is really messed up. How do I reboot to factory settings? I was told to use fn/f11 but nothing happens. Pavillion g6-1d60us Notebook Thank you