NoMatchingActionMethodException error when extending class

I have a base class (BaseProcess) that extends the PageFlowController. This class has an instance of a form:
,FSFormBean. I also have an action method that uses this form:
* @jpf:action
* @jpf:forward name="success" path="../hub/HubController.jpf"
public Forward submitNext(FSFormBean form){
return new Forward("success");
When I extend this class
public class TestController extends BaseProcess
and a JSP calls the action "submitNext", I get the following error:
No Matching Action Method Exception. I noticed that the form (FSFormBean) is empty when this is called from the parents class. Can anyone tell me why? Is it because of the notations? There are several action methods that are used throughout my class and I trying to simply my code, how can I make this to work?
Thanks,
Marcelo

Check the build directory - do a clean build - or delete following folder in your webapp directory
build/netui/weboutput/_pageflow

Similar Messages

  • Error When Using Class :(

    Hey,
    Class:
    package
        import flash.display.MovieClip;
        import flash.events.Event;
        public class Main extends MovieClip
            public var enemyA:Array = [];
            public var birdA:Array = [];
            public var rowNum:int = 2;
            private var gap:int = 100;
            private var obj_no = 2;
            public var enemy1:mychar = new mychar();
            public var TheBird:BirdChar = new BirdChar();
            public function Main()
                // constructor code
                createEnemyF();
                createBirdF();
                this.addEventListener(Event.ENTER_FRAME,loopF);
            public function createEnemyF()
                for (var i:int = 0; i < rowNum; i++)
                    for (var j:int = 0; j < obj_no; j++)
                        enemy1.x = Math.random() * stage.stageWidth - enemy1.width;
                        enemy1.y = - i * (gap + enemy1.height) - 30.65;
                        enemyA.push(enemy1);
                        addChild(enemy1);
            public function createBirdF() {
                TheBird.x = 270.95;
                TheBird.y = 350.95;
                birdA.push(TheBird);
                addChild(TheBird);
            public function loopF(event:Event) {
                updateEnemyPositionsF();
                updateBirdPositionsF();
                hitTestF();
            public function updateEnemyPositionsF() {
                enemy1.y +=  2;
            public function updateBirdPositionsF() {
                TheBird.x = mouseX;
            public function hitTestF() {
                if(TheBird.hitTestObject(enemy1))
                    gotoAndPlay(5);
                    trace('The Bird Hit Enemy 1');
    This conflicts and causes this error:
    1046: Type was not found or was not a compile-time constant: MouseEvent
    ^ ^ Code repeats to all of my event listeners
    Thanks for your time.

    Thanks, i thought it might be this because of previous problems but i seen i already had : import flash.events.Event; so i thought that would be OK!
    Second Error:
    1180: Call to an undefined method Timer.
    I think this is the same sort of thing but what to import to fix this?
    So far these are my imports:
        import flash.display.MovieClip;
        import flash.events.Event;
        import flash.events.MouseEvent;
        import flash.events.TimerEvent;
    Thanks for helping.
    Date: Thu, 3 Nov 2011 05:36:22 -0600
    From: [email protected]
    To: [email protected]
    Subject: Error When Using Class
        Re: Error When Using Class
        created by markerline in Flash Pro - General - View the full discussion
    Looks like you imported events.Event but not events.MouseEvent (or some similar syntax) basically you must import MouseEvents separately from other Events.
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4005227#4005227
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4005227#4005227. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Flash Pro - General by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Meet error when extending FileWriter with JDK1.5.0

    There is a fragment of Java code as follows:
    import java.io.File;
    import java.io.FileDescriptor;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.Writer;
    public class FilterFileWriter extends FileWriter
         private short _tokenCounter = 0;     
         private StringBuffer _buffer = new StringBuffer();
         private String _pattern = "Bioseq-set";
         private String _lastAppend = "";     
         private boolean _doWrite = true;
         public void write(char[] arg0, int arg1, int arg2) throws IOException
              super.write(arg0, arg1, arg2);
         public void write(int arg0) throws IOException
              if( _doWrite )
                   super.write( arg0 );
              if(_lastAppend.equalsIgnoreCase( pattern ) && !doWrite && arg0 == 60 )
                   _doWrite = true;
                   super.write( arg0 );
                   _lastAppend = "";
         public void write(String arg0, int arg1, int arg2) throws IOException
              super.write(arg0, arg1, arg2);
         public void write(char[] arg0) throws IOException
              //Launcher.getLoggerInstance().info( "Writing array " + arg0[0] );
              super.write(arg0);
         public void write(String str) throws IOException
              if( str.equalsIgnoreCase( _pattern ) )
                   if( _lastAppend.equalsIgnoreCase( "</" ) )
                        _doWrite = false;
                        _lastAppend = str;
                        return;
              if( str.equalsIgnoreCase( "</" ) )
                   _lastAppend = str;
                   return;
              if( _lastAppend.equalsIgnoreCase( "</" ) )
                   super.write( _lastAppend );
              if( _doWrite )
                   super.write( str );
              if( str.trim().length() > 0 )
                   _lastAppend = str;
         public void write( String str, boolean force ) throws Exception
              if( force )
                   super.write( str );
         public FilterFileWriter(File arg0) throws IOException
              super(arg0);
         public FilterFileWriter(File arg0, boolean arg1) throws IOException
              super(arg0, arg1);
         public FilterFileWriter(FileDescriptor arg0)
              super(arg0);
         public FilterFileWriter(String arg0) throws IOException
              super(arg0);
         public FilterFileWriter(String arg0, boolean arg1) throws IOException
              super(arg0, arg1);
         private boolean hasPattern()
              return buffer != null && buffer.toString().indexOf( _pattern ) >= 0;
    When compiling, meet following error:
    The return type is incompatible with Appendable.append(char), Writer.append(char),Writer.append(char)
    Why? and How to resolve this error?
    Thanks a lot!

    Did you ever find a solution to this problem? I just installed jdk 1.5_03 and I get the following error from a class that does not have any of the methods described in the error below.
    The return type is incompatible with Appendable.append(char), Writer.append(char), Writer.append(char)

  • JDeveloper error when extending VO

    I have had problems yesterday and today attempting to create an extending VO with the "mandated" RowImpl class. When I click on the Finish button in the wizard, I get the following error:
    Error in updating the java files for component: AbcMyReqsVO
    Exception: java.lang.NullPointerException
    Exception stack trace:
    java.lang.NullPointerException
         at oracle.jbo.dt.objects.JboAttribute.getSuperAttr(JboAttribute.java:1147)
         at oracle.jbo.dt.objects.JboView.doGenerateAttributeGetCode(JboView.java:2375)
         at oracle.jbo.dt.objects.JboView.generateCalculatedAttributeGetBody(JboView.java:2577)
         at oracle.jbo.dt.objects.JboView.generateAttributeMethods(JboView.java:2673)
         at oracle.jbo.dt.objects.JboView.createViewRowFile(JboView.java:1909)
         at oracle.jbo.dt.objects.JboView.saveToJavaFile(JboView.java:1813)
         at oracle.jbo.dt.objects.JboBaseObject.saveObject(JboBaseObject.java:2084)
         at oracle.jbo.dt.objects.JboView.saveObject(JboView.java:1719)
         at oracle.jbo.dt.ui.main.DtuSaveThread.doSaveObject(DtuUtil.java:1538)
         at oracle.jbo.dt.ui.main.DtuSaveThread.run(DtuUtil.java:1528)
    If I uncheck the "Generate Accessors" checkbox (as the stack talks about doGenerateAttributeGetCode), the error does not occur.
    Can anyone explain this and provide an alternative workaround that allows me to generate by accessor methods?

    The problem is in the AllReqsVO.xml. All of the view attributes have the following:
    <DesignTime>
    <Attr Name="_OverrideAttr" Value="true" />
    </DesignTime>
    This VO doesn’t extend another VO, therefore the _OverrideAttr shouldn’t be in the ViewAttribute definitions. If you manually edit the AllReqsVO.xml file and remove each of those references, then you will be able to Generate Accessors without getting the nullpointerexception. This will also fix the problem with the other VOs that extend this one, like MyReqsGlanceVO. You don’t have to change the MyReqsGlanceVO.xml, just fix AllReqsVO.xml and then you will be able to Generate Accessors when extending MyReqsGlanceVO.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Error when Extending VO :  oracle.jbo.PersistenceException

    Hi,
    I have extended 2 VO and after deployment i am getting following error.
    PosViewAsnDetailsAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.PersistenceException, msg=JBO-26000: A Generic exception occurred during loading Customizations.
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.PersistenceException, msg=JBO-26000: A Generic exception occurred during loading Customizations.
      at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
      at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:511)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
      at _OA._jspService(_OA.java:212)
      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
      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.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
      at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
      at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
      at java.lang.Thread.run(Thread.java:735)
    ## Detail 0 ##
    oracle.jbo.PersistenceException: JBO-26000: A Generic exception occurred during loading Customizations.
      at oracle.jbo.server.ViewDefImpl.loadFromXML(ViewDefImpl.java:2488)
      at oracle.jbo.server.ViewDefImpl.loadFromXML(ViewDefImpl.java:1993)
      at oracle.jbo.server.MetaObjectManager.loadFromXML(MetaObjectManager.java:526)
      at oracle.jbo.mom.DefinitionManager.loadLazyDefinitionObject(DefinitionManager.java:587)
      at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:449)
      at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:382)
      at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:364)
      at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:700)
      at oracle.jbo.server.ViewDefImpl.findDefObject(ViewDefImpl.java:398)
      at oracle.jbo.server.ApplicationModuleDefImpl.loadViewObject(ApplicationModuleDefImpl.java:493)
      at oracle.jbo.server.ApplicationModuleDefImpl.loadComponents(ApplicationModuleDefImpl.java:672)
      at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:411)
      at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91)
      at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:139)
      at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:80)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2468)
      at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
      at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:511)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
      at _OA._jspService(_OA.java:212)
      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
      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.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
      at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
      at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
      at java.lang.Thread.run(Thread.java:735)
    ## Detail 0 ##
    java.lang.IndexOutOfBoundsException: Index: 66, Size: 65
      at com.sun.java.util.collections.ArrayList.RangeCheck(ArrayList.java:492)
      at com.sun.java.util.collections.ArrayList.set(ArrayList.java:322)
      at oracle.jbo.server.ViewDefImpl.resolveDefInternal(ViewDefImpl.java:2623)
      at oracle.jbo.server.ViewDefImpl.loadFromXML(ViewDefImpl.java:2466)
      at oracle.jbo.server.ViewDefImpl.loadFromXML(ViewDefImpl.java:1993)
      at oracle.jbo.server.MetaObjectManager.loadFromXML(MetaObjectManager.java:526)
      at oracle.jbo.mom.DefinitionManager.loadLazyDefinitionObject(DefinitionManager.java:587)
      at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:449)
      at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:382)
      at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:364)
      at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:700)
      at oracle.jbo.server.ViewDefImpl.findDefObject(ViewDefImpl.java:398)
      at oracle.jbo.server.ApplicationModuleDefImpl.loadViewObject(ApplicationModuleDefImpl.java:493)
      at oracle.jbo.server.ApplicationModuleDefImpl.loadComponents(ApplicationModuleDefImpl.java:672)
      at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:411)
      at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91)
      at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:139)
      at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:80)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2468)
      at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
      at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:511)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
      at _OA._jspService(_OA.java:212)
      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
      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.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
      at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
      at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
      at java.lang.Thread.run(Thread.java:735)
    JBO-30003: The application pool (svdg0276.ideaapps.comDEVR121542oracle.apps.pos.asn.server.PosViewAsnDetailsAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.PersistenceException, msg=JBO-26000: A Generic exception occurred during loading Customizations.
      at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
      at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:511)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
      at _OA._jspService(_OA.java:212)
      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
      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.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
      at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
      at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
      at java.lang.Thread.run(Thread.java:735)
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.PersistenceException, msg=JBO-26000: A Generic exception occurred during loading Customizations.
      at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
      at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:511)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
      at _OA._jspService(_OA.java:212)
      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
      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.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
      at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
      at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
      at java.lang.Thread.run(Thread.java:735)
    ## Detail 0 ##
    oracle.jbo.PersistenceException: JBO-26000: A Generic exception occurred during loading Customizations.
      at oracle.jbo.server.ViewDefImpl.loadFromXML(ViewDefImpl.java:2488)
      at oracle.jbo.server.ViewDefImpl.loadFromXML(ViewDefImpl.java:1993)
      at oracle.jbo.server.MetaObjectManager.loadFromXML(MetaObjectManager.java:526)
      at oracle.jbo.mom.DefinitionManager.loadLazyDefinitionObject(DefinitionManager.java:587)
      at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:449)
      at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:382)
      at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:364)
      at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:700)
      at oracle.jbo.server.ViewDefImpl.findDefObject(ViewDefImpl.java:398)
      at oracle.jbo.server.ApplicationModuleDefImpl.loadViewObject(ApplicationModuleDefImpl.java:493)
      at oracle.jbo.server.ApplicationModuleDefImpl.loadComponents(ApplicationModuleDefImpl.java:672)
      at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:411)
      at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91)
      at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:139)
      at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:80)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2468)
      at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
      at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:511)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
      at _OA._jspService(_OA.java:212)
      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
      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.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
      at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
      at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
      at java.lang.Thread.run(Thread.java:735)
    ## Detail 0 ##
    java.lang.IndexOutOfBoundsException: Index: 66, Size: 65
      at com.sun.java.util.collections.ArrayList.RangeCheck(ArrayList.java:492)
      at com.sun.java.util.collections.ArrayList.set(ArrayList.java:322)
      at oracle.jbo.server.ViewDefImpl.resolveDefInternal(ViewDefImpl.java:2623)
      at oracle.jbo.server.ViewDefImpl.loadFromXML(ViewDefImpl.java:2466)
      at oracle.jbo.server.ViewDefImpl.loadFromXML(ViewDefImpl.java:1993)
      at oracle.jbo.server.MetaObjectManager.loadFromXML(MetaObjectManager.java:526)
      at oracle.jbo.mom.DefinitionManager.loadLazyDefinitionObject(DefinitionManager.java:587)
      at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:449)
      at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:382)
      at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:364)
      at oracle.jbo.server.MetaObjectManager.findMetaObject(MetaObjectManager.java:700)
      at oracle.jbo.server.ViewDefImpl.findDefObject(ViewDefImpl.java:398)
      at oracle.jbo.server.ApplicationModuleDefImpl.loadViewObject(ApplicationModuleDefImpl.java:493)
      at oracle.jbo.server.ApplicationModuleDefImpl.loadComponents(ApplicationModuleDefImpl.java:672)
      at oracle.jbo.server.ApplicationModuleImpl.createRootApplicationModule(ApplicationModuleImpl.java:411)
      at oracle.jbo.server.ApplicationModuleHomeImpl.create(ApplicationModuleHomeImpl.java:91)
      at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:139)
      at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:80)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2468)
      at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
      at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
      at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
      at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:511)
      at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
      at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1300)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:543)
      at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:431)
      at _OA._jspService(_OA.java:212)
      at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
      at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:379)
      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.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
      at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
      at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
      at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
      at java.lang.Thread.run(Thread.java:735)

    Asking the obvious but did you bounce the server after deployment?
    Here is something that might help - Error when try to save Search Criteria after applying MDS
    https://forums.oracle.com/community/developer/english/e-business_suite/search.jspa?peopleEnabled=true&userID=&containerType=&container=&q=JBO-26000%3A+A+Generic+exception+occurred+during+loading+Customizations
    Thanks.

  • GetDefinitionByName() error when calling class between modules

    i have a main application which loads two modules - lets call them x and y.
    module x has a class called dataObject. i have made a dummy instance of this class in module x.
    in module y, i have the following code:
    flash.utils.getDefinitionByName( 'dataObject' )
    the main app loads both module x and y successfully in seperate child domains BEFORE calling the line above.
    i am getting a variable 'dataObject' is not defined error.
    i know the reason why this error occurs under normal single-app circumstances. however, i could not find any posts relating to this error when dealing with multiple modules loaded dynamically. i have tried loading both modules in the same domain as the main app but still no luck.
    any help appreciated!
    thanks!

    i looked it at a cursory level.
    basically, the class that you want the definition for needs to either be in the module app domain loading it or its parent app domain? in my case it is in a seperate child app domain of the parent, which is why it can't be found.. am i right?
    however, this forces me to put the module containing the class in the same app domain as the main app. is there a way i can get the definition of the class regardless of what app domain it is in (assuming it is in the same security domain, however) ?
    thanks!

  • Error when extending Active Directory schema

    Hi there,
    I am trying to extend my active directory schema in order to store my managed preferences in AD.
    I am following this white paper : http://images.apple.com/business/solutions/it/docs/Modifyingthe_Active_DirectorySchema.pdf
    When I try to apply the changes on my test domain controller (running W2k3 R2 SP2), I get the following error :
    Entry DN: cn=apple-mount,cn=Schema,cn=Configuration,DC=TOTO,DC=CHIPS
    Add error on line 674: No Such Attribute
    The server side error is "The parameter is incorrect."
    An error has occurred in the program
    The corresponding section in the ldf file is :
    # Class: mount
    dn: cn=apple-mount,cn=Schema,cn=Configuration,dc=X
    changetype: ntdsschemaadd
    objectClass: classSchema
    governsID: 1.3.6.1.4.1.63.1000.1.1.2.8
    ldapDisplayName: mount
    objectClassCategory: 1
    # subclassOf: top
    subclassOf: 2.5.6.0
    # rdnAttId: cn
    rdnAttId: 2.5.4.3
    # mayContain: apple-mountDirectory
    mayContain: 1.3.6.1.4.1.63.1000.1.1.1.8.1
    # mayContain: apple-mountDumpFrequency
    mayContain: 1.3.6.1.4.1.63.1000.1.1.1.8.4
    # mayContain: apple-mountOption
    mayContain: 1.3.6.1.4.1.63.1000.1.1.1.8.3
    # mayContain: apple-mountPassNo
    mayContain: 1.3.6.1.4.1.63.1000.1.1.1.8.5
    # mayContain: apple-mountType
    mayContain: 1.3.6.1.4.1.63.1000.1.1.1.8.2
    possSuperiors: 2.5.6.5
    possSuperiors: container
    The attributes specified in "mayContain" appears to be correctly created (see log below)
    31: cn=apple-mountDirectory,cn=Schema,cn=Configuration,DC=TOTO,DC=CHIPS
    Entry DN: cn=apple-mountDirectory,cn=Schema,cn=Configuration,DC=TOTO,DC=CHIPS
    Entry modified successfully.
    32: cn=apple-mountDumpFrequency,cn=Schema,cn=Configuration,DC=TOTO,DC=CHIPS
    Entry DN: cn=apple-mountDumpFrequency,cn=Schema,cn=Configuration,DC=TOTO,DC=CHIPS
    Entry modified successfully.
    33: cn=apple-mountOption,cn=Schema,cn=Configuration,DC=TOTO,DC=CHIPS
    Entry DN: cn=apple-mountOption,cn=Schema,cn=Configuration,DC=TOTO,DC=CHIPS
    Entry modified successfully.
    34: cn=apple-mountPassNo,cn=Schema,cn=Configuration,DC=TOTO,DC=CHIPS
    Entry DN: cn=apple-mountPassNo,cn=Schema,cn=Configuration,DC=TOTO,DC=CHIPS
    Entry modified successfully.
    35: cn=apple-mountType,cn=Schema,cn=Configuration,DC=TOTO,DC=CHIPS
    Entry DN: cn=apple-mountType,cn=Schema,cn=Configuration,DC=TOTO,DC=CHIPS
    Entry modified successfully.
    Does anyone encountered the same issue ? Any idea ?
    Thanks in advance,
    Florent

    Which is line #674? Looking over your listing, the only thing that stands out to me is that I think possSuperiors takes object class names, not IDs (i.e. "possSuperiors: 2.5.6.5" should be "possSuperiors: organizationalUnit"). Also, if you copy and paste sections from the PDF, you're likely to get leading and trailing spaces on the pasted lines, which all need to be removed for it to function properly. The trailing spaces are especially nasty, since they're invisible in most text editors.

  • Problem occuring when extending classes coming from 2 signed JAR

    Hi everyone,
    I have 2 signed jar called "base_signed.jar" and "extended_signed.jar" using keytool with a testing certificate generated at runtime. All goes well because with both signed JARs I can use the URLClassLoader without any java.security.AccessControlException exception.
    But the first JAR contains abstract class B, the latter JAR contains a concrete class A.
    The problem occurs when I try to instantiate some class A coming from "extended_signed.jar" using Class.forName("blablaclassA").newInstance() and occurs only if this class A extends some other abstract class B contained inside "base_signed.jar" .
    Pratically if the class A is casted as its common JVM ancestor of B (JInternalFrame) all goes well, otherwise if I try to cast A using its direct ancestor B, I receive the following exception:
    network: Connessione a http://www.orion.lan/~antares/it/weev/wipidea/plugins/MeteoradarArpavPlugin$7.class con proxy=DIRECT
    Exception in thread "AWT-EventQueue-35" java.lang.ClassCastException: it.weev.wipidea.plugins.MeteoradarArpavPlugin cannot be cast to it.weev.wipidea.base.AWipideaPlugin
         at it.weev.wipidea.base.PluginLoader.loadNetworkPlugin(Unknown Source)
         at it.weev.wipidea.applet.WipideaApplet.loadPlugin(Unknown Source)
         at it.weev.wipidea.applet.WipideaApplet$1.actionPerformed(Unknown Source)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    network: Voce cache non trovata [url: http://www.orion.lan/~antares/it/weev/wipidea/base/PluginLoader.class, versione: null]
    network: Connessione a http://www.orion.lan/~antares/it/weev/wipidea/base/PluginLoader.class con proxy=DIRECT
    network: Voce cache non trovata [url: http://www.orion.lan/~antares/it/weev/wipidea/base/network-classpath.class, versione: null]
    ---The strange thing is that if I don't sign both JARs the class A is casted on B without any exception, could for security reason like hash or other? Ideally I need all JAR signed only because I plan to load classes from all over the net, but seems that URLClassLoader throws an AccessControlException when called.
    Anyway just now I solve all using only the common JVM ancestor of A and B, but what could be the final solution?
    Thanks, bye.

    Hi Sean,
    The file in question has been signed which causes issues in both OSB directly and in Eclipse when we do an import into that tool first.Can you let us know what issues you faced? Any errors? If yes, please post the same here.
    Regards,
    Anuj
    Edited by: Anuj Dwivedi on Feb 23, 2011 9:10 PM

  • Error when extending portal domain to be a wsrp producer

    I have created a Weblogic Portal domain, and then created a Portal web application deployed in Weblogic Portal domain.
    Now, I would like to extend the domain to be a WSRP producer in order to consume som portlets in other Portals.
    When I try to extend the domain I get the following error:
    Domain Extension Application Failed!
    Domain Location: <DOMAIN_HOME>\base_domain2
    Reason: null
    Exception:
    Traceback (innermost last):
    File "<iostream>", line 14, in ?
    File "D:\Documents and Settings\E\Local Settings\Temp\WLSTOfflineIni61149.py", line 118, in create
    com.bea.plateng.domain.script.jython.WLSTException: com.bea.plateng.domain.script.ScriptException: com.bea.plateng.domain.ValidateException: Property "Name" of PKICredentialMapper with original name "Provider" is invalid. The property value is duplicated.
    Any ideas?
    Thanks in advance!!

    By default, portal domains include support wsrp producer - so there is
    no need to extend the domain.
    Subbu
    Espen Kj?lberg wrote:
    I have created a Weblogic Portal domain, and then created a Portal web application deployed in Weblogic Portal domain.
    Now, I would like to extend the domain to be a WSRP producer in order to consume som portlets in other Portals.
    When I try to extend the domain I get the following error:
    Domain Extension Application Failed!
    Domain Location: <DOMAIN_HOME>\base_domain2
    Reason: null
    Exception:
    Traceback (innermost last):
    File "<iostream>", line 14, in ?
    File "D:\Documents and Settings\E\Local Settings\Temp\WLSTOfflineIni61149.py", line 118, in create
    com.bea.plateng.domain.script.jython.WLSTException: com.bea.plateng.domain.script.ScriptException: com.bea.plateng.domain.ValidateException: Property "Name" of PKICredentialMapper with original name "Provider" is invalid. The property value is duplicated.
    Any ideas?
    Thanks in advance!!

  • Error when extend sales view for material master

    Hi Experts,
       Assume my plant is 5100. When i extend the sales view for materials via upload program,I am getting the error as ' Field 5100 has been transferred inconsistently or is blank'. Attached is the screen shot of the error message. I filled the plant,sales organization and all those data related sales view. But why i am getting this error?. Anyone have any ideas related to this error?. Please advise. Thanks in advance.
    Regards,
    Kavi

    Hi ,
        Its because of the table T130W. The plant 5100 is not maintained in table T130W. Thats the reason. it shows this error.

  • Error when activating class CL_HRRCF_M_QUICK_SEARCH_UI

    Hi,
    I encountered an error today during enhancement of a standard class.
    Initially, i was able to enhance the class. However, when inserting the post method exit, I got an error message saying to convert the class-local types. I found the option to do so in the Utilities -> Convert Class-Local Types. However, to perform this, I will need to have an object key first. I selected the close button when the system prompted me to enter an object key. However, i have noticed that even though i didn't proceed in the actual conversion (due to the restriction), the system still prompted "Successfully converted". Now, my problem is that though the class is already active, there are some components of the class that were left inactive.
    CINC
    CL_HRRCF_M_QUICK_SEARCH_UI====CCDEF
    CINC
    CL_HRRCF_M_QUICK_SEARCH_UI====CCIMP
    CINC
    CL_HRRCF_M_QUICK_SEARCH_UI====CCMAC
    CREP
    CL_HRRCF_M_QUICK_SEARCH_UI
    When i tried to activate, the system again prompts for object registration. Now, thought the application using the assistance class doesn't have issues, I am still worried about these inactive objects.
    Has someone encountered this? i tried doing the same thing for CL_HRRCF_M_SEARCH_UI and I was able to successfully insert the post method without any issues.

    Well this method retrieve_nvp is a static private method which is called in method CONSTRUCT_BSP_URL of the same class. You can not access this method from your Z-class. So you will have to rename the class in this method as well.
    Original class method coding
      ls_url_field-name = 'sap-themeRoot'.  "#EC NOTEXT
    CALL METHOD cl_hrrcf_global_context=>retrieve_nvp
        EXPORTING
          pt_nvp_src = pt_params
          p_field    = ls_url_field-name
        IMPORTING
          pt_nvp_dst = lt_nvp.
    You can see that the static private method of the original class is called. Rename the class to your Z-class before activatiing.

  • Error when extending PerformanceDetailsVO

    When I am trying to modify the the column in PerformanceDetailsVO
    Original :- decode(ppr.performance_rating, null, null,
    ppr.performance_rating||' - '||hr_general.decode_lookup('PERFORMANCE_RATING',ppr.performance_rating)) last_rating,
    need to modify :- hr_general.decode_lookup('PERFORMANCE_RATING',ppr.performance_rating) last_rating,
    I am getting error like "each row in the query result columns must be mapped to a unique query attribute in the Mapped Entity Column"
    I even tried with Updatable access through Entity Objects still getting the same error.

    Hi,
    I believe your VO is extended from a base EO and the base EO's columns does not map to the columns which are newly added in your VO. Hope it helps!
    Regards,
    Yuvaraj

  • Error when using class wire in flat sequence

    I tried a search and didn't find anything on this.  I have a VI that I was going evaluate its execution time.  So to be quick about it, I encased the code in a flat sequence box and added a second frame, place a Get Date/Time in seconds in each and found the difference.  When I did this, my program had errors.  It appears that I have to wire the class inputs and output outside of the sequence structure or an error is generated.
    VI is reentrant although I doubt that makes a difference.
    I get the following error:
    Terminal: One or more of the inputs to this tunnel or shift register does not orginate at the dynamic input front panel terminal
    Error case:
    Error is fixed
    Does this seem like expected behavior?
    Randall Pursley

    I would not say it is "expected" behavior but quite possibly it is very correct behavior  (Read as "almost certainly").
    "Wrap-your-head-in-duct-tape" and read message 12 of this thread carefully. Dynamic terminals that are on the connector pane determine which DD vi is actually called at run time.  Unless those terminals are on the root diagram there is a chance they could be conditionally read or even in dead code (imagine the sequence frame was replaced by a case structure since all structures are treated as "structures")  this breaks "inplaceness" and if not resolved, by placeing the terminals on the root diagram, LabVIEW would need to determine at run time wether or not a buffer allocation was required.  Thats not really possible.
    Perhaps R&D will explain it in greater detail?  But, the way to avoid this error is to pay attention to terminal that are on the con pane and alwasy keep them on the root diagram (It's more effecient code in any case).
    Secondly, the first get date time should be moved outside the sequence and wired through frame 1 to force it to execute before any othe code in the frame. 
    Jeff

  • Error when extending VO and via SPEL in SSHR to control rendering a tab

    Hi,
    I am a freshman of OA Framework personalization. Please bear with me for the long description.
    After extending a VO (xxAbsenceDetailsVO), substitute for the original VO (AbsenceDetailsVO), load substitution with jpximport, and sftp all extended VO files to $JAVA_TOP, I can view the extended VO (xxAbsenceDetailsVO) and the added attribute (absenceRendering).
    Path: SSHR->My Information-> 'above this page' link-> click Absence tab -> 'Business Component References Details' from 'above this page' link-> View Objects-> xxAbsence.oracle.apps.per.selfservice.mgrviews.server.xxAbsenceDetailsVO ->absenceRendering attribute with type java.lang.Boolean.
    So I added SPEL to the 'rendered' properties ${oa.xxAbsenceDetailsVO.absenceRendering} to control one of the Absence tab (at Stack Layout: Absence) via personalization.
    When login, absenceRendering will return TRUE based on my employment and the tab render correctly.
    However, I got the following error message when trying to access it (Absence tab) which control by SPEL ${oa.xxAbsenceDetailsVO.absenceRendering}:
    Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND. Tokens: VONAME = xxAbsenceDetailsVO; APPLICATION_MODULE = oracle.apps.per.selfservice.mgrviews.server.EmpViewsAbsAM;
    Please advice how to resolve this error.
    Thanks in advanced.
    NC
    Edited by: user512819 on Jun 17, 2009 6:25 AM

    Hi,
    I am a freshman of OA Framework personalization. Please bear with me for the long description.
    After extending a VO (xxAbsenceDetailsVO), substitute for the original VO (AbsenceDetailsVO), load substitution with jpximport, and sftp all extended VO files to $JAVA_TOP, I can view the extended VO (xxAbsenceDetailsVO) and the added attribute (absenceRendering).
    Path: SSHR->My Information-> 'above this page' link-> click Absence tab -> 'Business Component References Details' from 'above this page' link-> View Objects-> xxAbsence.oracle.apps.per.selfservice.mgrviews.server.xxAbsenceDetailsVO ->absenceRendering attribute with type java.lang.Boolean.
    So I added SPEL to the 'rendered' properties ${oa.xxAbsenceDetailsVO.absenceRendering} to control one of the Absence tab (at Stack Layout: Absence) via personalization.
    When login, absenceRendering will return TRUE based on my employment and the tab render correctly.
    However, I got the following error message when trying to access it (Absence tab) which control by SPEL ${oa.xxAbsenceDetailsVO.absenceRendering}:
    Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND. Tokens: VONAME = xxAbsenceDetailsVO; APPLICATION_MODULE = oracle.apps.per.selfservice.mgrviews.server.EmpViewsAbsAM;
    Please advice how to resolve this error.
    Thanks in advanced.
    NC
    Edited by: user512819 on Jun 17, 2009 6:25 AM

  • References when extending class

    I have a general question about extending a class.
    If I have
    public class B extends A
    does Java create a reference to A and B?
    Imagine I call a method of A with super from a method of B, this method is not static, so I must have a reference, I think.
    Thanks Caroline

    If a class B is a subclass of A, the class A is instantiated when B is instantiated.
    class A{
      A(){;}// default constructor of A
    class B extends A{ // default constructor of B
      B(){
          super();// A is instantiated
    }(The reference to B already refers to A.)

Maybe you are looking for

  • Recovery Mode - Lost Songs

    Hi All, I hadn't use my IPOD Nano (1st Gen.) for a few weeks. I was visiting a friend who was about 40 miles away from home so I decided to update some of my music in the Nano and also give it a little charge. However, when I ran ITunes (for Windows

  • 7 Things every Adobe AIR Developer should know about Security

    7 Things every Adobe AIR Developer should know about Security 1. Your AIR files are really just zip files. Don't believe me? Change the .air extension to zip and unzip it with your favorite compression program. What does this mean for you the develop

  • Load Balancing for Oracle Apps in linux

    Dear all, I need anykind of information for load balancing (how to do it - architecture) for oracle application in linux environment. Just for info, the database will be on linux too using RAC (3 machines). I have 4 machines to be use as application

  • Transportation group field in Material master..Sales/Plant data tab.

    Hello Gurus, The transportation group field in material master is Material specific or a plant specific?? caz whenever i am changing this transportation group field in one plant it is also updating with the same value in all the plant for the common

  • Old Domain Files- New hard Drive

    Apple just replaced my 120gb hard drive in my Powerbook. Successfully transfered files from an external bootable clone. The clone was about a month old, but I also have regular backups on external drives, including iLife backups. Trouble is, I tried