Stack Flow Error

I am currently evaluating the Weblogic Integration 7.0
I have created a simple work flow with users and roles.
When I login as one of the user or when I try to change
the permissions, I get the following error.
The server was unable to complete your request.
ServerError: A error occurred the server; nested exception is:
     java.lang.StackOverflowError
Start server side stack trace:
java.rmi.ServerError: A error occurred the server; nested exception is: ...
java.rmi.ServerError: A error occurred the server; nested exception is:
     java.lang.StackOverflowError
Start server side stack trace:
java.rmi.ServerError: A error occurred the server; nested exception is:
     java.lang.StackOverflowError
java.lang.StackOverflowError
     at weblogic.security.acl.GroupImpl.isMember(GroupImpl.java:96)
I have created two roles Customer and OurSystemAdmin. JoeRano
is assigned to OurSystemAdmin and Cathy is assigned to Customer.
I have create the work flow/roles by logging as wlisystem.
I get the above error when I access work list to complete the
task when I log as Cathy
I cannot proceed further to complete the tasks.
Thanks
Raj

Hi Giora,
I saw your reply to Raj. But I found the error is not rectified. The scenario
where I got this error is slightly different. I did not do anything in configuring
the user/group. I had just installed Windows version of WLI 7.0 in my pc. And
after server is started, I logged into studio and clicked on Configurations tab
and Permissions. I get this error :
The server was unable to complete your request.
Unknown error: RemoteException: EJB Exception: ; nested exception is:
     java.lang.StackOverflowError
Start server side stack trace:
java.rmi.RemoteException: EJB Exception: ; nested exception is: ...
java.rmi.RemoteException: EJB Exception: ; nested exception is:
     java.lang.StackOverflowError
Start server side stack trace:
java.rmi.RemoteException: EJB Exception: ; nested exception is:
     java.lang.StackOverflowError
java.lang.StackOverflowError
     at weblogic.security.acl.GroupImpl.isMember(GroupImpl.java:96)
     at weblogic.security.acl.GroupImpl.isMember(GroupImpl.java:99)
     at weblogic.security.acl.GroupImpl.isMember(GroupImpl.java:99)
     at weblogic.security.acl.GroupImpl.isMember(GroupImpl.java:99)
     at weblogic.security.acl.GroupImpl.isMember(GroupImpl.java:99)
     at weblogic.security.acl.GroupImpl.isMember(GroupImpl.java:99)
     at weblogic.security.acl.GroupImpl.isMember(GroupImpl.java:99)
     at weblogic.security.acl.GroupImpl.isMember(GroupImpl.java:99)
What could be the reason? I had logged into studio as 'wlisystem/wlisystem' and
had checked that the wlisystem user is part of wlpiUsers and wlpiAdministrators
group already. Will there be any solution for this?
Pls. let me know If you have any Idea to overcome this problem?
Regards,
Jegadeesan.
"Giora Katz-Lichtenstein" <[email protected]> wrote:
>
Hi Raj.
You are in good company, I had the same happen to me many times.
I think the cause is ACL checks within WLI which by nature are highly
recursive.
Most likely a recursion without stop condition between two groups.
To get around the problem I found that all WLI users must be members
of both the
wlpiUsers and wlpiAdministrators groups.
Hope this helps,
Giora
"Raj" <[email protected]> wrote:
I am currently evaluating the Weblogic Integration 7.0
I have created a simple work flow with users and roles.
When I login as one of the user or when I try to change
the permissions, I get the following error.
The server was unable to complete your request.
ServerError: A error occurred the server; nested exception is:
     java.lang.StackOverflowError
Start server side stack trace:
java.rmi.ServerError: A error occurred the server; nested exceptionis:
java.rmi.ServerError: A error occurred the server; nested exceptionis:
     java.lang.StackOverflowError
Start server side stack trace:
java.rmi.ServerError: A error occurred the server; nested exceptionis:
     java.lang.StackOverflowError
java.lang.StackOverflowError
     at weblogic.security.acl.GroupImpl.isMember(GroupImpl.java:96)
I have created two roles Customer and OurSystemAdmin. JoeRano
is assigned to OurSystemAdmin and Cathy is assigned to Customer.
I have create the work flow/roles by logging as wlisystem.
I get the above error when I access work list to complete the
task when I log as Cathy
I cannot proceed further to complete the tasks.
Thanks
Raj

Similar Messages

  • Asking too much and getting a "stack over flow error"

    I’m having AS3 create 12 random var (play1, play2, etc) and then I ask it to average the 12 vars (numbers) until I get a specific average number. When I run this in AS2 I get the “script time error, keep running?” question. I tell it to keep running and eventually AS2 finds the right set of 12 numbers to equal a specific average number. In AS3 I get a “stack over flow error”. I know that all my AS3 swf needs is just more time to find it.
    Any ideas for a fix?

    // set AvgLenght if it is undefined
    if (!AvgLenght) {
        var AvgLenght:Number = 4.5;
        ShowAvgLenght.text = String(AvgLenght);
    // build play lengths//
    var Hteamplay1:int = Math.random() * 5;
    var Hteamplay2:int = Math.random() * 5;
    var Hteamplay3:int = Math.random() * 5;
    var Hteamplay4:int = Math.random() * 5;
    var Hteamplay5:int = Math.random() * 10;
    var Hteamplay6:int = Math.random() * 10;
    var Hteamplay7:int = Math.random() * 10;
    var Hteamplay8:int = Math.random() * 10;
    var Hteamplay9:int = Math.random() * 20;
    var Hteamplay10:int = Math.random() * 20;
    var Hteamplay11:int = Math.random() * 50;
    var Hteamplay12:int = Math.random() * 100;
    trace("12 play sets", Hteamplay1, Hteamplay2, Hteamplay3, Hteamplay4, Hteamplay5, Hteamplay6, Hteamplay7, Hteamplay8, Hteamplay9, Hteamplay10, Hteamplay11, Hteamplay12);
    var playsum:Number = (Hteamplay1 + Hteamplay2 + Hteamplay3 + Hteamplay4 + Hteamplay5 + Hteamplay6 + Hteamplay7 + Hteamplay8 + Hteamplay9 + Hteamplay10 + Hteamplay11 + Hteamplay12);
    var PlaySets:Number = playsum / 12;
    trace ("Average of all plays:", PlaySets)
    if (PlaySets >= AvgLenght && PlaySets <= AvgLenght + .1) {
        gotoAndStop("Equals target avg");
        ShowAvgLenght.text = String(AvgLenght);
    } else
    nextFrame();
    // The next frame "goes to and plays this frame
    // ShowAvgLenght.text = String(AvgLenght);
    trace("AvgLenght:", AvgLenght);
    the code work with higher "AvgLenght",a lower "AvgLenght" takes longer and I get the below error:
    output:
    12 play sets 2 2 2 1 0 3 0 7 16 16 25 17
    Average of all plays: 7.583333333333333
    AvgLenght: 2
    tried: 3489
    12 play sets 0 4 4 0 3 4 1 2 19 9 10 30
    Average of all plays: 7.166666666666667
    AvgLenght: 2
    Error: Error #1023: Stack overflow occurred.
    tried: 3490
    Error: Error #1023: Stack overflow occurred.
    Error: Error #1023: Stack overflow occurred.

  • Stack over flow error

    hi all,
    we had an outage , when I checked the logs there was a java.lang.stackoverflow error, and the weblogic server shut down, is this possisible ? for a stack overflow error to pull down a server, we had to restart the server , and now it works fine, please throw some light.
    Thanks
    Pradeep

        public class Main extends JPanel
            private PanelA a = new PanelA();
            private PanelB b = new PanelB();
            Main()
                a.setPanelB(b);
                b.setPanelA(a);
        public class PanelA extends JPanel
            private PanelB b;
            void setPanelB(PanelB b)
                this.b = b;
        public class PanelB extends JPanel
            void setPanelA(PanelA a)
                this.a = a;
            private PanelA a;

  • Stack overflow error while creating connection using Oracle10G dirver

    Hi,
    Our web application built on Servlets runs on the iPlanet web server (In solaris machine). Earlier we used JDK 1.5 update 6 with oracle 9i driver and now got migrated to JDK 1.5 update 10 with same driver. Everything went fine until we started testing the environment with oracle 10G driver. Java 1.5 update 10 with oracle 10G driver throws "Stack overflow error".
    Driver version is - 10.2.0.2.0
    This occurs only when I access the portal. When I created the single main program and try to run it in the solaris machine it works fine. But wen I try to access the portal keeping this driver under classpath, it fails. Please let me know if anyone have any clues.
    When I looked into it, I am able to find that the "stack overflow error" occurs at the point the code line DriverManager.Getconnection("url", "username", "pwd") executes.
    Thanks in advance
    below the stacktrace of the exception from webserver error log..
    06/Mar/2007:04:20:40] failure (10198):
    for host 202.54.182.136 trying to POST /wr/servlet/WorkRequest, service-j2ee reports: StandardWrapperValve[WorkRequest]: WEB2769: Allocate exception for servlet WorkRequest
    javax.servlet.ServletException: WEB2778: Servlet.init() for servlet WorkRequest threw exception
    at org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:949)
    at org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:658)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:244)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:218)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:209)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
    at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor.java:161)
    at com.iplanet.ias.web.WebContainer.service(WebContainer.java:580)
    ----- Root Cause -----
    java.lang.StackOverflowError
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
    at java.lang.ClassLoader.loadClass(
    [06/Mar/2007:04:22:20] info (10198):
    CORE5073: Web server shutdown in progress
    [06/Mar/2007:04:22:21] info (14506):
    CORE1116: Sun ONE Web Server 6.1SP5 (64-Bit) B12/02/2005 04:37
    [06/Mar/2007:04:22:21] warning (14513):
    CORE1251: On group ls1, servername pstst42.pedc.sbc.com does not match subject "" of certificate Server-Cert.
    [06/Mar/2007:04:22:21] warning (14513):
    CORE1250: In secure virtual server https-vts, urlhost does not match subject "" of certificate Server-Cert.
    [06/Mar/2007:04:22:21] info (14513):
    CORE5076: Using [Java HotSpot(TM) 64-Bit Server VM, Version 1.5.0_06] from [Sun Microsystems Inc.]
    [06/Mar/2007:04:22:21] info (14513):
    WEB0100: Loading web module in virtual server [https-vts] at [servlet]
    [06/Mar/2007:04:22:21] info (14513):
    WEB0100: Loading web module in virtual server [https-vts] at [vts/servlet]
    [06/Mar/2007:04:22:21] info (14513):
    WEB0100: Loading web module in virtual server [https-vts] at [cron/servlet]
    [06/Mar/2007:04:22:21] info (14513):
    WEB0100: Loading web module in virtual server [https-vts] at [find/servlet]
    [06/Mar/2007:04:22:21] info (14513):
    WEB0100: Loading web module in virtual server [https-vts] at [cb/servlet]
    [06/Mar/2007:04:22:21] info (14513):
    WEB0100: Loading web module in virtual server [https-vts] at [wr/servlet]
    [06/Mar/2007:04:22:21] info (14513):
    WEB0100: Loading web module in virtual server [https-vts] at [search]
    [06/Mar/2007:04:22:25] info (14513):
    HTTP3072: [LS ls1] ready to accept requests
    [06/Mar/2007:04:22:25] info (14513):
    CORE3274: successful server startup
    Message was edited by:
    Nandakumar_s
    Message was edited by:
    Nandakumar_s

    Yes, request goes through connection pool but weird
    thing is application throws stack excatly where
    DriverManager.getConnection gets executed.
    Not weird at all.
    This is what I am guessing that you did. You changed the driver and some other stuff, like configuration information.
    Then when it blew up you tracked down in your code where you see the stack overflow. That happens to be on the connection line. That is not where the overflow 'occurs' - it merely represents where you saw it.
    That line however isn't using the oracle driver. What it is using is a connection pool of some sort. That connection pool is configured somewhere. And that configuration is self-referential (or maybe refers to a another driver which refers back to the original.)
    And that causes you stack over flow.

  • Reports Failing(Stack Overflow Error)  - very urgent

    Hi,
    I try to run a report on the command line or using reports runtime engine or reports builder in win2000 and i keep on getting this error:
    The exception unknown software exception(0xc00000fd STACK OVER FLOW ERROR)occurred in the application at location 0x008c7781.
    The report runs fine in other formats(i.e pdf,html,htmlstyle sheet) and preview mode .When i selected delimited format, report fails at the time of writing in to text or excel format .
    Please advice me .
    Thanks in advance.

    Hi,
    Try with new desformat delimiteddata which is available with Report 6i patch 11/Reports 9i Patch 1
    Thanks
    Oracle Reports Team

  • Stack overflow error in query region

    HI All
    I have a query region with advanced table. I also have a detailed region inside this advance table. I.e. table inside table master detail type. I have advance search and view panel set to true . Everything is working fine I.e. simple , advance and save search, and my search result shows show hide and I can drill down to detail.
    The problem
    I have set user personalization true so I got list of all fields in save search , this list have fields from master and detail table both and I can add fields from master table to save the view, but same does not work for detail table fields , I can see them in save search but can't save them in views because I have set user personalization to false for detail table fields which is fine. But strangely when I set user personalization to true on detail table field I get stack over flow error when the page loads.
    I know it's not a common thing so any help on debugging this will be helpful

    HI All
    I have a query region with advanced table. I also have a detailed region inside this advance table. I.e. table inside table master detail type. I have advance search and view panel set to true . Everything is working fine I.e. simple , advance and save search, and my search result shows show hide and I can drill down to detail.
    The problem
    I have set user personalization true so I got list of all fields in save search , this list have fields from master and detail table both and I can add fields from master table to save the view, but same does not work for detail table fields , I can see them in save search but can't save them in views because I have set user personalization to false for detail table fields which is fine. But strangely when I set user personalization to true on detail table field I get stack over flow error when the page loads.
    I know it's not a common thing so any help on debugging this will be helpful

  • While Processing one ASN in EBIZ we are getting below work flow error.

    Hi Gurus,
          while processing WF details , i am receiving following erorr in one of node process. Can you please give any sugessions from your end why this error will come and resolution ways.
    thanks in advance
    issue details are below :
    Error Stack Wf_Engine.CompleteActivity(NVISPASN, 36562, STOP)
    NVISP_EDI_856_PREPROCESS_PKG.CompleteParentStop(36562-100101309584-1)
    Wf_Engine_Util.Function_Call(nvisp_edi_856_preprocess_pkg.CompleteParentStop,
    NVISPASN, 36562-100101309584-1, 230620, RUN)
    for ref please find below screen shot.
    and we retry same work flow by clicking retry button on the screen.
    so the work flow was completed successfully.
    and processed one more ASN for this ASN also got same work flow error.
    could you please suggest the solution to avoid this error.
    it is customized work flow but we are getting WF standard error.
    thanks
    raghava

    According to error, it appears that child flow activity trying to push the parent flow notified activity. Could be that parent flow is not ready/notified when child tries to push it.. Check for timings of 1)  begin and end times of child activity 2) begin & end times of parent activity . If this is timing issue, add defer activity for child flow to wait till parent flow comes to required status.

  • How to change the "Page Flow Error - Unsatisfied Role Restriction" page

    When you try to access a page and are denied authorization to it, Weblogic automatically redirects you to a
    "Page Flow Error - Unsatisfied Role Restriction" page, on the bottom of which tells you what roles you have to be in in order to access the resource. My question is how can I change this page to match the general look and feel of my application?

    I know you asked this almost a month ago, so you may have already figured it out... but you just need to add a handler for com.bea.wlw.netui.pageflow.UnfulfilledRolesException. Something like this:
    @jpf:catch type="com.bea.wlw.netui.pageflow.UnfulfilledRolesException" path="roles-error.jsp"
    You can put it at the class level of a specific page flow, or at the class level of WEB-INF/src/Global.app, which will apply it to all page flows.
    Hope this helps.
    Rich

  • Stack overflow error

    Hi..
    I have problem with this code.
       class test
           test tt=new test();   //1
           String name1;
        test() {}
        test(String i)
              name1=i;
             //tt=new test();    //2
       public static  void main(String arg[]){
                  test t1=new test("kj"); //3
    }  When I use line 2 (nstead of line 1 ) for initializing the ref variable iam not having any problem.
    But if i use as in line 1 iam getting stack overflow error..
    I thought tht calling a constructor recursivley results in a stack overflow error..
    But iam instantiating t1 with a one arg constructor (line 3) for which tt (line 1)is intialized,then where is the recursion happening..
    can any one pls clear..
    Thnx.
    mysha..

    please use [code][/code] tags around your code - makes it much easier to read.
    I think you have it - consider this code:public class StackOverflower {
        private StackOverflower so = new StackOverflower();
        public static void main(String[] args) {
            StackOverflower mySO = new StackOverflower();
    }Running this will overflow the stack since creation of an instance of StackOverflower requires creation of an instance of StackOverflower. This code though:public class NonStackOverflower {
        private NonStackOverflower nso = null;
        public NonStackOverflower() {
        public NonStackOverflower(String s) {
            this.nso = new NonStackOverflower();
        public static void main(String[] args) {
            NonStackOverflower myNSO = new NonStackOverflower();
    }Won't, since the creation of a new NonStackOverflower is not required to create a new NonStackOverflower instance.
    Did that make sense? I may have gotten confused and failed to illustrate your situation with my code...
    Good Luck
    Lee

  • JDK 1.4.0.00 on HPUX 11.0, Stack Unwind Error

    When we run our application server software we get the following
    problem
    The probem statement for the error is given below
    ======================================================================
    =================
    Environment:
    HP-UX 11.0
    JDK 1.4.0.00
    Problem Statement :
    When multiple applications (EAR files) are deployed we get a ' Stack
    Unwind Error'.
    The same error occurs when the server is stopped and restarted after
    an application deployment.
    A work around is to 'Apply Changes' or 'Reconfigure' before stopping.
    >>
    Error Log in server.log
    WARNING: CORE3283: stderr: Stack_Trace: error while unwinding stack
    WARNING: CORE3283: stderr: ( 0) 0xc34f8520 report_error__FbPCciN22e
    + 0x60 [/projects/sunport/users/sunport/sun/appse
    rver7/jdk/jre/lib/PA_RISC2.0/server/libjvm.sl]
    WARNING: CORE3283: stderr: ( 1) 0xc34f81bc report_fatal__FPCciT1e +
    0x6c [/projects/sunport/users/sunport/sun/appserv
    er7/jdk/jre/lib/PA_RISC2.0/server/libjvm.sl]
    WARNING: CORE3283: stderr: ( 2) 0xc36a7290
    compute_exception_return_address__13SharedRuntimeSFl + 0xa8
    [/projects/sun
    port/users/sunport/sun/appserver7/jdk/jre/lib/PA_RISC2.0/server/libjvm
    .sl]
    WARNING: CORE3283: stderr: #
    WARNING: CORE3283: stderr: # Java version:
    WARNING: CORE3283: stderr: # Java HotSpot(TM) Server VM (mixed mode)
    WARNING: CORE3283: stderr: #
    WARNING: CORE3283: stderr: # HotSpot Virtual Machine Error, Internal
    Error
    WARNING: CORE3283: stderr: # Please report this error to HP customer
    support.
    WARNING: CORE3283: stderr: #
    WARNING: CORE3283: stderr: # Java VM: Java HotSpot(TM) Server VM (1.4
    1.4.0.00-020529-21:55-PA_RISC2.0 PA2.0 mixed mode)
    WARNING: CORE3283: stderr: #
    WARNING: CORE3283: stderr: # Fatal: exception happened outside
    interpreter, nmethods and vtable stubs (1)
    WARNING: CORE3283: stderr: #
    WARNING: CORE3283: stderr: # Error ID:
    /CLO/Components/JAVA_HOTSPOT/Src/src/share/vm/runtime/sharedRuntime.cp
    p, 323
    WARNING: CORE3283: stderr: #
    Error log from core file (Stack Trace):
    #0 0xc01f6500 in kill () from /usr/lib/libc.2
    (gdb) bt
    #0 0xc01f6500 in kill () from /usr/lib/libc.2
    #1 0xc0193a6c in raise () from /usr/lib/libc.2
    #2 0xc01d417c in abort_C () from /usr/lib/libc.2
    #3 0xc01d41d4 in abort () from /usr/lib/libc.2
    #4 0xd0a8bc88 in os::abort ()
    from
    /projects/sunport/users/sunport/sun/appserver7/jdk/jre/lib/PA_RISC2.0/
    server/libjvm.sl
    #5 0xd08f8acc in report_error ()
    from
    /projects/sunport/users/sunport/sun/appserver7/jdk/jre/lib/PA_RISC2.0/
    server/libjvm.sl
    #6 0xd08f81bc in report_fatal ()
    from
    /projects/sunport/users/sunport/sun/appserver7/jdk/jre/lib/PA_RISC2.0/
    server/libjvm.sl
    #7 0xd0aa7290 in SharedRuntime::compute_exception_return_address ()
    from
    /projects/sunport/users/sunport/sun/appserver7/jdk/jre/lib/PA_RISC2.0/
    server/libjvm.sl
    #8 0x7d4a6cd0 in ?? ()
    #9 0xc0193a6c in raise () from /usr/lib/libc.2
    All the patches recommended by the O/S vendor had been installed,
    can some one help me,
    thanks in advance

    if u want to get answer. be focus and tell again.
    no one read ur subject.

  • Stacked with Error:-30625:ORA-30625: method dispatch on NULL SELF argument

    Hello guys!
    I'm totally stacked with Error:-30625 trying to execute CLN_CH_EVENT_SUBSCRIPTION_PKG.CREATE_EVENT_SUB procedure.
    i'm initializing that type object like:
    WF_EVENT_T.initialize(l_myevent_t);
    and then fill it with values...and then passing to that damned procedure. And then em getting error :(.
    Could you please somebody explain me what i'm doing wrong or what should i do to avoid this error?!?
    thanks in advance.

    To allow anyone the chance to answer your question, you will need to post the relevant code that leads up to the error code you reference. Without that information, silence is all you can hope to receive.

  • Stack Overflow Error for JNI program with Jdk1.3

    I wrote a JNI wrapper for a third party sofware (written in C) to use some exported functions provided. My program runs fine when using Sun JDK1.2.2, but I got the following error when using Jdk1.3 to run the program (It's a runtime error, only the version of runtime virtual machine matters.)
    # An EXCEPTION_STACK_OVERFLOW exception has been detected in native code outside
    the VM.
    # Program counter=0x9073337
    A stack overflow was encountered at address 0x09073337.
    I tried IBM jdk 1.2.2, it gave me a similar error complaining about the stack overflow error.
    The vendor of the third party software denies any wrong doing in their code and I don't have their source code. A test client (simulate the Java client) I wrote in C works perfectly fine and as I mentioned earlier the same java progarm runs OK with jdk 1.2.2, without any change to my system stack size. Does any body know what this is about and the solution for this?
    Thanks!
    My email: [email protected]

    I had the same exception occur in my JNI code and I have some advice on things to look for.
    Symptoms: The C++ code runs fine when called in an native executable but when it is wrapped by a JNI call inside a DLL you get the following exception:
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_STACK_OVERFLOW occurred at PC=0x100d72e5
    Function name=_chkstk
    The address will be different of course.
    In my tests I isolated the problem to an allocation of a char array like so at the top of one of my wrapped C++ methods:
    char buf[650000];
    As you see this code is requesting 650000 bytes of stack memory. When run in a native executable there was no problem but when I ran it wrapped in the JNI call it blew up.
    Conclusion: There is a much smaller stack space when using JNI OR the added overhead of my JNI wrapper exhausted the available stack space OR this is a stack space issue related to DLLs.
    Hope this helps. Anyone with insight on this please put in your 2 cents.

  • TROUBLESHOOTING A STACK OVERFLOW ERROR

    제품 : ORACLE SERVER
    작성날짜 : 1997-02-04
    ==========================================
    TROUBLESHOOTING A STACK OVERFLOW ERROR
    ==========================================
    OVERVIEW
    A stack is a temporary storage space for programs. All programs have a
    stack. MS-DOS switches stacks for hardware interrupts to prevent stack
    overflows. Some programs such as EMM386.EXE, SMARTDRV.EXE, mouse drivers
    and TSR's will hook these hardware interrupts. When a hardware interrupt
    hook requires more stack space than is available, a stack overflow error
    occurs.
    SYNTAX
    The STACKS= command in your CONFIG.SYS specifies two parameters; the
    number of stack frames and the size of those frames.
    STACKS=x,y where x = number of stack frames
    minimum value is 8
    maximum value is 64
    y = bytes of each stack frame
    minimum value is 32
    maximum value is 512
    For most PC's the default is STACKS=9,128.
    TROUBLESHOOTING
    Perform the following troubleshooting steps prior to changing the STACKS=
    command:
    o If you are using a third party video driver reconfigure the pc to use the
    generic Windows VGA drivers.
    o Be sure you have 512K conventional RAM free before you load Windows.
    You can check the free memory by using the MEM /C command. The value
    for "Largest executable program size" should be 512k (524,288 bytes).
    o Personal Oracle7 requires 8MB RAM. An additional 8MB RAM is required
    when PL/SQL is also installed. The trial product requires PL/SQL and
    therefore automatically installs it.
    o Add the /X switch to the SMARTDRV.EXE driver in AUTOEXEC.BAT. This
    switch disables the write-behind caching.
    o Exclude the video graphics area from the memory manager.
    i.e. DEVICE = C:\WINDOWS\EMM386.EXE X=A000-C7FF
    The video driver's manufacturer can provide you with the appropriate
    range to exclude..
    o Boot clean.
    CONFIG.SYS AUTOEXEC.BAT
    ========== ============
    FILES=45 PROMPT$P$G
    BUFFERS=20 PATH=C:\WINDOWS;C:\DOS;\C:\
    DEVICE=C:\<dir>HIMEM.SYS SET TEMP=C:\<valid path>
    STACKS=9,256
    SHELL=C:\<valid path>\COMMAND.COM /E:1024 /P
    !!!CAUTION: Your system may have third-party drivers that must be
    loaded! Such drivers include hard disk drivers, disk
    partitioning disk compression utilities.
    Removing such drivers can render your hard drive
    inaccessible and/or damage your data.
    DO NOT REMOVE ANY DRIVER(S) THAT YOU CANNOT IDENTIFY ITS
    PURPOSE!
    o Add STACKS=9,256 to CONFIG.SYS. If you already have this statement
    then increase the stack frames to 16.
    The Microsoft Knowledge Base (http://www.microsoft.com/support/)provided
    technical resources for this bulletin. .............................

    The same issue seemed to be solved for me after I installed
    the ColdFusion 8 beta plug-ins for Eclipse
    http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_adobecf8_beta

  • Document flow error in Quality notication

    Hello All,
             I am seeking solution for document flow error in notification. After completing notification we are not able to find graphical network in Document flow.
    We are getting error message says "no original document in document flow"
    We have followed this process flow, notification --> create ECN --> change the material with reference to the ECN--> iqs2 complete the notification.
    Kindly share if you any solution on this error.
    Regards,
    Muthusamy

    HI,
    It is an exceptional issue I feel.
    Could you check the tables whether that particular doc. is updated or not?
    check VBFA table.
    Regards
    Suresh.

  • Error Stack and Error DTP-Doubts.

    Hi Experts,
    I have a doubt on Error Stacks and Error DTP's in BI 7.0.
    For example i am doing a load that has 100 records and 10 of these records have some invalid characters and hence are showing up in the Error Stack.Now I know that i can change these records directly in the Error Stack and then use the Error DTP to process these 10 records.
    But for the remaining 90 records the Error Handling in the Update tab is set to "No Update,No reporting" and hence the original request is red.How do I update these remaining 90 records?Is the only way to set Error Handling to "Valid Records Update,Reporting Possible(Request Green)" so that these error free 90 records are loaded and available for reporting?
    Also what is the advantage of using of the Icon "Manually Post-Process Error Records" that exists in the DTP Monitor window against using Error DTP's?
    Thanks
    Aravind

    Hi...
    If it failed due to issues like Invalid char or error records, you may have the error data alone loaded to Error stack which you can edit and reload using an error DTP.
    Else in case if your entire DTP failed, then you need to retrigger the DTP.
    Handling of Data Records with Errors
    http://help.sap.com/saphelp_nw70/helpdata/EN/42/fbd598481e1a61e10000000a422035/content.htm
    Error Stack
    http://help.sap.com/saphelp_nw70/helpdata/EN/42/fa1acfcf2c1aa2e10000000a422035/content.htm
    Thanks
    Assign points if this helps

Maybe you are looking for

  • Looking for a replacement postscript fax card

    I have a legacy apple laser select 360f, with a postscript fax card that appears to have failed. The printer works almost as well as the day it was purchased, back in 1994, and has output 153,000 pages, which is just 3,000 pages over the halfway mark

  • HT1349 I have duplicates in my itunes library, how can I fix these please?

    I have a windows 7 proffession operating system, if this helps. Since I have the lastest iTunes I cannot see hwere I can fin all my duplicates. I hope someone can help me ?

  • Illustrator not responding

    I have a i7 notebook with nvidia geforce 740M, 8gb de ram. On the last days, with some files, every time I do an action, like deleting somethin, saving a file or moving, the illustrator CC stops for a few seconds and doesn't respond at all. Does anyo

  • Authorizing content on an OFFLINE computer

    My main tower has been offline for a while now and I simply do not know when i'll get the internet again through a land line. Right now i'm on my laptop via WiFI and i'm wondering if it is possible to download the latest iTunes, install on my tower,

  • Get error when connecting SQL 2012 Management studio to SQL Server 2012 database

    I got this error message when I tried to connect to SQL Server 2012 using Management studio 2012. Service 'Microsoft.SqlServer.Management.IRegistrationService' not found (Microsoft.SqlServer.Management.SDK.SqlStudio)