CiscoView 6.1.9 error on stacked WS-C2960S-48FPD-L

Hi
CiscoView 6.1.9 is not identifing correctly the Te (10 GB) interfaces on the slave modules of a stacked WS-C2960S-48FPD-L.
On the master switch of the stack it correctly identifies the Te interface. On the slave switches of the stack CiscoView assumes
that the Ten Gb slot is not populated with a 10 Gb SFP, and shows the interface as 1 Gb interface, following the numbering
sequence of the previous Gb ports.
On the CiscoView fronte panel image the green status is not shown and neither the real time statistics giving "no such instance errors" for some statistics.
See the images attached.
CiscoView is with the newest packages applied:
Version & Patch Level:
6.1.9
Installation Date:
28 Jun 2011, 14:34:40 BRT
Active Device Package:
Catalyst 2960 Device Package(9.1)
CiscoView Mini-RMON Manager:
miniRMON Device Package(3.2)
Any help is appreciated
Message was edited by: ROBSON GOMES

I met similiar problem on C4500.
Try to remove etherchannel configuration by taking ports to it's defaults and also interface Port-channel68.
Then create port channel interface by first issuing :
interface GigabitEthernet1/3/10
 description SAC88
 channel-group 68 mode active
interface GigabitEthernet2/3/10
  description ECM DELEJ02SAC88-D20
  channel-group 68 mode active
Then configure all stuff around switchport under interface Port-channel68.

Similar Messages

  • Msg 8631 Internal error: Server stack limit has been reached on SQL Server 2012 from T-SQL script that runs on SQL Server 2008 R2

    I have an Script mostly that is generated by SSMS which works with-out issue on SQL Server 2008, but when I attempt to run it on a new fresh install of SQL Server 2012 I get an Msg 8631. Internal error: Server stack limit has been reached. Please look for
    potentially deep nesting in your query, and try to simplify it.
    The script itself doesn't seem to be all that deep or nested.  The script is large 2600 lines and when I remove the bulk of the 2600 lines, it does run on SQL Server 2012.  I'm just really baffled why something that SQL Server generated with very
    few additions/changes AND that WORKS without issue in SQL Server 2008 R2 would suddenly be invalid in SQL Server 2012
    I need to know why my script which is working great on our current SQL Server 2008 R2 servers suddenly fails and won't run on an new SQL Server 2012 server.  This script is used to create 'bulk' Replications on a large number of DBs saving a tremendous
    amount of our time doing it the manual way.
    Below is an 'condensed' version of the script which fails.  I have removed around 2550 lines of specific sp_addarticle statements which are mostly just copy and pasted from what SQL Management Studio 'scripted' for me went I when through the Replication
    Wizard and told it to save to script.
    declare @dbname varchar(MAX), @SQL nvarchar(MAX)
    declare c_dblist cursor for
    select name from sys.databases WHERE name like 'dbone[_]%' order by name;
    open c_dblist
    fetch next from c_dblist into @dbname
    while @@fetch_status = 0
    begin
    print @dbname
    SET @SQL = 'DECLARE @dbname NVARCHAR(MAX); SET @dbname = ''' + @dbname + ''';
    use ['+@dbname+']
    exec sp_replicationdboption @dbname = N'''+@dbname+''', @optname = N''publish'', @value = N''true''
    use ['+@dbname+']
    exec ['+@dbname+'].sys.sp_addlogreader_agent @job_login = N''DOMAIN\DBServiceAccount'', @job_password = N''secret'', @publisher_security_mode = 1, @job_name = null
    -- Adding the transactional publication
    use ['+@dbname+']
    exec sp_addpublication @publication = N'''+@dbname+' Replication'', @description = N''Transactional publication of database
    '''''+@dbname+''''' from Publisher ''''MSSQLSRV\INSTANCE''''.'', @sync_method = N''concurrent'', @retention = 0, @allow_push = N''true'', @allow_pull = N''true'', @allow_anonymous = N''false'', @enabled_for_internet
    = N''false'', @snapshot_in_defaultfolder = N''true'', @compress_snapshot = N''false'', @ftp_port = 21, @allow_subscription_copy = N''false'', @add_to_active_directory = N''false'', @repl_freq = N''continuous'', @status = N''active'', @independent_agent = N''true'',
    @immediate_sync = N''true'', @allow_sync_tran = N''false'', @allow_queued_tran = N''false'', @allow_dts = N''false'', @replicate_ddl = 1, @allow_initialize_from_backup = N''true'', @enabled_for_p2p = N''false'', @enabled_for_het_sub = N''false''
    exec sp_addpublication_snapshot @publication = N'''+@dbname+' Replication'', @frequency_type = 1, @frequency_interval = 1, @frequency_relative_interval = 1, @frequency_recurrence_factor = 0, @frequency_subday = 8,
    @frequency_subday_interval = 1, @active_start_time_of_day = 0, @active_end_time_of_day = 235959, @active_start_date = 0, @active_end_date = 0, @job_login = N''DOMAIN\DBServiceAccount'', @job_password = N''secret'', @publisher_security_mode = 1
    -- There are around 2400 lines roughly the same as this only difference is the tablename repeated below this one
    use ['+@dbname+']
    exec sp_addarticle @publication = N'''+@dbname+' Replication'', @article = N''TABLE_ONE'', @source_owner = N''dbo'', @source_object = N''TABLE_ONE'', @type = N''logbased'', @description = null, @creation_script =
    null, @pre_creation_cmd = N''drop'', @schema_option = 0x000000000803509F, @identityrangemanagementoption = N''manual'', @destination_table = N''TABLE_ONE'', @destination_owner = N''dbo'', @vertical_partition = N''false'', @ins_cmd = N''CALL sp_MSins_dboTABLE_ONE'',
    @del_cmd = N''CALL sp_MSdel_dboTABLE_ONE'', @upd_cmd = N''SCALL sp_MSupd_dboTABLE_ONE''
    EXEC sp_executesql @SQL
    SET @dbname = REPLACE(@dbname, 'dbone_', 'dbtwo_');
    print @dbname
    SET @SQL = 'DECLARE @dbname NVARCHAR(MAX); SET @dbname = ''' + @dbname + ''';
    use ['+@dbname+']
    exec sp_replicationdboption @dbname = N'''+@dbname+''', @optname = N''publish'', @value = N''true''
    use ['+@dbname+']
    exec ['+@dbname+'].sys.sp_addlogreader_agent @job_login = N''DOMAIN\DBServiceAccount'', @job_password = N''secret'', @publisher_security_mode = 1, @job_name = null
    -- Adding the transactional publication
    use ['+@dbname+']
    exec sp_addpublication @publication = N'''+@dbname+' Replication'', @description = N''Transactional publication of database
    '''''+@dbname+''''' from Publisher ''''MSSQLSRV\INSTANCE''''.'', @sync_method = N''concurrent'', @retention = 0, @allow_push = N''true'', @allow_pull = N''true'', @allow_anonymous = N''false'', @enabled_for_internet
    = N''false'', @snapshot_in_defaultfolder = N''true'', @compress_snapshot = N''false'', @ftp_port = 21, @allow_subscription_copy = N''false'', @add_to_active_directory = N''false'', @repl_freq = N''continuous'', @status = N''active'', @independent_agent = N''true'',
    @immediate_sync = N''true'', @allow_sync_tran = N''false'', @allow_queued_tran = N''false'', @allow_dts = N''false'', @replicate_ddl = 1, @allow_initialize_from_backup = N''true'', @enabled_for_p2p = N''false'', @enabled_for_het_sub = N''false''
    exec sp_addpublication_snapshot @publication = N'''+@dbname+' Replication'', @frequency_type = 1, @frequency_interval = 1, @frequency_relative_interval = 1, @frequency_recurrence_factor = 0, @frequency_subday = 8,
    @frequency_subday_interval = 1, @active_start_time_of_day = 0, @active_end_time_of_day = 235959, @active_start_date = 0, @active_end_date = 0, @job_login = N''DOMAIN\DBServiceAccount'', @job_password = N''secret'', @publisher_security_mode = 1
    -- There are around 140 lines roughly the same as this only difference is the tablename repeated below this one
    use ['+@dbname+']
    exec sp_addarticle @publication = N'''+@dbname+' Replication'', @article = N''DB_TWO_TABLE_ONE'', @source_owner = N''dbo'', @source_object = N''DB_TWO_TABLE_ONE'', @type = N''logbased'', @description = null, @creation_script
    = null, @pre_creation_cmd = N''drop'', @schema_option = 0x000000000803509D, @identityrangemanagementoption = N''manual'', @destination_table = N''DB_TWO_TABLE_ONE'', @destination_owner = N''dbo'', @vertical_partition = N''false''
    EXEC sp_executesql @SQL
    fetch next from c_dblist into @dbname
    end
    close c_dblist
    deallocate c_dblist
    George P Botuwell, Programmer

    Hi George,
    Thank you for your question. 
    I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated. 
    Thank you for your understanding and support.
    If you have any feedback on our support, please click
    here.
    Allen Li
    TechNet Community Support

  • CS3 / Javascript - Script Error 27: Stack overrun

    Hi
    I have a script who is running all the time (like an Idle). This script calls a method in my own plugin, this method execute an action in my plugin. During this action, I call another Javascript to checkout a document from a content management system.
    This means:
    - A running script (Idle) calls a method in my plugin written in C++
    - The plugin calls another Javascript to checkout the document while the first plugin (Idle) is still runnung.
    This generates an error 27, stack overrun. I have tried several possibilities (with and without a main function, with and without #targetengine and so on), but always the same error.
    - What can I do?
    - Is it possible to run another script during the execution of one?
    - How can I do that?
    - Can I run two Javascript in her own environments? I mean own stack, own main and so on...
    Thanks for any hint.
    Hans

    John is right, this is more of a plugin/SDK question, I would have expected it in that forum first hand.
    Hans has cross posted this question into a swiss/german scripting forum with more details, and I've given a few suggestions. It broils down to the fact that the plugin access to scripting in CS3 had to address the JavaScript scripting subsystem rather than talk to a specific engine. And my strong guess is that the RunFile function triggered by the idle task of the first plugin is not reentrant so the second plugin can not invoke a method the same way.
    My suggestions, in brief: upgrade to CS4 where engines are independently addressible. Alternatively, one can try the other methods to invoke the script - RunScript rather than RunFile, or even use the callback mechanism that underlies the event listener registration. Easily accessible from the same interface class.
    Of course for the reentrancy problem I would not expect a Stack overrun error, so maybe it is not reentrancy at all but just the obvious - the second plugin calling itself in recursion. A breakpoint should easily tell.
    Dirk

  • WLST errors ( No stack trace available.)

    for s in svrs:
    name = s.getName()
    try:
    cd('/ServerRuntimes/' + name)
    except:
    pass
    Above loop works fine for all the running servers but if any of server is not running then while executing cd commnad within loop it thows error "No stack trace available."
    How can avoid (hide) these errors --> "No stack trace available"
    Current state of 'hp1_d3_a' : RUNNING
    No stack trace available.
    Current state of 'hp1_d7_a' : RUNNING
    Current state of 'hp1_d5_a' : RUNNING
    No stack trace available.
    Current state of 'hp1_d4_a' : RUNNING
    Current state of 'hp1_d9_a' : RUNNING
    No stack trace available.
    Current state of 'hp1_d6_a' : RUNNING
    Current state of 'hp1_d2_b' : RUNNING
    ++++++++++++++++++++++++++++++++++++
    Output should be
    Current state of 'hp1_d3_a' : RUNNING
    Current state of 'hp1_d7_a' : RUNNING
    Current state of 'hp1_d5_a' : RUNNING
    Current state of 'hp1_d4_a' : RUNNING
    Current state of 'hp1_d9_a' : RUNNING
    Current state of 'hp1_d6_a' : RUNNING
    Current state of 'hp1_d2_b' : RUNNING

    Can any body show me how and explain why ---------
    "oc4j of course is intended only for testing purpose ;)
    besides this: try using the \"-mx \" switch when starting the oc4j to increase the memory "
    Why is the oc4j of course intended only for testing purpose ?
    And how does the the "-mx " switch used?I can not find the switch.

  • Having trouble with Error #1023:stack overflow

    I've run into this error ican't seem to get around. I've redone this code many times and it still happens. Part of the problem is its randomness, sometimes it happens right at launch and sometimes after 5-10 mins. I've tried to look up how to fix it but haven't seen how my problem relates to those that have something similar. As far as i can tell i dont have an recurrsion of code. Here's a copy of the error that pops up.
    Error: Error #1023: Stack overflow occurred.
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2Listeners()
        at MathRaceradvanced3_fla::MainTimeline/bigSpaceShip2StartPoint()
    Here's the code, basically what i'm doing is placing the object on screen at a random Y position.I do have a check when it loads it isn't right on top of another object and if it does it redoes the Y Position. Then i give it a random scale to the original object and speed. Then when the objects reachs the other side of the screen i move it back to the start and randomize the size,speed, and Yposition again. The error seems to happen when it moves back to the other side. And when it happens it doesnt stop the program, the object just never reappears. Any help would be greatly appreciated.
    var bigSpaceShip2:MovieClip=new bigSpaceShip();
    var bigSpaceShip2Speed:Number;
    var bigSpaceShip2Scale:Number;
    var bigSpaceShip2YPosition:Number;
    var bigSpaceShip2Reset:Boolean;
    bigSpaceShip2SetUp();
    function bigSpaceShip2SetUp():void{
        bigSpaceShip2Speed= ((Math.random()*.95)+.75);
        bigSpaceShip2Scale= ((Math.random()*.30)+.35);
        addChildAt(bigSpaceShip2, 1);
        bigSpaceShip2StartPoint();
    function bigSpaceShip2StartPoint():void{
        bigSpaceShip2.scaleX=bigSpaceShip2Scale;
        bigSpaceShip2.scaleY=bigSpaceShip2Scale;
        bigSpaceShip2.x=0;
        bigSpaceShip2.y=(Math.ceil(Math.random()*650))+50;
        bigSpaceShip2YPosition=bigSpaceShip2.y;
        if((bigSpaceShip2YPosition-bigSpaceShip1.y)>(-200) && (bigSpaceShip2YPosition-bigSpaceShip1.y)<2000){
            bigSpaceShip2Reset=true;
        }else{
            bigSpaceShip2Reset=false;
        bigSpaceShip2Listeners();   
    function bigSpaceShip2Listeners():void{
        if(bigSpaceShip2Reset==false){
        bigSpaceShip2.addEventListener(Event.ENTER_FRAME, bigSpaceShip2SpeedSet);
        bigSpaceShip2.addEventListener(Event.ENTER_FRAME, bigSpaceShip2CheckReset);
        }else{
            bigSpaceShip2StartPoint();
    function bigSpaceShip2SpeedSet(e:Event):void{
        bigSpaceShip2.x+=bigSpaceShip2Speed;
    function bigSpaceShip2CheckReset(e:Event):void{
        if (bigSpaceShip2.x >1400){
            bigSpaceShip2.removeEventListener(Event.ENTER_FRAME, bigSpaceShip2SpeedSet);
            bigSpaceShip2.removeEventListener(Event.ENTER_FRAME, bigSpaceShip2CheckReset);
            bigSpaceShip2StartPoint();

    Hi enaz13,
    The default recurring of a function is only 256 times but u calling same function endlessly that is the reasong stack over flow error is coming

  • I can't run labview, an error appears : stack overflow.

    My system is Windows NT. I use Labview to acquire images. I used Measurement and Automation to calibrate the acquisition card.After that I would to open labview, but an error appeared "stack overflow". I tried to reinstall Labview but the error is always present.

    Did you try completely uninstalling labVIEW before attempting to reinstall? Probably would not hurt to clear the registry entries either. It sounds like something became corrupted.

  • Error: Error #1023: Stack overflow occurred.

    This is the code of my Flash component for Flex.
    It loads 2 images, one with a "Loader" and the other with a
    "UILoader" and a progressbar.
    When the completeHandler function is executed, the error
    message " Error #1023: Stack overflow occurred." appears. (The
    whole message is a the end of the Post)
    The code line which does this error is:
    ImageContainer2.addChild(myUILoader2);
    When I take it away, no error anymore, but no image too!
    package {
    import flash.display.*
    import flash.text.*
    import mx.flash.UIMovieClip;
    import flash.net.URLRequest;
    import flash.events.*;
    import fl.containers.UILoader;
    import fl.controls.Label;
    import fl.controls.ProgressBar;
    //import fl.controls.progressBarClasses.*;
    public class mcbigImage extends UIMovieClip
    // Define public setter method.
    [Bindable (event="bgImageChanged")]
    [Event('bgImageChanged')]
    [ChangeEvent("change")]
    public function set bgImage(img:String):void
    var ldr:Loader = new Loader();
    var url:String = img;
    var urlReq:URLRequest = new URLRequest(url);
    ldr.load(urlReq);
    this.ImageContainerMirror.addChild(ldr);
    dispatchEvent(new Event("bgImageChanged"));
    //this.testTXT.text = String(ldr.content);
    [Bindable (event="bigImageChanged")]
    [Event('bigImageChanged')]
    [ChangeEvent("change")]
    public function set bigImage(img:String):void
    ImageLoader.visible = true;
    var myUILoader2:UILoader = new UILoader();
    myUILoader2.autoLoad = true;
    myUILoader2.source = img;
    myUILoader2.scaleContent = false;
    myUILoader2.load();
    ImageContainer2.addChild(myUILoader2);
    var myProgressBar:ProgressBar = new ProgressBar();
    myProgressBar.source = myUILoader2;
    myProgressBar.move(218, 147);
    myProgressBar.addEventListener(Event.COMPLETE,
    completeHandler);
    ImageLoader.addChild(myProgressBar)
    function completeHandler(event:Event):void
    myProgressBar.removeEventListener(Event.COMPLETE,
    completeHandler);
    ImageLoader.visible = false;
    dispatchEvent(new Event("bigImageChanged"));
    This is the whole error message:
    Error: Error #1023: Stack overflow occurred.
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at
    mx.managers::SystemManager/mx.managers:SystemManager::Stage_resizeHandler()[C:\dev\flex_2 01_gmc\sdk\frameworks\mx\managers\SystemManager.as:2429]
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()

    But I can't see where in my code a listener calls the setter
    where its event is dispatched.
    Am I blind? ;-)
    Do you see it?

  • Error #1023: Stack overflow occurred. null

    I am entering data inside a datagrid and I have an update button which sends data to a web service.  But when I click the update button, I get this error: Error #1023: Stack overflow occurred. null.  I filled in the info using SOAPUI and sent it to the web service and it works fine.  So this error is inside flex.  Would you help me understand what I am doing wrong.
    Here is my code:
                protected function updateBtn_clickHandler(event:MouseEvent):void
                    if (currentState == "EmployeeNonAvails")
                        setNonAvailResult.token = personnelBean.setNonAvail(nonAvailDto);
                    else if (currentState == "EmployeeDetail")
                        userDto.firstName = firstNameTextInput.text;
                        userDto.lastName = lastNameTextInput.text;
                        userDto.loginName = loginNameTextInput.text;
                        userDto.password = passwordTextInput.text;
                        setUserResult.token = personnelBean.setUser(userDto);
        <fx:Declarations>
            <personnelbean:PersonnelBean id="personnelBean" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
            <valueObjects:UserDto id="userDto"/>
            <valueObjects:NonAvailDto id="nonAvailDto"/>
            <valueObjects:ReasonDto id="reasonDto"/>
            <s:CallResponder id="setNonAvailResult"/>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <s:Button id="updateBtn" includeIn="EmployeeNonAvails,EmployeeDetail" x="80" y="192" label="Update" click="updateBtn_clickHandler(event)"/>
        <mx:DataGrid id="nonAvailDg" width="875" height="248" editable="true" x="0" y="244"
                     dataProvider="{userDto.nonAvails}" includeIn="EmployeeNonAvails">

    PersonnelBean is a reference generated by Flash Builder to a web Service.  As stated in my original message.  I have already tested the web service and it is working fine.  I used SOAPUI to send the data via XML and it worked perfectly fine.  Besides, when I watch the server log, nothing happens and so Flex is not even sending out the message.  Flex is talking to the server because it connects and loads data fine.  It seems to fail when I want to send data to the server.  But it is failing before it actually sends the data.  And it fails during generated code.  This tells me there is a bug in Flash Builder.  If you look at the generated code for Personnel Bean this is what you see.
    [ExcludeClass]
    internal class _Super_PersonnelBean extends com.adobe.fiber.services.wrapper.WebServiceWrapper
        // Constructor
        public function _Super_PersonnelBean()
            // initialize service control
            _serviceControl = new mx.rpc.soap.mxml.WebService();
            var operations:Object = new Object();
            var operation:mx.rpc.soap.mxml.Operation;
            operation = new mx.rpc.soap.mxml.Operation(null, "setNonAvail");
             operation.resultType = valueObjects.NonAvailDto;
            operations["setNonAvail"] = operation;
            _serviceControl.operations = operations;
            try
                _serviceControl.convertResultHandler = com.adobe.serializers.utility.TypeUtility.convertResultHandler;
            catch (e: Error)
            { /* Flex 3.4 and eralier does not support the convertResultHandler functionality. */ }
            _serviceControl.service = "PersonnelBeanService";
            _serviceControl.port = "PersonnelBeanPort";
            wsdl = "http://localhost:8080/PersonnelBeanService/PersonnelBean?wsdl";
            model_internal::loadWSDLIfNecessary();
            model_internal::initialize();
          * This method is a generated wrapper used to call the 'setNonAvail' operation. It returns an mx.rpc.AsyncToken whose
          * result property will be populated with the result of the operation when the server response is received.
          * To use this result from MXML code, define a CallResponder component and assign its token property to this method's return value.
          * You can then bind to CallResponder.lastResult or listen for the CallResponder.result or fault events.
          * @see mx.rpc.AsyncToken
          * @see mx.rpc.CallResponder
          * @return an mx.rpc.AsyncToken whose result property will be populated with the result of the operation when the server response is received.
        public function setNonAvail(arg0:valueObjects.NonAvailDto) : mx.rpc.AsyncToken
            model_internal::loadWSDLIfNecessary();
            var _internal_operation:mx.rpc.AbstractOperation = _serviceControl.getOperation("setNonAvail");
            var _internal_token:mx.rpc.AsyncToken = _internal_operation.send(arg0) ;
            return _internal_token;

  • Verify Error 1030# Stack Depth unbalanced 1 != 0.

    Hi,
    Iam trying to inject some code into the SWF File using an
    opensource Java Framework. My code is getting injected correctly. I
    saw this, when i tried to decompile the SWF file into which i
    injected the code. But there is something that needs to be handled
    when it comes to handling the instruction sets available inside the
    method where i injected the code. I just wanted to know what that 1
    and 0 points to, in the below given error message.
    Verify Error 1030# Stack Depth unbalanced 1 != 0.
    If somebody can help me out in making me understand the 1 and
    0 in the error message, i can further proceed to correct the
    mistake that i have done.
    Thanks,
    Prabakaran Srinivasan.

    Hi All,
    I am able to find the root cause for this. For AS 3 classes,
    while parsing the ABC code, every method body will be a set of
    instructions in which each instruction will have an offset to it.
    This offset will be useful to mark the target for branching
    instructions like if, while etc.... Because, these instructions
    contains targetoffset as a parameter to which the instruction has
    to jump when the condition becomes true or false. The process what
    i am doing is i do some code injection to replace the URLRequest
    calls. The flash file in which i got this error, i did replace the
    URLRequest call to my own method call and this code was being
    wrapped up by an IF block. Because of the code injection, i need to
    update the offset of the instructions with the difference offset
    value. I did this, but i missed the jumpoffset parameter of the if
    block wrapping my injected code which was the root cause. I did fix
    this...
    Thanks,
    Prabakaran Srinivasan.

  • IDOC to FTP File - Error : SAP:Stack No receiver agreement found for send

    Hello Friends,
    I need to configure a senario Idoc to FTP File, Í did required settings in R3 and in PI... , did mapping and configuratino in PI... and when I send my idoc I got error msg in monitor
    <SAP:Stack>No receiver agreement found for sender ,BMG_ASN_File_Component to receiver ,GTN_224,http://adis-bmg.de/asn,SI_BMG_ASN</SAP:Stack>
    I search the fourm but did not got my answer, me just a bit confused...
    In my senario I have having followings:
    1. Bussiness System ( RFT : sender R3 system).  ( I have define a party and make a connection under Idoc Partner )
    2. Bussiness Component ( ZTEST_COMP as on Reciever side is File Server, so I define the reciver as bussiness component )
    3. Communicatin Channel
        File with protocol FTP having communicatin component as my Bussiness Component ( reciver ). there I defied the required info for FTP
    4. Reciever Determination
        Sender:
        - RFT
        - Idoc-Interface
        - urn:sap-com:document:sap:idoc:messages
       Reciever
        communication party  = space
        communicatin component = ZTEST_COMP
        Configure Reciever:
       There I again define the communication component as  ( ZTEST_COMP)
    5. Interface Determination
        -RFT
        - Idoc-Interface
        - urn:sap-com:document:sap:idoc:messages
       Reviever:
        ZTEST_COMP
    and define the mapping which I did in design ( although I have seen some threads where mentioned we dont need maaping in this case ) ?
    6. Reciver agrement
    sender:
    - RFT
    Reviver:
    - ZTEST_COMP
    - SI interface ( SI_BMG_ASN )
    - http://test-etc.de/asn
    and included my CC for file .....
    Now when I send Idoc I got error msg that Reciver is not found : am I dong something wrong ?  do I have to defien a bussiness system instead of Bussiness Component ?
    Pls suggest...

    ( I have define a party and make a connection under Idoc Partner
    Do you really need a party in your communication? Should it not be a partly-less communication.
    In the receiver agreement ensure that you have included the inbound message interface.
    communication party = space
    No need to give any space.
    In the Interface Determination i hope that you have included the receiver meessage interface and then the corresponding Interface Mapping.
    If still not works then make some dummy changes and again activate....correspondingly check the cache status of the ID-objects
    Regards,
    Abhishek.

  • ABAP errors messages stacking in BW

    We have experimented with available message types to send errors while validating variable input. Type "I" seems to work the way we want it to; however, I had to change one of our standard web template settings to no longer suppress warnings (<param name="SUPPRESS_WARNINGS" value="X"/>).  The messages are not coming thru but I am getting other warning that I do not want the users to see.
    If we use Type "E", the error messages appear on a new screen correctly, use the back button to enter a new invalid value for the variable, receive a new error message.  This messages is stacked under the previous message.  If you use the back button again and enter a valid variable value, you go to the error screen again and see the previous messages but no new messages.  It will not let you run the query with a valid value if you received an error to begin with.  Seems like the buffer is not clearing or something.
    Does anyone know how to clear out the errors or successfully use "E" so I don't get other system warnings that "I" sends thru?
    Thank you!

    Hi ,
    Try actiavting all the related components of the FM.
    Regards,
    Aditya

  • Error with stack in back command

    I'm creating a game and I need a goBack command to get to the previous rooms of my game. I used a stack to do that but i keep getting compiling errors. The code i've used is
       private void stepBack(Command command)
            if(stack.isEmpty()) {
                System.out.println("Sorry, cannot go back!");
                return;
            if(command.hasSecondWord()) {
                // if there is a second word, we cannot go back...
                System.out.println("I don't know what you mean...");
                return;
                stack.pop();   
                player.getCurrentRoom() = stack.peep();
                System.out.println(player.getCurrentRoom().longDescription()); //print method where you are
            }And for the goRoom command is
        private void goRoom(Command command)
            if(!command.hasSecondWord()) {
                // if there is no second word, we don't know where to go...
                System.out.println("Go where?");
                return;
            String direction = command.getSecondWord();
            // Try to leave current room.
            Room nextRoom = player.getCurrentRoom().getExit(direction);
            if (nextRoom == null)
                System.out.println("There is no door!");
           else
                stack.push(player.getCurrentRoom());
                player.getCurrentRoom() = nextRoom;
                System.out.println(player.getCurrentRoom().longDescription());
        }I have initialised the stack at the beginning with
    import java.util.Stack;
    import java.util.ArrayList;
    public class Game
        private Parser parser;
        private Player player;
        private ArrayList<Item> inventory;
        private Stack stack;
         * Create the game and initialise its internal map.
        public Game()
            parser = new Parser();
            player = new Player();
            inventory = new ArrayList<Item>();
            Stack stack = new Stack();
          The error i keep getting is in the line
                player.getCurrentRoom() = stack.peep();In the stepBack command and it says unexpected type.

    The error i keep getting is in the line
                player.getCurrentRoom() = stack.peep();In the stepBack command and it says unexpected type.First of all, you can't put "player.getCurrentRoom()" on the left side of an assignment; it is the result of a method invocation, and is not an lvalue. You cannot assign to it. You might want a "setCurrentRoom()" method or something.
    Second, the type for your "stack" should have a type parameter, probably Stack<Room>.

  • Error in stack.xml - Upgrade to EHP1 SPS 8 using SUM

    Hello
    we're currently upgrading our PI-system. We use SUM
    as upgrade tool.
    I've opened a maintenance task in solution manager and defined the
    target support package stack (SAP PI 7.1 EHP 1 SPS8).
    During the upgrade procedure (step 2: Select Target) in SUM I get an
    error, after selecting the stack xml file:
    Cannot construct a support package stack from
    file /usr/sap/trans/EHPinstfiles/SMSDXML_XIT_20111010063232.419.xml.
    Stack definition
    file /usr/sap/trans/EHPinstfiles/SMSDXML_XIT_20111010063232.419.xml is
    rejected.
    See error messages in /usr/sap/XIT/SUM/sdt/log/SUM/DEFINE-TARGET-
    SOURCE_09.LOG.
    DETECT  define_target  define-target-dialog  define-target-
    source  com.sap.sdt.j2ee.services.servicesimpl.DefineTargetService  class com.sap.sdt.j2ee.tools.spxmlparser.SPXmlParserException
    Next an outtake of the log-file:
    Oct 12, 2011 10:31:41 AM [Info  ]: Basic component properties of SDU file DEPLOYARCHIVES/sap.com~tc~lm~itsam~co~ui~xi~msg~wd.ear have been read. Component name is sap.com/tc/lm/itsam/co/ui/xi/msg/wd and version is 7.11.
    Oct 12, 2011 10:31:41 AM [Info  ]: Subcomponents of component sap.com/SOAMONBASIC have been processed.
    Oct 12, 2011 10:31:41 AM [Info  ]: File /usr/sap/trans/EHPinstfiles/SOAMONBASIC08_0-10006070.SCA has been analyzed for deployment components.
    Oct 12, 2011 10:31:41 AM [Error ]: Component with name SERVERCORE and vendor sap.com has multiple archive names.
    Oct 12, 2011 10:31:41 AM [Info  ]: Parsing of stack definition file /usr/sap/trans/EHPinstfiles/SMSDXML_XIT_20111010063232.419.xml has finished.
    Oct 12, 2011 10:31:41 AM [Error ]: The following problem has occurred during step execution com.sap.sdt.j2ee.tools.spxmlparser.SPXmlParserException: Cannot construct a support package
    stack from file /usr/sap/trans/EHPinstfiles/SMSDXML_XIT_20111010063232.419.xml.
    Stack definition file /usr/sap/trans/EHPinstfiles/SMSDXML_XIT_20111010063232.419.xml is rejected. See error messages in /usr/sap/XIT/SUM/sdt/log/SUM/DEFINE-TARGET-SOURCE_12.LOG.
    Regards
    Christian Kaiser

    Hello
    I've solved the problem.
    In the stack.xml file are multiples software-components with the same name, here "SERVERCORE".
    I had 3 entries, two with patch-level 0 and one with patch-level 1.
    I've deleted the two entries with patch-level 0 and then it works.
    Regards Christian

  • Error Message "Stack underflow"

    Hi,
    I wrote a tiny little ASP-Script in Homesite 5.0 which
    obviously works on our webserver. Unfortunately it crashes Homesite
    after opening it with an error message called "stack underflow",
    when having more than one file opened. The error occurs after
    switching back from another tab to the one with my script. This
    error came on any of our PCs with different HomeSite version,
    starting with4.5.2 up to 5.2
    Has anyone had such a problem so far? If so, how did you fix
    it? I allready opened the file in notepad, copy&pasted it into
    a new document an saved it under a different name, the problem
    still remains. Thank you in advance,
    cheers,
    indiwa

    I did some testing on the php example.
    - errors in both php3 and php4 parsers, but that makes sense,
    since they both are built with one common php.sc file.
    - it seems that the error (for this case) is limited to doing
    a php tag within a script language="php" tag set.
    I'm not a parser scripting expert, but I looked at it.
    Someone had added the script support in php.sc and it looks a
    little hinky to my eye. I suspect the state handling and the
    push/pop involved when you have a php tag inside the php script
    tag. Since that's not normally a legal syntax, the scripting states
    probably aren't handling it correctly. There is a push/pop there
    that may try to pop too many states in this case.
    The developer who can look at this is on vacation right now.
    I'll try to get him on it when he returns to see if we can fix it.
    In the meantime, if there are any of you who have done syntax
    parser work and want to take a look at it, that'd be helpful.
    The script sources and docs are here:
    http://www.wilk4.com/asp4hs/tsmdocs.htm
    FYI, I found that hitting Ctrl-Z for undo often helps me get
    out of the error loop when it happens. Instead of killing homesite
    because the error is looping, try that first. At least it's a
    workaround.
    Oh, lastly, they posted a technote for this. Right now it
    doesn't offer much help other than turning off php syntax coloring,
    which most would hate to do just for this, but we'll update it as
    we find out more.
    HomeSite Technote: "Stack underflow" error in HomeSite
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=400056
    Of course the other workaround is *not* to type this in the
    first place...
    It *is* invalid php anyway. (right? ;-)
    hope that helps,
    jeff

  • Axis2 and Internal Server Error, No Stack Trace

    I have deployed the Axis2.war file to an OC4J instance through the administration console.
    However, when I attempt to go to:
    http://localhost:7777/axis2/axis2-web/index.jsp
    and click on validate or any of the links I get an "Internal server error" with no stack trace.
    I have created a shared-library where I have placed the following JARs:
    axis.jar
    jaxrpc.jar
    wsdl4j-1.5.1.jar
    saaj.jar
    commons-discovery-0.2.jar
    commons-logging-1.0.4.jar
    and I have imported the library into orion-application.xml for axis.
    Any help on this matter would be appreciated.

    Here is the error in the application.log file, It can't find the include directory because that is located in the axis2/axis2-web directory.
    Any ideas on how to fix this?
    08/07/23 16:35:28.880 axis2: JspServlet: unable to dispatch to requested page: Exception:java.io.FileNotFoundException: /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/applications/axis2/axis2/include/httpbase.jsp (No such file or directory)
    08/07/23 16:35:30.85 axis2: Servlet error
    java.lang.IllegalArgumentException: Resource /include/header.inc not found
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.EvermindPageContext.include(EvermindPageContext.java:440)
         at axis22d_web._index._jspService(_index.java:54)
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    08/07/23 16:36:04.89 axis2: Servlet error
    oracle.classloader.util.AnnotatedLinkageError: Class org/apache/commons/logging/Log violates loader constraints
         Invalid class: org.apache.commons.logging.Log
         Loader: axis2.web.axis2:0.0.0
         Code-Source: /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/applications/axis2/axis2/WEB-INF/lib/commons-logging-1.1.1.jar
         Configuration: WEB-INF/lib/ directory in /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/applications/axis2/axis2/WEB-INF/lib
         Dependent class: axis22d_web._HappyAxis
         Loader: axis2.web.axis2.jsp13533900:0.0.0
         Code-Source: /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages/
         Configuration: *.jsp in /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages
         at oracle.classloader.PolicyClassLoader.findLocalClass (PolicyClassLoader.java:1462) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.SearchPolicy$FindLocal.getClass (SearchPolicy.java:167) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.SearchSequence.getClass (SearchSequence.java:119) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.SearchPolicy.loadClass (SearchPolicy.java:645) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.PolicyClassLoader.askParentForClass (PolicyClassLoader.java:1289) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.SearchPolicy$AskParent.getClass (SearchPolicy.java:68) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.SearchSequence.getClass (SearchSequence.java:119) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.PolicyClassLoader.internalLoadClass (PolicyClassLoader.java:1674) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.PolicyClassLoader.loadClass (PolicyClassLoader.java:1635) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at oracle.classloader.PolicyClassLoader.loadClass (PolicyClassLoader.java:1620) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/pcl.jar (from system property java.class.path), by sun.misc.Launcher$AppClassLoader@19175605]
         at java.lang.ClassLoader.loadClassInternal (ClassLoader.java:319) [jre bootstrap, by jre.bootstrap:1.5.0_06]
         at java.lang.Class.forName0 (Native method) [unknown, by unknown]
         at java.lang.Class.forName (Class.java:164) [jre bootstrap, by jre.bootstrap:1.5.0_06]
         at axis22d_web._HappyAxis.classExists (_HappyAxis.java:59) [app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages/ (from *.jsp in /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages), by axis2.web.axis2.jsp13533900:0.0.0]
         at axis22d_web._HappyAxis.probeClass (_HappyAxis.java:102) [app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages/ (from *.jsp in /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages), by axis2.web.axis2.jsp13533900:0.0.0]
         at axis22d_web._HappyAxis.needClass (_HappyAxis.java:186) [app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages/ (from *.jsp in /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages), by axis2.web.axis2.jsp13533900:0.0.0]
         at axis22d_web._HappyAxis._jspService (_HappyAxis.java:415) [app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages/ (from *.jsp in /app/oracle/product/10.1.3/soasuite/j2ee/odi_soa/application-deployments/axis2/axis2/persistence/_pages), by axis2.web.axis2.jsp13533900:0.0.0]
         at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.3.0) ].http.OrionHttpJspPage.service (OrionHttpJspPage.java:59) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.jsp.runtimev2.JspPageTable.service (JspPageTable.java:462) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/ojsp.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.jsp.runtimev2.JspServlet.internalService (JspServlet.java:594) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/ojsp.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.jsp.runtimev2.JspServlet.service (JspServlet.java:518) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/ojsp.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at javax.servlet.http.HttpServlet.service (HttpServlet.java:856) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/servlet.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by api:1.4.0]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.invoke (ServletRequestDispatcher.java:713) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.ServletRequestDispatcher.forwardInternal (ServletRequestDispatcher.java:370) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.doProcessRequest (HttpRequestHandler.java:871) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.HttpRequestHandler.processRequest (HttpRequestHandler.java:453) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.AJPRequestHandler.run (AJPRequestHandler.java:302) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].server.http.AJPRequestHandler.run (AJPRequestHandler.java:190) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run (ServerSocketReadHandler.java:260) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket (ServerSocketAcceptHandler.java:239) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700 (ServerSocketAcceptHandler.java:34) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run (ServerSocketAcceptHandler.java:880) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at com.evermind[Oracle Containers for J2EE 10g (10.1.3.3.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run (ReleasableResourcePooledExecutor.java:303) [app/oracle/product/10.1.3/soasuite/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /app/oracle/product/10.1.3/soasuite/j2ee/home/oc4j.jar), by oc4j:10.1.3]
         at java.lang.Thread.run (Thread.java:595) [jre bootstrap, by jre.bootstrap:1.5.0_06]

Maybe you are looking for

  • Just got new macbook pro, how do you hook up 2nd monitor?

    Just got new MacBook Pro, How do you adapt to 2nd monitor?

  • How can i use 2 usb mics in garageband?

    Hello I am trying to use 2 Headsets for podcasting in Garageband. I want them both on different channels. I can not figure out how to set this up. Can U help me? thx

  • Kewl Feature (difference) Discovered in Win 10

    I had several such links as per the example below.  Someone how they could be played & saved as MP4s and had mentioned several browsers but, not IE.  Said if they used IE they got Quick Time Player window. I said, "Oh these will just start playing in

  • Image actionscript question

    I have created an new Image using actionscript var img:Image = new Image(); img.source = images[imageViewer.horizontalScrollPosition].source; img.maintainAspectRatio = true; img.scaleContent = true; img.autoLoad = true; I am trying to find out how to

  • Deleting folder after Archive & Install...

    Hello.....A couple of months ago I did an archive and install and for some reason which is unclear to me now I never deleted the Previous Systems folder. The Previous Systems folder is on the HD. I'm trying to clear off my HD now and have also run ac