Jstack returns "Not enough storage is available"?

Windows 2000, JDK 1.6.0_12
I ran jstack to find out why one of my java processes is hanging. But here is what I got:
jstack 13972
13972: Not enough storage is available to process this commandWhat does the error mean? Is that a jstack specific error or it is a Windows OS specific error? I checked Task Manager. Total physical memory 2 GB, available physical memory 1.4 GB. I checked my disk. Available space 91 GB. What storage is it talking about?
I searched on the net and the forum, no direct answer to this problem. Anyone has an idea? Thanks!
--Michael
Edited by: mdang on Mar 17, 2009 2:43 PM
Edited by: mdang on Mar 17, 2009 2:44 PM

I ran into this same problem when my Tomcat server was running as a Windows service, which technically runs in a different Windows "session" which is why I think jstack can't perform the thread dump.
When I terminated the Windows service, and started Tomcat from a Command Prompt window, I was able to run jstack.

Similar Messages

  • Failed (why else would I post). Error creating an image of Drive D:, rc = 2. Return Code -2147467259 0x80004005. "Not enough storage is available to process this command".

    Seems a common set of Return Codes to post so apologies that's not specific.
    To me appears the issue is related to the "Not enough storage is available to process this command" log entry. Looked into it and some SCCM 2007 issues that were related to too many sessions to the site server, but even after rebooting my MDT server
    I get the same issue.
    The server I am attempting to capture has a 60gb VHD with around 30gb actually used. The MDT Server has over 100GB free space.
    Here is from BDD.log:
      Console > Turning on VERIFY option for network share
    ZTIBackup 10/10/2014 12:56:30 PM
    0 (0x0000)
      Console > Scanning files and directories...
    ZTIBackup 10/10/2014 12:56:30 PM
    0 (0x0000)
      Console > Error imaging drive [D:\]
    ZTIBackup 10/10/2014 12:56:30 PM
    0 (0x0000)
      Console > Not enough storage is available to process this command.
    ZTIBackup 10/10/2014 12:56:31 PM
    0 (0x0000)
    Return code from command = 2 ZTIBackup
    10/10/2014 12:56:31 PM 0 (0x0000)
    Error creating an image of drive D:, rc = 2
    ZTIBackup 10/10/2014 12:56:31 PM
    0 (0x0000)
    Event 41036 sent: Error creating an image of drive D:, rc = 2
    ZTIBackup 10/10/2014 12:56:31 PM
    0 (0x0000)
    ZTIBackup COMPLETED.  Return Value = 2
    ZTIBackup 10/10/2014 12:56:32 PM
    0 (0x0000)
    ZTI ERROR - Non-zero return code by ZTIBackup, rc = 2
    ZTIBackup 10/10/2014 12:56:32 PM
    0 (0x0000)
    Event 41002 sent: ZTI ERROR - Non-zero return code by ZTIBackup, rc = 2
    ZTIBackup 10/10/2014 12:56:32 PM
    0 (0x0000)
    Command completed, return code = -2147467259
    LiteTouch 10/10/2014 12:56:33 PM
    0 (0x0000)
    Litetouch deployment failed, Return Code = -2147467259  0x80004005
    LiteTouch 10/10/2014 12:56:33 PM
    0 (0x0000)
    Event 41014 sent: Litetouch deployment failed, Return Code = -2147467259  0x80004005
    LiteTouch 10/10/2014 12:56:33 PM
    0 (0x0000)
    I'll post below full logs.

    imagex reported:
      Console > Error imaging drive [D:\]
      Console > Not enough storage is available to process this command.
    obvious question is: do you have enough free space on
    "\\arcadmin3\deploymentshare$\Captures\SIMSERVER.wim"
    Keith Garner - Principal Consultant [owner] -
    http://DeploymentLive.com

  • XML generated with Warning: Not enough storage is available to complete ..

    Hello Experts,
    Using XML publisher to generate a report. Report is generated when data is less. I get Not enough storage is available to complete this operation warning when there is a huge data.
    The same problem is mentioned here XML Publisher report ends up with Warning: not enough storage is available

    Hi Fabien,
    If Uint8Array works fine on the other computer, it should not be the problem of the API, but instead it could be the setting or configuration for IE.
    Actually using XHR for 500MB zip file is not suggested, base on the documentation:
    How to download a file, XHR wraps an
    XMLHttpRequest call in a promise, which is not a good approach for big item download, please use
    Background Transfer instead, which is designed to receive big items.
    Simply search on the Internet, and looks like the not enough storage error is a potential issue while using XMLHttpRequest:
    http://forums.asp.net/p/1985921/5692494.aspx?PRB+XMLHttpRequest+returns+error+Not+enough+storage+is+available+to+complete+this+operation, however I'm not familiar with how to solve the XMLHttpRequest issues.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Downloading via XHR and writing large files using WinJS fails with message "Not enough storage is available to complete this operation"

    Hello,
    I have an issue that some user are experiencing but I can't reproduce it myself on my laptop. What I am trying to do it grab a file (zip file) via XHR. The file can be quite big, like 500Mb. Then, I want to write it on the user's storage.
    Here is the code I use:
    DownloadOperation.prototype.onXHRResult = function (file, result) {
    var status = result.srcElement.status;
    if (status == 200) {
    var bytes = null;
    try{
    bytes = new Uint8Array(result.srcElement.response, 0, result.srcElement.response.byteLength);
    } catch (e) {
    try {
    Utils.logError(e);
    var message = "Error while extracting the file " + this.fileName + ". Try emptying your windows bin.";
    if (e && e.message){
    message += " Error message: " + e.message;
    var popup = new Windows.UI.Popups.MessageDialog(message);
    popup.showAsync();
    } catch (e) { }
    this.onWriteFileError(e);
    return;
    Windows.Storage.FileIO.writeBytesAsync(file, bytes).then(
    this.onWriteFileComplete.bind(this, file),
    this.onWriteFileError.bind(this)
    } else if (status > 400) {
    this.error(null);
    The error happens at this line:
    bytes = new Uint8Array(result.srcElement.response, 0, result.srcElement.response.byteLength);
    With description "Not enough storage is available to complete this operation". The user has only a C drive with plenty of space available, so I believe the error message given by IE might be a little wrong. Maybe in some situations, Uint8Array
    can't handle such large file? The program fails on a "ASUSTek T100TA" but not on my laptop (standard one)
    Can somebody help me with that? Is there a better way to write a downloaded binary file to the disk not passing via a Uint8Array?
    Thanks a lot,
    Fabien

    Hi Fabien,
    If Uint8Array works fine on the other computer, it should not be the problem of the API, but instead it could be the setting or configuration for IE.
    Actually using XHR for 500MB zip file is not suggested, base on the documentation:
    How to download a file, XHR wraps an
    XMLHttpRequest call in a promise, which is not a good approach for big item download, please use
    Background Transfer instead, which is designed to receive big items.
    Simply search on the Internet, and looks like the not enough storage error is a potential issue while using XMLHttpRequest:
    http://forums.asp.net/p/1985921/5692494.aspx?PRB+XMLHttpRequest+returns+error+Not+enough+storage+is+available+to+complete+this+operation, however I'm not familiar with how to solve the XMLHttpRequest issues.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • IOException: Not enough storage is available... ?

    Hello,
    I write a tool who can convertes xml data into another kind of data.
    Data will read in by "readLine()" from "BufferedReader" about console.
    When I start my programm in command promt in windows this routine works normally very fine.
    I copy some data, paste it into and my program works. But when I paste to many or to long lines into,
    the program abortes with following error :
    C:\>java Converter
    Insert Data::
    <?xml version="1.0" encoding="UTF-8"?>
    java.io.IOException: Not enough storage is available to process this command
    java.io.IOException: Not enough storage is available to process this command
    at java.io.FileInputStream.available(Native Method)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:282)
    at java.io.FilterInputStream.read(FilterInputStream.java:93)
    at java.io.InputStreamReader.fill(InputStreamReader.java:173)
    at java.io.InputStreamReader.read(InputStreamReader.java:249)
    at java.io.BufferedReader.fill(BufferedReader.java:139)
    at java.io.BufferedReader.readLine(BufferedReader.java:299)
    at java.io.BufferedReader.readLine(BufferedReader.java:362)
    -funnily enough the first line was read
    What is the problem? Is this a problem of Bufferedreader or a problem of my DOS-promt?
    All my research in web wasn't successful. Please try to help me.
    thx

    Hi,
    I have the same problem on WinNT with JDK 1.3.1_06 and JDK 1.4.1_01 .
    To solve the problem I used the following code to read the console:
        private static boolean wasCR  = false;
        private static boolean wasEoF = false;
        private static int readLine(int maxLen, StringBuffer buffer) throws IOException {
            if (wasEoF)
                return -1;
            int len = 0;
            while (len < maxLen) {
                int ch = System.in.read();
                if (ch < 0) {
                    wasEoF = true;
                    if (len == 0)
                        return -1;
                    break;
                } else if (ch == '\r') {
                    wasCR = true;
                    break;
                } else if (ch == '\n') {
                    if (wasCR) {
                        wasCR = false;
                        continue;
                    break;
                wasCR = false;
                buffer.append((char) ch);
                len++;
            return len;
        private static String readLine(int maxLen) throws IOException {
            if (wasEoF)
                return null;
            StringBuffer buffer = new StringBuffer(maxLen);
            return (readLine(maxLen, buffer) >= 0) ? buffer.substring(0) : null;

  • XML Publisher report ends up with Warning: not enough storage is available

    Hi,
    We have customized the AR Invoice print program (Invoice Print Selected Invoices) and have made converted the Oracle 6i report to XML Publisher.
    We have around 13000 AR invoicesin the system and when i try running the report for around 300 invoices, it works fine. When i try running it for more, It gives a warning and when i try to open the xml file to see if it is fully generated. I found that the XML File is broken in between and gives an error "not enough storage is available to complete this operation.".
    We have around 2 GB space in temp but we are not sure, why this is happening.
    Appreciate your help. Many Thanks in advance.
    Regards,
    Kesava
    Mob: 1-832-332-4303

    Hi Kesava
    Can you check the $APPLCSF/$APPLOUT directory and see if you can see the file and its size? Maybe open it with vi or emacs and goto the last line and see if its complete.
    You might also check the OPP log for this request to see if there is anyting in that log?
    Regards
    Tim
    http://blogs.oracle.com/xmlpublisher

  • Report Builder 3.0 - Not enough storage is available to process this command

    I have a customer who uses Report Builder to create adhoc reports against a SQL data warehouse.  However, users intermittently encounter the exception "Not enough storage is available to process this command", which appears to relate
    to creating/drawing the report.
    It would appear that a user can define the required Report SQL, run the report and export it to Excel.  However, on occasions, when the user reviews/amends the report SQL, or specify a new value for a existing report parameter, and then try to run the
    report, they get an exception, as per the snippet below:-
    System.ComponentModel.Win32Exception: Not enough storage is available to process this command
       at System.Drawing.BufferedGraphicsContext.CreateCompatibleDIB(IntPtr hdc, IntPtr hpal, Int32 ulWidth, Int32 ulHeight, IntPtr& ppvBits)
       at System.Drawing.BufferedGraphicsContext.CreateBuffer(IntPtr src, Int32 offsetX, Int32 offsetY, Int32 width, Int32 height).
    The error can also occur after trying to re-export the report to excel. In this case the export works.
    In all cases, the user is given the option to continue or quit, but clicking continue just causes the error to be re-displayed so the user has to quit Report Builder and re-open it..
    We have monitored the user's resources (citrix session) and they are not using all their RAM or temporary folder space.

    Hi jocelyn,
    As per my understanding, you got the error on occasions when you change the parameters to run the report, export it to excel or preview the report, right?
    Did your report have large amount of rows or columns or did you have image or chart in the report? Did this issue happened on the other reports too?
    Your issue can be caused by many factors:
    If you have some image or chart in the report. Based on the callstack crashing at System.Drawing, it looks like GDI+ may be a problem. Make sure you have the latest updates installed for GDI+. The interaction of the content of the report with GDI+
    may also be something to investigate. If you have many images in the report, each image is a distinct GDI object and could potentially cause a problem.
    It also probably running out of space on your computer, so you may need to check the space on your c: drive. If you are running out space, you can try to reboot the computer or delete a few things or somehow getting a bigger hard drive to check the
    issue again.
    If the issue only happend on this report, I recommend you to recreate an same report to have a test.
    Similar thread below for your reference:
    SharePoint 2010 SSRS Integrated - Report Hangs and crashes
    System.ComponentModel.Win32Exception: Not enough storage
    is available to process this command
    Not enough storage is available to complete this operation
    If your issue still exists, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Not enough storage is available to process this command on 32bit Windows

    Hello,
    After deployment of an application in production, we have started to experience the error:
    java.lang.Error: : Not enough storage is available to process this command.
         at java.lang.Thread.start0(Native Method)
         at java.lang.Thread.start(Thread.java:574)
    with the configuration:
    - JRockit27.6/
    - WebLogic 9.2.3 with a 1,4GB heap
    - 32-bit Windows2003 with /3GB.
    The problem is caused by threads created by JCIFS and other 3rd party libraries.
    The JVM process (java.exe) grows from 1,4GB to 1,96GB and the exception starts to occur.
    Is there any other solutions than:
    1) Move to 64-bit, http://cn.forums.oracle.com/forums/thread.jspa?threadID=1062107
    2) Decrease the heap
    3) Reconfigure Windows, http://stackoverflow.com/questions/507853/system-error-code-8-not-enough-storage-is-available-to-process-this-command
    Any help to stabilize this 32-bit setup is appreciated!
    Edited by: Allan Andersen on 2010-11-03 02:39

    Had the pleasure of this one myself, due to (excessive) thread creation by JCIFS during AD log ons. This is an Out Of Memory exception. Not in the heap, but in the native memory used by the JVM process. I solved the issue by enabling the /3GB switch on Windows. Alternatively profile the memory usage of your application to minimize its usage of native memory. Look at these links for more inspiration:
    http://cn.forums.oracle.com/forums/thread.jspa?threadID=1062107
    http://blogs.oracle.com/jrockit/2008/09/how_to_get_almost_3_gb_heap_on_windows.html
    http://forums.sun.com/thread.jspa?threadID=5343135
    http://stackoverflow.com/questions/2640239/java-lang-error-not-enough-storage-is-available-to-process-this-command-when-g
    http://stackoverflow.com/questions/507853/system-error-code-8-not-enough-storage-is-available-to-process-this-command
    http://www.microsoft.com/downloads/details.aspx?familyid=5cfc9b74-97aa-4510-b4b9-b2dc98c8ed8b&displaylang=en
    http://support.microsoft.com/kb/126962/
    Regards,
    Allan
    Edited by: Allan Andersen on 2011-01-03 03:27

  • Error starting thread: Not enough storage is available to process...

    Hi all,
    We are seeing server going down frequently with below exception:
    [ERROR][thread ] Failed to start new thread
    [2010-04-08 14:36:54,046][ERROR][com.astrazeneca.portal.rss.ContentTransformer] - Error processing item:null
    ; SystemID: http://beaa.astrazeneca.net:10002/NewsBroker/resources/newsToRss.xsl; Line#: 21; Column#: 128
    javax.xml.transform.TransformerException: java.lang.Error: Error starting thread: Not enough storage is available to process this command.
         at org.apache.xalan.extensions.ExtensionHandlerJavaPackage.callFunction(ExtensionHandlerJavaPackage.java:403)
         at org.apache.xalan.extensions.ExtensionHandlerJavaPackage.callFunction(ExtensionHandlerJavaPackage.java:426)
         at org.apache.xalan.extensions.ExtensionsTable.extFunction(ExtensionsTable.java:220)
         at org.apache.xalan.transformer.TransformerImpl.extFunction(TransformerImpl.java:437)
         at org.apache.xpath.functions.FuncExtFunction.execute(FuncExtFunction.java:199)
         at org.apache.xpath.XPath.execute(XPath.java:268)
         at org.apache.xalan.templates.ElemVariable.getValue(ElemVariable.java:279)
         at org.apache.xalan.templates.ElemVariable.execute(ElemVariable.java:247)
    I have a weblogic support SR open and they suggested to add -XXtlaSize and -XXlargeObjectLimit to our JVM parameter. With these parameters, we are getting below error in Windows frequently:
    Reporting queued error: faulting application java.exe, version 1.5.0.11, faulting module jvm.dll, version 27.3.1.1, fault address 0x0014b442.
    I have seen few threads on Sun forum, but answer was not posted there. Details of our environment are as below:-
    JVM : JROCKIT 1.5.0.11
    OS : Windows 2003
    Application Server : Weblogic 10
    Any inputs or pointers will be highly appreciated as this is a bit urgent for me...
    Thanks & Regards,
    Sanjeev

    Hi Henrik,
    I am running Weblogic with below parameters now:
    -Xnohup -Xms:1536m -Xmx:1536m -XXtlaSize:min=32k,preferred=768k -XXlargeObjectLimit:32K
    Weblogic crashed again with below dump:
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 0 days, 07:17:18 on Fri May 07 15:26:16 2010
    Additional information is available in:
    E:\PortalLIVDomaina\jrockit.5772.dump
    E:\PortalLIVDomaina\jrockit.5772.mdmp
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Error Message: Illegal memory access. [54]
    Exception Rec: EXCEPTION_ACCESS_VIOLATION (c0000005) at 0x005148AF - memory at 0x00000000 could not be written.
    Minidump : Wrote mdmp. Size is 1406MB
    SafeDllMode : -1
    Version : BEA JRockit(R) R27.3.1-1_CR344434-89345-1.5.0_11-20070925-1628-windows-ia32
    GC Strategy : Mode: throughput. Currently using strategy: genparpar
    GC Status : OC currently running, in phase: sweeping. This is OC#3000.
    : YC is not running. Last finished YC was YC#9937.
    OC History : Strategy genparpar was used for OC#1.
    : Strategy singleparpar was used for OC#2.
    : Strategy genparpar was used for OC#3 to OC#3000.
    YC History : Ran 11 YCs before OC#2996.
    : Ran 18 YCs before OC#2997.
    : Ran 11 YCs before OC#2998.
    : Ran 8 YCs before OC#2999.
    : Ran 1 YCs before OC#3000.
    Heap : 0x00900000 - 0x60900000
    Compaction : 0x06900000 - 0x0C900000
    Could you please provide some input on this?
    Thanks,
    Sanjeev

  • Not enough storage is available to complete this operation

    I have a new computer.  Windows 7,  i7 processor, SSD with 256 GB, 16 GB RAM, 4K graphics card, But when I try to do Adaptive Wide Angle correction to my photo, I get the error message : Not enough storage is available to complete this operation.  I have tried to increased the cache size, I tried to place the cache in different hard drives with 1.5 TB space, I updated my Windows, updated my graphics card driver, updated my PS CS6, still get the same error message.  What can I do to make Adaptive Wide Angle work?  I have no other software installed in my computer except Windows and Photoshop.

    Probably because you don't have enough storage available to complete the operation.
    256 GB is a terribly small drive  - especially when you are utilising memory/cache intensive operations.

  • RDP session to 2012 R2 server comes up with "Not enough storage is available to complete this operation"

    I've just set up two new servers in identical fashion which will be hyper-v hosts.
    They both have  Windows Server 2012 R2 Datacentre installed. 128GB of RAM and c:247GB free, d: 1.9TB free. Resources are not an issue.
    Only role installed is Hyper-V on both.
    I can RDP to one server without a problem but the other is complaining with the message above. The only option is to click OK and this exits the session. I can log in fine through the Drac card of the server.
    I get terminalservices events 261, 1149, 40.
    At this time I also get Desktop Window Manager event 9009 - The Desktop Window Manager exited with code (0xd00002fe).
    The other strange issue which may or may not be relevant is when I enter task manager on the affected server, the User details tab has lots of entries (approx. 60) with no names and 0% CPU/Memory. This looks odd to me.
    Any help gratefully received as I don't want to rebuild from scratch if it is a basic tweak setting somewhere.

    Hi Sir,
    What I understood from this error was thata RESTRICTED amount of MEMORY allocated for particular type of OS RESOURCE,
    has got EXHAUSTED.<o:p></o:p>
    <o:p> </o:p>
    In both the cases above,
    the resource type that was getting exhausted or causing other resources to be exhausted was a HANDLE. A Handle is an OS object used to get a reference of another object (like File, registry,
    port etc.). It’s using these handles that a process will work with open files, read registry keys or work with a network port.<o:p></o:p>
    <o:p> </o:p>
    In both the above scenarios,
    we saw a process (Non-Microsoft) consuming large amount of Handles. You can view the handles owned by different processes through
    "Task Manager" in Windows. In the "Task Manager", under the Process tab you can add an additional column to display Handles information.
    http://blogs.technet.com/b/abizerh/archive/2009/07/12/troubleshooting-the-error-not-enough-storage-is-available-to-complete-this-operation.aspx
    >>Any help gratefully received as I don't want to rebuild from scratch if it is a basic tweak setting somewhere.
    Instead of rebuilding , you may try to perform in-place upgrade .
    Best Regards,
    Elton Ji
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] .

  • MapViewOfFile: Not enough storage is available to process this command.

    Hi,
    Was trying to insert the documents and querying it at the same time. This error didnt happen before.
    MapViewOfFile: Not enough storage is available to process this command.
    PANIC: Not enough space
    com.sleepycat.db.RunRecoveryException: DB_RUNRECOVERY: Fatal error, run database
    recovery: MapViewOfFile: Not enough storage is available to process this comman
    d.
    PANIC: Not enough space: DB_RUNRECOVERY: Fatal error, run database recoveryHere is how my environment is configured:
    public void setXmlEnvrionment()
              try
                   //File envHome = new File(properties.getProperty("DATABASE_LOCATION"));
                   File envHome = new File("");
                   EnvironmentConfig envConf = new EnvironmentConfig();
                   envConf.setAllowCreate(true); // If the environment does not exits,
                   // create it.
                   envConf.setInitializeCache(true); // Turn on the shared memory
                   // region.
                   envConf.setCacheSize(100* 1024 * 1024); // 100MB cache
                   envConf.setMutexIncrement(22);
                   envConf.setMaxMutexes(200000);
                   envConf.setMaxLocks(200000);
                   envConf.setMaxLockers(200000);
                   envConf.setMaxLockObjects(200000);
                   envConf.setInitializeLocking(true); // Turn on the locking
                   // subsystem.
                   envConf.setInitializeLogging(true); // Turn on the logging
                   // subsystem.
                   envConf.setTransactional(true); // Turn on the transactional
                   // subsystem.
                   // envConf.setTxnNoSync(true); // Cause BDB XML to not synchronously
                   // force any log data to disk upon transaction commit
                   envConf.setLogInMemory(true); // specify in-memory logging
                   envConf.setLogBufferSize(60 * 1024 * 1024); // set logging size.
                   envConf.setLockDetectMode(LockDetectMode.DEFAULT); // Reject a
                   // random lock
                   // request
                   myEnv = new Environment(envHome, envConf);
                   System.out.println("Environment created...");
              } catch (Exception ex)
                   ex.printStackTrace();
         }Any idea how to solve this problem?
    Many thanks! :)

    Hi rucong,
    What do you mean "write data in parallel with fine transaction protection"?
    It seems fine for now... when I run on a Tomcat Server... thanks
    There is another issue.. I tried to include snapshot isolation and tried running on the server
    java -Xms32m -Xmx512m  -cp Aggregator.jar:db.jar:dbxml.jar ag.SaveMessageinDBI increased the memory of the JVM to 512M. Tried inserting 200 documents and this error occurs
    com.sleepycat.dbxml.XmlException: Error: Unable to generated a document ID, errcode = INVALID_VALUE
            at com.sleepycat.dbxml.dbxml_javaJNI.XmlContainer_putDocument__SWIG_4(Native Method)
            at com.sleepycat.dbxml.XmlContainer.putDocument(XmlContainer.java:893)
            at com.sleepycat.dbxml.XmlContainer.putDocument(XmlContainer.java:241)
            at com.sleepycat.dbxml.XmlContainer.putDocument(XmlContainer.java:229)
            at ag.SaveMessageinDB.addXMLDocument(SaveMessageinDB.java:231)
            at ag.SaveMessageinDB.saveMessage(SaveMessageinDB.java:84)
            at ag.SaveMessageinDB.main(SaveMessageinDB.java:324)Would require your help. Thanks!
    :)

  • Thread creation error: Not enough storage is available to process this command

    Two user in my company have this problem, I have already used the solution on the community but would come back after 2 to 3 weeks. They all have the message "Thread creation error: Not enough storage is available to process this command". I tried increase the virtual memory to 4Gb, update one client to the latest, reset IRPStackSize, delete temp folder.  one client is 7.5.XX with windows 7 and another is 6.20.0.104 with Windows XP,My machine is also 6.20 with windows 7 but I dont have this problem.   

    Version previous to 7.6 worked fine. After update I have got this message and mostly of Skype GUI turns black or vanishes. No possibility of making more than one call before crash, It is amazing that a thread started about two weeks ago has no technical answer, at least. What do I do with my credits and my appointments? Throw them away?

  • Not enough storage is available to process this command

    When I try to execute the start_management_server option with jrcmd I get the following error "Not enough storage is available to process this command". How much memory is required to execute this option? I am also interested in determing what would be required to enable SSL and authentication. The company I work for is under tight audit requirements and will want me to utilize SSL and authentication.
    Thanks in advance for any and all help provided.
    Michael

    Just thought I would provide a quick update...
    We are still trying to get this to work completely on our eFix systems before making the changes to production. We had to change ssl=true to ssl=false in order to connect. This may have to do with how the tech on the other side made the change. In other words, he may have been able to do something else but for now didn't care about the SSL since we are connecting over a COAM.
    I can start up the Console now and see current data but we are being blocked from recording. I had them download the license file as defined in one of the sticky posts regarding license files for previous versions of JRockit. I no longer get that I don't have a license but that the JRA section of the license.bea file does not exist. I have copied below the exact error that shows up in the console after trying to start a Recording.
    A license for JRA could not be found on the JRockit at Create JRA-recording on SERVERNAME:PORT
    Your license does not allow JRA to be started: Error: Can not find component JRA for JRockit * in the license file.
    Please che
    The error is cut off in the window. I am not sure if it would help to have the rest of that error or not. I will be searching for a solution outside of the forums but if anyone has a quick resolution that would be greatly appreciated.
    -Michael

  • Infopath has encountered an error. The operation failed. Not enough storage is available to process this command

    hello,
    Using INFO PATH 2013 on Windows 7 64 bit, user is getting the error "Infopath has encountered an error. The operation failed. Not enough storage is available to process this command"
    We added the registy IRPStackSize and set it to max 50. This works on my test machine but not this user.
    So when using infopath designer 2013, then blank form and data connection, we select Receieve Data-->Sharepoint Library or list and then enter the url to connect to and the user gets the error "Infopath has encountered an error. The operation failed.
    Not enough storage is available to process this command"
    We use office 365 of course with Sharepoint.
    I am able to run infopath 2013 as an admin and I am able to connect fine, but not with his standard profile.
    Any ideas, please let me know.
    Best regards,<br/> <br/> <strong>Joe C<br/> </strong>Partner Online Technical Community<br/> -----------------------------------------------------------------------------------------<br/> We hope you get value from
    our new forums platform! Tell us what you think:<br/> <a href="http://social.microsoft.com/Forums/en-US/partnerfdbk/threads"><span style="color:#0033cc">http://social.microsoft.com/Forums/en-US/partnerfdbk/threads<br/>
    </span></a>------------------------------------------------------------------------------------------<br/> This posting is provided &quot;AS IS&quot; with no warranties, and confers no rights <hr>

    side note, i am able to connect on his pc with a standard user account so something with his windows profile that's corrupted, anyone know?
    Best regards,<br/> <br/> <strong>Joe C<br/> </strong>Partner Online Technical Community<br/> -----------------------------------------------------------------------------------------<br/> We hope you get value
    from our new forums platform! Tell us what you think:<br/> <a href="http://social.microsoft.com/Forums/en-US/partnerfdbk/threads"><span style="color:#0033cc">http://social.microsoft.com/Forums/en-US/partnerfdbk/threads<br/>
    </span></a>------------------------------------------------------------------------------------------<br/> This posting is provided &quot;AS IS&quot; with no warranties, and confers no rights <hr>

Maybe you are looking for