Unexpected internal Exception (RelatchRequiredException)

Hi,
I have recently upgraded to version 5.0.34 and was testing our application when I saw the following error:
com.sleepycat.je.EnvironmentFailureException: (JE 5.0.34) com.sleepycat.je.utilint.RelatchRequiredException UNEXPECTED_EXCEPTION: Unexpected internal Exception, may have side effects.
at com.sleepycat.je.EnvironmentFailureException.unexpectedException(EnvironmentFailureException.java:286)
at com.sleepycat.je.tree.BIN.fetchTarget(BIN.java:1268)
at com.sleepycat.je.Cursor.checkForInsertion(Cursor.java:3006)
at com.sleepycat.je.Cursor.retrieveNextAllowPhantoms(Cursor.java:2926)
at com.sleepycat.je.Cursor.retrieveNextNoDups(Cursor.java:2789)
at com.sleepycat.je.Cursor.retrieveNext(Cursor.java:2763)
at com.sleepycat.je.Cursor.getNext(Cursor.java:1116)
As a rough overview, the application has many threads (transactionally) inserting and removing into three separate tables. Commits are non synchronous (i.e. Transaction.commitNoSync() is being used). A separate thread regularly calls Environment.flushLog(true).
I've only seen this once so far, when the application was under very heavy load...
Any ideas?
Cheers,
Rob

OK... I've been doing some more testing and have some more information.
Firstly I have seen this a few more times though by no means is this particular error easily reproducable.
I have determined that it occurs on both jdk 1.7.0 and 1.6.0_26 (both linux, 64bit) as I wanted to rule out jdk 1.7 as a factor.
Since I had never seen this error when using v4.x of BDB I looked at the code change I hade made simultaneous with the upgrade, namely that previously in order to synchronously flush the asyncronoush transaction commits to disk I was calling Environment.sync() whereas with v5.0.34 I was calling Environment.flushFlog(true) (since this had demonstrated better performance and covered exactly the use case that I desired).
After switching this code back to sync() I could not reproduce the issue. Moreover neither did I see any of the other perplexing errors that I had been investigating (see below).
The part in my code where the error was occuring is the only place where cursors are actively used. All other transactional activity is either single record inserts, or single record deletes drived by a unique key. In the area of the code where I saw this exception being thrown, looks somewhat like this:
DatabaseEntry value = new DatabaseEntry();
value.setPartial(0, 0, true);
cursor = database.openCursor(tx, null);
status = cursor.getSearchKeyRange(key, value, LockMode.RMW);
while (status == OperationStatus.SUCCESS)
keyObject = binding.entryToObject(key);
if(keyObject.getId() != id)
break;
else
status = cursor.delete();
status = cursor.getNext(key, value, LockMode.RMW);
cursor.close();
tx.commitNoSync();
Where the idea is that the actual primary key for the table is a compound of (id,number), and we start the cursor from the key (id,0) and delete all entires until we find an entry with a different id.
Now as it happens, for the test I am running I know that there will only ever be at most one entry of the form (id, 0).
And if I change the code to remove the cursor, and instead just do a straight delete operation on the database, I again see no errors.
The other thing to note is that in addition to the Unexpected Internal Exception described above, I was seeing far more frequent LockTimeout exceptions... moreover backing off and retrying the transactions didn't seem to work - the locks seemed to be permanently locked. These timeouts also only occurred in the above part of my code, and not in any of the other transactions it was performing.
After changing to use Environment.sync() (rather than flushLog), or after removing the cursor (but keeping flishLog) these lock timeout exceptions also went away.
Finally I was seeing an even stranger (to me) error... Occaisionally my tests seemed to be completing fine, but when I came to shut down my process, closing the environment was reporting that some transactions were still uncommitted. Again - the only instances were from the transactions involving the cursor above. Now as above the only way that you can get through that code without committing is (AFAICT) by some method throwing an exception... and I was seeing no such exceptions reported.
Once again, either changing from flushLog(true) to sync(), or replacing the cursor with a straight delete stopped these issues from occurring.
So, in summary I was seeing a number of weird behaviours that only seemed to occur when I was using a cursor to delete records from my database, and when I was using flushLog() to flush the log records to disk.
Hope this is helpful... If there's anything more I can do to help you debug this issue, please let me know,
Cheers,
Rob

Similar Messages

  • GP Mail: Unexpected internal exception during background execution

    Hi,
          I have designed a process in Guided Procedures which send mails when Approved or Rejected. I get an exception for users who have yahoo or gmail IDs.
    Technical Exception:
    Unexpected internal exception during background execution: The message contains non-trusted or invalid receivers
    Is there any setting /configuration for sending mails to these.
    Pl help
    Thanks,
    Vasu
    Message was edited by:
            Vasu Mullapudi

    Hi,
    are you using the Bounced Mails Framework to manage you mails? If so, one possible explanation is that BMF blocks untrusted messages.
    To configure BMF options, go to the Administration workset and edit the list of trusted addresses in BMF.
    More info:
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/44/450862f1f014bce10000000a155369/frameset.htm">Administering the BMF</a>
    <a href="http://help.sap.com/saphelp_nw70/helpdata/en/44/4491dafaab0597e10000000a155369/frameset.htm">Managing Trusted Addresses</a>
    HTH
    Regards, Petja

  • CORE4007: Internal error: Unexpected Java exception thrown (java.lang.NullP

    Hi,
    Currently we have a custom devoloped Java application deployed in oracle iplanet webserver 7 with JDK 1.6. I am receiving the below errors. The application is not stable. It gives a 500 internal error sometimes when browsing. When i checked the error log. Below is the message.
    CORE4007: Internal error: Unexpected Java exception thrown (java.lang.NullPointerException, no description), stack: java.lang.NullPointerException
    Could you please throw some light on this.

    You need to fix your custom developed app since it is causing the errors and instability. Tell the developers to properly verify the input data and improve their exception handling so you get better error messages that tells you what went wrong.

  • Error:COMMON-1: Some unexpected internal error has occured.

    Error:COMMON-1: Some unexpected internal error has occured. If the problem persists please report to the Tech Support.
    Error: No response from the device "a.b.c.d/161". Check SNMP communities, version or network for issues.
    Above errors are seen on accessing WLC for config purpose from WCS. Seen after migrating WCS 4.2.62 to a new hardware and restoring the backed config.
    OS and software versions remain the same, only new hardware is an upgraded one.
    The original server is now put back in place and works .. just fine.

    In this migration, everything is absolutely same except the hardware.
    Same WLCs, same WCS version. IP/hostname/configs all same.

  • EJB QL "unexpected token: ( " Exception with IN operator and AND operator

    Hey everyone,
    Hopefully someone can help me. I am just starting to write more complex queries with EJB QL and am running into an issue. When I run my query I get an "Internal Exception: line 1:87: unexpected token: (" Exception below is my query with acording to the sun references I have managed to find looks right. Here is my query:
    SELECT OBJECT(e) FROM Period e, IN (e.myScorecardItem.cyclesList) t WHERE current_date() BETWEEN e.startDate AND e.endDate AND t.id =?1
    I have removed the portion with the IN navigation and it works fine, and I have removed the conditional statement and left the IN portion and that works fine but I can not get the to work together. Here is my bean relationships: Cycles have ScorecardItems have Periods. I am trying to find all the Periods that fall within a certain cycle. Any direction or help anyone can provide would be greatly appreciated.
    Thanks,
    Justen

    It's not inherently bad - but it does depend on the optimizer getting  good estimate of the data volume.
    Did you test with 200 distinct values in your IN list, and can you see in the execution plan Oracle estimate of how many rows the subquery would generate.
    Regards
    Jonathan Lewis

  • Java.io.IOException: FRM-93000: Unexpected internal error.

    Hi Exprerts,
    I have noticed the below errors in the application log file on my production instance.
    E Business Suit = R12.1.1 + 11.1.0.7
    Application Log - /rsv/d02/inst/apps/PROD_oro/logs/ora/10.1.3/j2ee/forms/forms_default_group_1
    13/02/21 13:36:44.901 formsweb: Forms session <2,194> aborted: unable to communicate with runtime process.
    13/02/21 13:36:44.901 formsweb: Forms session <2194> exception stack trace:
    java.io.IOException: FRM-93000: Unexpected internal error.
    Details : No HTTP headers received from runform
    at oracle.forms.servlet.ListenerServlet.forwardResponseFromRunform(Unknown Source)
    at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    Please advise.
    Regards
    Mohammed.Abdul Muqeet

    Hi Exprerts,
    I have noticed the below errors in the application log file on my production instance.
    E Business Suit = R12.1.1 + 11.1.0.7
    Application Log - /rsv/d02/inst/apps/PROD_oro/logs/ora/10.1.3/j2ee/forms/forms_default_group_1
    13/02/21 13:36:44.901 formsweb: Forms session <2,194> aborted: unable to communicate with runtime process.
    13/02/21 13:36:44.901 formsweb: Forms session <2194> exception stack trace:
    java.io.IOException: FRM-93000: Unexpected internal error.
    Details : No HTTP headers received from runform
    at oracle.forms.servlet.ListenerServlet.forwardResponseFromRunform(Unknown Source)
    at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:619)
    Please advise.
    Regards
    Mohammed.Abdul Muqeet

  • FRM-93000: Unexpected internal error in 9.0.4.2

    Hi
    I'm running a forms app in OracleAS 9.0.4.2 and I'm getting the following error in the application.log:
    05/11/23 09:05:16 forms90web: Forms session <20> exception stack trace:
    java.io.IOException: FRM-93000: Unexpected internal error.
    Details : Invalid or absent Content-Length from runform
    Any ideas?

    repost

  • FRM-93000: Unexpected internal error.

    Problem Brief--
    I have designer generated form CMM001 on which clicking on button go to new form cmm002 which is search form based on value you select from lov and date you put.I am wondering it failing only when I select a value 'Affective Disorder Team' from lov for an organization. I checked removing 'Disorder' word for searching then it doesn't return row but form is not failing at all.I tried couple of times on differrent way and I noticed it failing only when 'order' worder is there in any form.In my form no webutil/text_io or block not based on procedure. Following is the information avilable on application.log and trace file. Any input will be highly appreciated.
    --application.log  content
    09/06/03 16:43:24 formsweb: Forms session <15> aborted: unable to communicate with runtime process.
    09/06/03 16:43:24 formsweb: Forms session <15> exception stack trace:
    java.io.IOException: FRM-93000: Unexpected internal error.
    Details : No HTTP headers received from runform
         at oracle.forms.servlet.ListenerServlet.forwardResponseFromRunform(Unknown Source)
         at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    ----Trace content
    [06/03/09 16:43:23 GMT Standard Time]::Client Status [ConnId=0, PID=2676]
         >> ERROR: Abnormal termination, Error Code: C0000005 ACCESS_VIOLATION
    ======================= STACK DUMP =======================
    Fault address: 77C47696 01:00036696
    Module: C:\WINDOWS\system32\msvcrt.dll
    System Information:
    Operating System: Windows NT Version 5.1 Build 2600 Service Pack 3
    Command line: frmweb server webfile=HTTP-0,0,0,Swift2500,172.22.3.82
    FORM/BLOCK/FIELD: ADWINVOLV:V_IWIZAR.<NULL>
    Last Trigger: PRE-SELECT - (Successfully Completed)
    Msg: <NULL>
    Last Builtin: NAME_IN - (Successfully Completed)
    Registers:
    EAX:00000000
    EBX:00000000
    ECX:00000000
    EDX:00000000
    ESI:00CC85CC
    EDI:00CD27C8
    CS:EIP:001B:77C47696
    SS:ESP:0023:0013DC80 EBP:00000137
    DS:0023 ES:0023 FS:003B GS:0000
    Flags:00210246
    ------------------- Call Stack Trace ---------------------
    Frameptr RetAddr Param#1 Param#2 Param#3 Param#4 Function Name
    ------------------- End of Stack Trace -------------------

    You might want to check metalink note 255023.1 - How to Interpret the Oracle Forms Error - FRM-93000 to get a better understanding of this error.
    If your application has been running for a while without problems and then you hit this problem, it might be possible that you need to tune your Application Server, you can refer to metalink note 294749.1 - Troubleshooting WebForms Tuning / Performance /Time out Problems.
    If I were you, I would open a SR with Oracle so that they help you with the investigation and to get more detailed logs ... this error FRM-93000 is a generic one, it simply says that your Form crashed/was terminated, it will require more investigation.

  • Unexpected internal error near index 1

    Hi,
    I am convering al l occurance of "\" into "/" in a string.
    private String format(){
            input="java\\software\\";
            System.out.println("Before formating, input:" + input);
            try{           
                input=input.replaceAll("\\", "/");
                System.out.println("After formating, Input:" + input);
            }catch(Exception e){
                System.out.println("Error in formatting:" + e.getMessage());
            return input;
        }And I am getting this Error:
    Unexpected internal error near index 1
    Any idea whats wrong with above code?

    If you want to replace two backslashes with asingle
    forward slash, then you need to specify the former
    (as a regular expression) as "\\\\"OH! Thanks. I got another way and its working.
    I am using
    s.replace('\\', '/'); insteadd of
    replaceAll
    Yes, that's definitely better in this case, since that API is simpler for single-char replacements. If you sometime need to replace strings though (back to the replaceAll) you'll need to be aware of how regular expressions are formed and how the backslash character plays a part in forming them.

  • Regarding Internal Exception: java.sql.SQLException

    While deploying the application we are encounter a following error,
    Internal Exception: java.sql.SQLException: Error in allocating a connection. Cause: Connection could not be allocated because: FATAL: sorry, too many clients already
    Error Code: 0
    Deployment error:
    Please give me a suggession for this error.
    Thanks,

    While deploying the application we are encounter a following error,
    Internal Exception: java.sql.SQLException: Error in allocating a connection. Cause: Connection could not be allocated because: FATAL: sorry, too many clients already
    Error Code: 0
    Deployment error:
    Please give me a suggession for this error.
    Thanks,

  • Internal Exception: oracle.xml.parser.v2.XMLParseException xsi:type "toplin

    i am using toplink 10.1.3.0.0 with oracle app server 10.1.2.2, i am using change field optimistic locking and generating the project xml,
    application runs great locally in the jdeveloper, but when it is deployed on app server getting following error
    here are the headers from both my project.xml as well as session xml..
    <?xml version="1.0" encoding="UTF-8"?>
    <toplink:object-persistence version="Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)" xmlns:opm="http://xmlns.oracle.com/ias/xsds/opm" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:toplink="http://xmlns.oracle.com/ias/xsds/toplink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <opm:name>PROJ</opm:name>
    <opm:class-mapping-descriptors>
    <opm:class-mapping-descriptor xsi:type="toplink:relational-class-mapping-descriptor">
    <?xml version="1.0" encoding="UTF-8"?>
    <toplink-sessions version="4.5" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <session xsi:type="server-session">
    <name>PROJSession</name>
    <event-listener-classes/>
    <logging xsi:type="toplink-log">
    <log-level>finer</log-level>
    </logging>
    <primary-project xsi:type="xml">PROJ.xml</primary-project>
    <login xsi:type="database-login">
    <platform-class>oracle.toplink.platform.database.oracle.OraclePlatform</platform-class>
    <user-name></user-name>
    any help/idea appreciated...
    Exception [TOPLINK-9005] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.SessionLoaderException
    Exception Description: An exception was thrown while loading the <project-xml> file [PROJ.xml].
    Internal Exception: Exception [TOPLINK-25004] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.exceptions.XMLMarshalException
    Exception Description: An error occurred unmarshalling the document
    Internal Exception: Exception [TOPLINK-27101] (Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)): oracle.toplink.platform.xml.XMLPlatformException
    Exception Description: An error occurred while parsing the document.
    Internal Exception: oracle.xml.parser.v2.XMLParseException: xsi:type "toplink:changed-field-locking-policy" not resolved to a type definition
    at oracle.toplink.exceptions.SessionLoaderException.failedToLoadProjectXml(SessionLoaderException.java:74)
    at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.loadProjectConfig(TopLinkSessionsFactory.java:316)
    at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.createSession(TopLinkSessionsFactory.java:241)
    at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.buildServerSessionConfig(TopLinkSessionsFactory.java:215)
    at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.buildSession(TopLinkSessionsFactory.java:168)
    at oracle.toplink.tools.sessionconfiguration.TopLinkSessionsFactory.buildTopLinkSessions(TopLinkSessionsFactory.java:124)
    at oracle.toplink.tools.sessionconfiguration.XMLSessionConfigLoader.load(XMLSessionConfigLoader.java:103)
    at oracle.toplink.tools.sessionmanagement.SessionManager.getSession(SessionManager.java:367)
    at oracle.toplink.tools.sessionmanagement.SessionManager.getSession(SessionManager.java:334)
    at myProjectPackage.common.data.toplink.ToplinkDataManagerPeer.<init>(ToplinkDataManagerPeer.java:41)
    at myProjectPackage.common.data.DataManagerFactory.getDataManagerInstance(DataManagerFactory.java:40)
    at myProjectPackage.common.servlet.NYSDOTFilter.getDataManager(NYSDOTFilter.java:964)
    at myProjectPackage.common.servlet.NYSDOTFilter.doFilter(NYSDOTFilter.java:144)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:16)
    at myProjectPackage.caf.servlet.NYSDOTCAFFilter.doFilter(NYSDOTCAFFilter.java:90)
    at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:20)
    at myProjectPackage.common.servlet.NYSDOTLoginFilter.doFilter(NYSDOTLoginFilter.java:95)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:669)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:340)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:228)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:570)

    first thanks for your reply,
    i already figured that out and deployed it using 10.1.3.1 jars
    my question
    1) if it is a bug , how come it works fine with jdeveloper (
    i would appreciate if you could provide any info about it.
    2) i dont want to sound sarcastic , but 10.1.3.1 has of optimistic locking and the recommended solution i found was to use descriptor.getQueryManager().setUpdateCallCacheSize(0);
    looks like 10.1.3.1 fixed one bug and introduced other one which was working fine earlier...
    is there any other way of fixing optimistic locking issue other than using the
    descriptor.getQueryManager().setUpdateCallCacheSize(0);
    where i can find the latest/greatest (up to date patched version of toplink)
    thanks again for your help

  • Test-pstnoutboundcall failure 500, The server encountered an unexpected internal error

    Hi,
    We have a Lync 2013 pool, Front end colocated with Mediation server.
    have trunk configured to CUCM.  I'm able to receive PSTN calls, however cannot dial PSTN number.
    While using test-CsPstnOutboundCall receive the following SRV record error.
    Target Fqdn   : lync2013pool.domain.com
    Result        : Failure
    Latency       : 00:00:00
    Error Message : 500, The server encountered an unexpected internal error
    Diagnosis     : ErrorCode=1008,Source=sip.domain.com,Reason=Unable to resolve
                    DNS SRV record,domain=p
                    Microsoft.Rtc.Signaling.DiagnosticHeader
    i can confirm that we have SRV record for _sipinternaltls._tcp.sipdomain.com

    Hi AlinIliescu,
    You can run the command with the Verbose parameter to get the detailed activity.
    Please make sure you use an existed Lync account to test.
    Make sure this user is Enterprise Voice enabled and assigned the related voice policy.
    Best Regards,
    Lisa Zheng
    Lisa Zheng
    TechNet Community Support

  • Prime Infrastructure 2.1 - User add failed : Some unexpected internal error has occurred.

    Setting up Prime Infrastructure to manage 2504 WLC, trying to add Lobby Ambassador and I get this error message:
    User add failed : Some unexpected internal error has occurred. If the problem persists please report to the Tech Support.
    Technically, this is my second attempt at setting up PI.  I set it up initially with the wrong version of PI and created a lobby ambassador.  I followed the instructions from the forum with a similar problem that said to remove the trap receiver on the WLC from my first attempt at installing PI.
    https://supportforums.cisco.com/discussion/11110686/failed-add-device-wcs-reason-common-1-some-unexpected-internal-error-has-occured 
    I'm now able to add a Lobby Ambassador as long as its not the same username that I created on the previous PI setup.  So I suspect this Lobby Ambassador username is somewhere on the 2504 WLC, but I can't find it anywhere to remove it.

    I have just been struggling with a similar issue on a fresh install of Prime 2.1  Upgraded to 2.1.1.
    If I try to create the user with lobby ambassador role it just fails with "unexpected internal error".
    I eventually found that by creating the user as a normal admin user first - the user is added.  You can then go in a remove the admin role and change the role to lobby ambassador.  This works with no internal error and the lobby admin user is working fine.
    I would say it is just a bug.

  • Internal exception with horizontal mapping

    When two horizontally mapped classes stored with the same ID system comits
    work to database and the throws internal exception. As result corrupt data
    is saved which can not be read back
    1469 TRACE [main] kodo.jdbc.SQL - <t 20688146, conn 20089978> [0 ms]
    executing prepstmnt 3972145 SELECT DISTINCT JDO_CLASS FROM TEST.CONTRACT
    1500 TRACE [main] kodo.jdbc.SQL - <t 20688146, conn 24257622> [0 ms]
    executing prepstmnt 9649099 SELECT t0.JDO_CLASS, t0.JDO_LOCK FROM
    TEST.CONTRACT t0 WHERE t0.CONTRACT_ID = ? [params=(long) 1]
    1563 TRACE [main] kodo.jdbc.SQL - <t 20688146, conn 30008954> [0 ms]
    executing prepstmnt 10233621 INSERT INTO TEST.ORGANIZATION (ACRONYM,
    CONTRACT_ID, JDO_CLASS, JDO_LOCK, NAME, ORG_ID) VALUES (?, ?, ?, ?, ?, ?)
    [params=(null) null, (long) 1, (String) com.peacetech.test.jdo.Organization,
    (int) 0, (null) null, (long) 3]
    1563 TRACE [main] kodo.jdbc.SQL - <t 20688146, conn 30008954> [0 ms]
    executing prepstmnt 3823508 INSERT INTO TEST.PERSON (CONTRACT_ID, JDO_CLASS,
    JDO_LOCK, NAME, NICK_NAME, ORG_ID, PERSON_ID) VALUES (?, ?, ?, ?, ?, ?, ?)
    [params=(long) 1, (String) com.peacetech.test.jdo.Person, (int) 0, (null)
    null, (null) null, (long) 3, (long) 3]
    1563 TRACE [main] kodo.jdbc.SQL - <t 20688146, conn 30008954> [0 ms]
    executing prepstmnt 4973260 INSERT INTO TEST.POST (CONTRACT_ID, JDO_CLASS,
    JDO_LOCK, NAME, ORG_ID, POST_ID, TITLE) VALUES (?, ?, ?, ?, ?, ?, ?)
    [params=(long) 1, (String) com.peacetech.test.jdo.Post, (int) 0, (null)
    null, (long) 3, (long) 3, (null) null]
    1594 TRACE [main] kodo.Runtime - An exception occurred while ending the
    transaction. This exception will be re-thrown.
    kodo.util.FatalInternalException: 3 :: 3:kodo.runtime.PNonTransState@129b0e1
    :: 3:kodo.runtime.PNonTransState@129b0e1
    at
    kodo.runtime.PersistenceManagerImpl.setStateManager(PersistenceManagerImpl.j
    ava:3314)
    at kodo.runtime.StateManagerImpl.commit(StateManagerImpl.java:737)
    at
    kodo.runtime.PersistenceManagerImpl.endTransaction(PersistenceManagerImpl.ja
    va:1103)
    at
    kodo.runtime.PersistenceManagerImpl.afterCompletion(PersistenceManagerImpl.j
    ava:842)
    at kodo.runtime.LocalManagedRuntime.commit(LocalManagedRuntime.java:86)
    at
    kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:542)
    at
    com.peacetech.test.jdo.TestJDOHelper.commitTransaction(TestJDOHelper.java:40
    at com.peacetech.test.HorizontalTest.insert(HorizontalTest.java:57)
    at com.peacetech.test.HorizontalTest.main(HorizontalTest.java:34)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
    ..java:25)
    at java.lang.reflect.Method.invoke(Method.java:495)
    at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
    1594 TRACE [main] kodo.Runtime - An exception occurred while ending the
    transaction. This exception will be re-thrown.
    kodo.util.UserException: Can only perform operation while a transaction is
    active.
    at
    kodo.runtime.PersistenceManagerImpl.assertActiveTransaction(PersistenceManag
    erImpl.java:3602)
    at
    kodo.runtime.PersistenceManagerImpl.afterCompletion(PersistenceManagerImpl.j
    ava:840)
    at kodo.runtime.LocalManagedRuntime.rollback(LocalManagedRuntime.java:125)
    at kodo.runtime.LocalManagedRuntime.commit(LocalManagedRuntime.java:101)
    at
    kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:542)
    at
    com.peacetech.test.jdo.TestJDOHelper.commitTransaction(TestJDOHelper.java:40
    at com.peacetech.test.HorizontalTest.insert(HorizontalTest.java:57)
    at com.peacetech.test.HorizontalTest.main(HorizontalTest.java:34)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
    ..java:25)
    at java.lang.reflect.Method.invoke(Method.java:495)
    at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
    1594 TRACE [main] kodo.Runtime - An exception occurred while ending the
    transaction. This exception will be re-thrown.
    kodo.util.FatalInternalException: 3 :: 3:kodo.runtime.PNonTransState@129b0e1
    :: 3:kodo.runtime.PNonTransState@129b0e1
    at
    kodo.runtime.PersistenceManagerImpl.setStateManager(PersistenceManagerImpl.j
    ava:3314)
    at kodo.runtime.StateManagerImpl.commit(StateManagerImpl.java:737)
    at
    kodo.runtime.PersistenceManagerImpl.endTransaction(PersistenceManagerImpl.ja
    va:1103)
    at
    kodo.runtime.PersistenceManagerImpl.afterCompletion(PersistenceManagerImpl.j
    ava:842)
    at kodo.runtime.LocalManagedRuntime.commit(LocalManagedRuntime.java:86)
    at
    kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:542)
    at
    com.peacetech.test.jdo.TestJDOHelper.commitTransaction(TestJDOHelper.java:40
    at com.peacetech.test.HorizontalTest.insert(HorizontalTest.java:57)
    at com.peacetech.test.HorizontalTest.main(HorizontalTest.java:34)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
    ..java:25)
    at java.lang.reflect.Method.invoke(Method.java:495)
    at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
    Exception in thread "main" kodo.util.FatalInternalException: 3 ::
    3:kodo.runtime.PNonTransState@129b0e1 ::
    3:kodo.runtime.PNonTransState@129b0e1
    at
    kodo.runtime.PersistenceManagerImpl.setStateManager(PersistenceManagerImpl.j
    ava:3314)
    at kodo.runtime.StateManagerImpl.commit(StateManagerImpl.java:737)
    at
    kodo.runtime.PersistenceManagerImpl.endTransaction(PersistenceManagerImpl.ja
    va:1103)
    at
    kodo.runtime.PersistenceManagerImpl.afterCompletion(PersistenceManagerImpl.j
    ava:842)
    at kodo.runtime.LocalManagedRuntime.commit(LocalManagedRuntime.java:86)
    at
    kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:542)
    at
    com.peacetech.test.jdo.TestJDOHelper.commitTransaction(TestJDOHelper.java:40
    at com.peacetech.test.HorizontalTest.insert(HorizontalTest.java:57)
    at com.peacetech.test.HorizontalTest.main(HorizontalTest.java:34)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
    ..java:25)
    at java.lang.reflect.Method.invoke(Method.java:495)
    at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
    Process terminated with exit code 1

    Note that this bug is reported at:
    http://bugzilla.solarmetric.com/show_bug.cgi?id=940
    Currently, the only solution is to ensure that you are using globally
    unique IDs. One good way of doing this is to use an application identity
    hierarchy that mirrors the hierarchy of the persistent classes, as
    described in the documentation at:
    http://docs.solarmetric.com/manual.html#horizontal_caveats.
    In article <[email protected]>, Alex Roytman wrote:
    When two horizontally mapped classes stored with the same ID system comits
    work to database and the throws internal exception. As result corrupt data
    is saved which can not be read back
    1469 TRACE [main] kodo.jdbc.SQL - <t 20688146, conn 20089978> [0 ms]
    executing prepstmnt 3972145 SELECT DISTINCT JDO_CLASS FROM TEST.CONTRACT
    1500 TRACE [main] kodo.jdbc.SQL - <t 20688146, conn 24257622> [0 ms]
    executing prepstmnt 9649099 SELECT t0.JDO_CLASS, t0.JDO_LOCK FROM
    TEST.CONTRACT t0 WHERE t0.CONTRACT_ID = ? [params=(long) 1]
    1563 TRACE [main] kodo.jdbc.SQL - <t 20688146, conn 30008954> [0 ms]
    executing prepstmnt 10233621 INSERT INTO TEST.ORGANIZATION (ACRONYM,
    CONTRACT_ID, JDO_CLASS, JDO_LOCK, NAME, ORG_ID) VALUES (?, ?, ?, ?, ?, ?)
    [params=(null) null, (long) 1, (String) com.peacetech.test.jdo.Organization,
    (int) 0, (null) null, (long) 3]
    1563 TRACE [main] kodo.jdbc.SQL - <t 20688146, conn 30008954> [0 ms]
    executing prepstmnt 3823508 INSERT INTO TEST.PERSON (CONTRACT_ID, JDO_CLASS,
    JDO_LOCK, NAME, NICK_NAME, ORG_ID, PERSON_ID) VALUES (?, ?, ?, ?, ?, ?, ?)
    [params=(long) 1, (String) com.peacetech.test.jdo.Person, (int) 0, (null)
    null, (null) null, (long) 3, (long) 3]
    1563 TRACE [main] kodo.jdbc.SQL - <t 20688146, conn 30008954> [0 ms]
    executing prepstmnt 4973260 INSERT INTO TEST.POST (CONTRACT_ID, JDO_CLASS,
    JDO_LOCK, NAME, ORG_ID, POST_ID, TITLE) VALUES (?, ?, ?, ?, ?, ?, ?)
    [params=(long) 1, (String) com.peacetech.test.jdo.Post, (int) 0, (null)
    null, (long) 3, (long) 3, (null) null]
    1594 TRACE [main] kodo.Runtime - An exception occurred while ending the
    transaction. This exception will be re-thrown.
    kodo.util.FatalInternalException: 3 :: 3:kodo.runtime.PNonTransState@129b0e1
    :: 3:kodo.runtime.PNonTransState@129b0e1
    at
    kodo.runtime.PersistenceManagerImpl.setStateManager(PersistenceManagerImpl.j
    ava:3314)
    at kodo.runtime.StateManagerImpl.commit(StateManagerImpl.java:737)
    at
    kodo.runtime.PersistenceManagerImpl.endTransaction(PersistenceManagerImpl.ja
    va:1103)
    at
    kodo.runtime.PersistenceManagerImpl.afterCompletion(PersistenceManagerImpl.j
    ava:842)
    at kodo.runtime.LocalManagedRuntime.commit(LocalManagedRuntime.java:86)
    at
    kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:542)
    at
    com.peacetech.test.jdo.TestJDOHelper.commitTransaction(TestJDOHelper.java:40
    at com.peacetech.test.HorizontalTest.insert(HorizontalTest.java:57)
    at com.peacetech.test.HorizontalTest.main(HorizontalTest.java:34)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
    .java:25)
    at java.lang.reflect.Method.invoke(Method.java:495)
    at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
    1594 TRACE [main] kodo.Runtime - An exception occurred while ending the
    transaction. This exception will be re-thrown.
    kodo.util.UserException: Can only perform operation while a transaction is
    active.
    at
    kodo.runtime.PersistenceManagerImpl.assertActiveTransaction(PersistenceManag
    erImpl.java:3602)
    at
    kodo.runtime.PersistenceManagerImpl.afterCompletion(PersistenceManagerImpl.j
    ava:840)
    at kodo.runtime.LocalManagedRuntime.rollback(LocalManagedRuntime.java:125)
    at kodo.runtime.LocalManagedRuntime.commit(LocalManagedRuntime.java:101)
    at
    kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:542)
    at
    com.peacetech.test.jdo.TestJDOHelper.commitTransaction(TestJDOHelper.java:40
    at com.peacetech.test.HorizontalTest.insert(HorizontalTest.java:57)
    at com.peacetech.test.HorizontalTest.main(HorizontalTest.java:34)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
    .java:25)
    at java.lang.reflect.Method.invoke(Method.java:495)
    at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
    1594 TRACE [main] kodo.Runtime - An exception occurred while ending the
    transaction. This exception will be re-thrown.
    kodo.util.FatalInternalException: 3 :: 3:kodo.runtime.PNonTransState@129b0e1
    :: 3:kodo.runtime.PNonTransState@129b0e1
    at
    kodo.runtime.PersistenceManagerImpl.setStateManager(PersistenceManagerImpl.j
    ava:3314)
    at kodo.runtime.StateManagerImpl.commit(StateManagerImpl.java:737)
    at
    kodo.runtime.PersistenceManagerImpl.endTransaction(PersistenceManagerImpl.ja
    va:1103)
    at
    kodo.runtime.PersistenceManagerImpl.afterCompletion(PersistenceManagerImpl.j
    ava:842)
    at kodo.runtime.LocalManagedRuntime.commit(LocalManagedRuntime.java:86)
    at
    kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:542)
    at
    com.peacetech.test.jdo.TestJDOHelper.commitTransaction(TestJDOHelper.java:40
    at com.peacetech.test.HorizontalTest.insert(HorizontalTest.java:57)
    at com.peacetech.test.HorizontalTest.main(HorizontalTest.java:34)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
    .java:25)
    at java.lang.reflect.Method.invoke(Method.java:495)
    at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
    Exception in thread "main" kodo.util.FatalInternalException: 3 ::
    3:kodo.runtime.PNonTransState@129b0e1 ::
    3:kodo.runtime.PNonTransState@129b0e1
    at
    kodo.runtime.PersistenceManagerImpl.setStateManager(PersistenceManagerImpl.j
    ava:3314)
    at kodo.runtime.StateManagerImpl.commit(StateManagerImpl.java:737)
    at
    kodo.runtime.PersistenceManagerImpl.endTransaction(PersistenceManagerImpl.ja
    va:1103)
    at
    kodo.runtime.PersistenceManagerImpl.afterCompletion(PersistenceManagerImpl.j
    ava:842)
    at kodo.runtime.LocalManagedRuntime.commit(LocalManagedRuntime.java:86)
    at
    kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:542)
    at
    com.peacetech.test.jdo.TestJDOHelper.commitTransaction(TestJDOHelper.java:40
    at com.peacetech.test.HorizontalTest.insert(HorizontalTest.java:57)
    at com.peacetech.test.HorizontalTest.main(HorizontalTest.java:34)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl
    .java:25)
    at java.lang.reflect.Method.invoke(Method.java:495)
    at com.intellij.rt.execution.application.AppMain.main(Unknown Source)
    Process terminated with exit code 1
    Marc Prud'hommeaux
    SolarMetric Inc.

  • Unexpected Broker Exception: [can not close un-opened protocol] ???

    Hi,
    Has anyone seen this problem in the log file.... It occurred during a shutdown of the broker... Is it something I need to worried about?
    Broker Startup Info:
    ================================================================================
    Open Message Queue 4.3
    Sun Microsystems, Inc.
    Version:  4.3  (Build 7-g)
    Compile:  Fri Nov  7 19:11:27 PST 2008
    Copyright (c) 2007 Sun Microsystems, Inc.  All rights reserved.  Use is
    subject to license terms.
    ================================================================================
    Java Runtime: 1.6.0_07 Sun Microsystems Inc. /usr/jdk/instances/jdk1.6.0/jre
    [30/Jan/2009:11:45:08 MST] Syncing message store: false
    [30/Jan/2009:11:45:08 MST]    IMQ_HOME=/opt/openmq/mq
    [30/Jan/2009:11:45:08 MST] IMQ_VARHOME=/opt/openmq/var/mq
    [30/Jan/2009:11:45:08 MST] SunOS 5.11 amd64 vdev3th (4 cpu) root
    [30/Jan/2009:11:45:08 MST] Max file descriptors: 65536 (65536)
    [30/Jan/2009:11:45:08 MST] Java Heap Size: max=933888k, current=253184k
    [30/Jan/2009:11:45:08 MST] Arguments: -loglevel DEBUGHIGH -force -passfile /var/svc/profile/openmq.passfile
    [30/Jan/2009:11:45:08 MST] Initializing ClusterDiscoveryService
    [30/Jan/2009:11:45:08 MST] [B1004]: Starting the portmapper service using tcp [ 7676, 50, * ] with min threads 1 and max threads of 1
    [30/Jan/2009:11:45:08 MST] [B1060]: Loading persistent data...
    [30/Jan/2009:11:45:08 MST] Using built-in file-based persistent store: /opt/openmq/var/mq/instances/imqbroker/
    [30/Jan/2009:11:45:08 MST] attempting to set Message Bytes Limit to 10240K for destination mq.sys.dmq [Queue]
    [30/Jan/2009:11:45:08 MST] attempting to set Message Count Limit to 1000 for destination mq.sys.dmq [Queue]
    [30/Jan/2009:11:45:08 MST] Loading Stored destination mq.sys.dmq [Queue] connectionUID=null
    [30/Jan/2009:11:45:17 MST] [B1007]: Stopping Service jms with protocol tcp(host = *, port=0, mode=dedicated)
    [30/Jan/2009:11:45:17 MST] Exception shutting down  protocol, ignoring since we are exiting:
    java.io.IOException: Unexpected Broker Exception: [can not close un-opened protocol]
            at com.sun.messaging.jmq.jmsserver.net.tcp.TcpProtocol.close(TcpProtocol.java:353)
            at com.sun.messaging.jmq.jmsserver.service.imq.IMQIPService.stopService(IMQIPService.java:292)
            at com.sun.messaging.jmq.jmsserver.service.ServiceInfo.stop(ServiceManager.java:664)
            at com.sun.messaging.jmq.jmsserver.service.ServiceManager.stopService(ServiceManager.java:307)
            at com.sun.messaging.jmq.jmsserver.service.ServiceManager.stopAllActiveServices(ServiceManager.java:430)
            at com.sun.messaging.jmq.jmsserver.BrokerStateHandler$ShutdownRunnable.shutdown(BrokerStateHandler.java:483)
            at com.sun.messaging.jmq.jmsserver.BrokerStateHandler$ShutdownRunnable.run(BrokerStateHandler.java:383)
            at java.lang.Thread.run(Thread.java:619)
    [30/Jan/2009:11:45:17 MST] Session: Resuming Session [5282756623254863360][0]Consumer.java: resuming after detatch Consumer - Q:temporary_destination:__queue_10.80.165.6_65423_1:[consumer:5282756623254870016, type=CLIENT_ACKNOWLEDGE]
    [30/Jan/2009:11:45:17 MST] JMX Connector Server jmxrmi stopped successfully
    [30/Jan/2009:11:45:17 MST] Cleaning up transactions on connection IMQConnCLOSED,[email protected]:65423,admin:44113
    [30/Jan/2009:11:45:17 MST] Destroying temp destination Q:temporary_destination:__queue_10.80.165.6_65423_1 on connection death
    [30/Jan/2009:11:45:17 MST] [B1159]: Destination temporary_destination://queue/10.80.165.6/65423/1 [Queue] has been destroyed
    [30/Jan/2009:11:45:17 MST] WARNING [B2181]: Removing 1 messages associated with destination temporary_destination://queue/10.80.165.6/65423/1 [Queue]
    [30/Jan/2009:11:45:17 MST] Cleaning up transactions on connection IMQConnCLOSED,[email protected]:65423,admin:44113
    [30/Jan/2009:11:45:17 MST] [B1066]:   Closing: [email protected]:65423->admin:44113 because "[B0061]: Client exited without closing connections". Count: service=0 broker=0
    [30/Jan/2009:11:45:17 MST] closed connection IMQConnDESTROYING,[email protected]:65423,admin:44113:
    java.io.IOException: [B4117]: Unexpected Broker Exception: [destroyed Connection]
            at com.sun.messaging.jmq.jmsserver.service.imq.IMQIPConnection.writeData(IMQIPConnection.java:1563)
            at com.sun.messaging.jmq.jmsserver.service.imq.IMQIPConnection.process(IMQIPConnection.java:631)
            at com.sun.messaging.jmq.jmsserver.service.imq.OperationRunnable.process(OperationRunnable.java:170)
            at com.sun.messaging.jmq.jmsserver.util.pool.BasicRunnable.run(BasicRunnable.java:493)
            at java.lang.Thread.run(Thread.java:619)
    [30/Jan/2009:11:45:18 MST] [B1048]: Shutdown of broker complete.
    [30/Jan/2009:11:45:18 MST] Broker exiting with status=0 because [B1199]: Shutdown Requested by adminIf more detail are needed, please ask and I will supply whatever is necessary...
    Thanks.
    -Howard
    Edited by: Turret on Jan 30, 2009 1:10 PM

    Hi Tom,
    Thanks for the quick response!
    I am glad to hear that the log level is the reason for the output and not an issue with the broker!
    Thanks again....
    -Howard

Maybe you are looking for