Oracle.adfinternal.controller.savepoint.SavePointException: ADFC-08008: The ADF Controller is unable to insert a savepoint record for ID

I implemented a save point in a task flow by creating a save point in a method action The following is the code from managed bean for creating the save point:
             ControllerContext cc = ControllerContext.getInstance();
if (cc != null) {
SavePointManager mgr = cc.getSavePointManager();
if (mgr != null) {
String id = mgr.createSavePoint();
savePointId = id;
It worked fine in local (Integrated Weblogic server). It also worked fine initially when I deployed the changes to the DEV weblogic server. But after a couple of days, in DEV server I get the following error everytime when trying to create a save point:
Caused By: oracle.adfinternal.controller.savepoint.SavePointException: ADFC-08008: The ADF Controller is unable to insert a savepoint record for ID '4d233555-ea0c-4bae-9f17-cc6c
7124870f'. oracle.adfinternal.controller.savepoint.SavePointUtil.createAndLogSavePointException(SavePointUtil.java:56)
        at oracle.adfinternal.controller.savepoint.SavePointDBPersistManager.insertSavePoint(SavePointDBPersistManager.java:245)
        at oracle.adfinternal.controller.savepoint.DBSavePointManagerImpl.storeSavePoint(DBSavePointManagerImpl.java:127)
        at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.storeSavePoint(SavePointManagerImpl.java:301)
        at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createAndStoreSavePoint(SavePointManagerImpl.java:257)
        at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:187)
        at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:116)
        at view.security.errormanagement.ManageErrorsMB.saveTaskFlow(ManageErrorsMB.java:213)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
        at java.lang.reflect.Method.invoke(Method.java:611)
        at com.sun.el.parser.AstValue.invoke(Unknown Source)
        at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
        at oracle.adf.controller.internal.util.ELInterfaceImpl.invokeMethod(ELInterfaceImpl.java:173)
        at oracle.adfinternal.controller.activity.MethodCallActivityLogic.execute(MethodCallActivityLogic.java:163)
        at oracle.adfinternal.controller.engine.ControlFlowEngine.executeActivity(ControlFlowEngine.java:1035)
        at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:926)
        at oracle.adfinternal.controller.engine.ControlFlowEngine.doRouting(ControlFlowEngine.java:824)
        at oracle.adfinternal.controller.engine.ControlFlowEngine.routeFromActivity(ControlFlowEngine.java:554)
        at oracle.adfinternal.controller.engine.ControlFlowEngine.performControlFlow(ControlFlowEngine.java:158)
        at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleAdfcNavigation(NavigationHandlerImpl.java:115)
        at oracle.adfinternal.controller.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:84)
        at org.apache.myfaces.trinidadinternal.application.NavigationHandlerImpl.handleNavigation(NavigationHandlerImpl.java:50)
        at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:130)
        at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
        at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:157)
        at org.apache.myfaces.trinidad.component.UIXTable.broadcast(UIXTable.java:279)
        at oracle.adf.view.rich.component.UIXTable.broadcast(UIXTable.java:145)
        at oracle.adf.view.rich.component.rich.data.RichTable.broadcast(RichTable.java:479)
        at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:159)
        at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
        at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
        at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
        at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:112)
        at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:130)
        at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:461)
        at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:134)
        at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:106)
        at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:1129)
        at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:353)
        at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
        at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
        at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:122)
        at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
        at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
        at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468)
        at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
        at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199)
        at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
        at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
        at java.security.AccessController.doPrivileged(AccessController.java:284)
        at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
        at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
        at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
        at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
        at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
        at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
        at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
        at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
        at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
        at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
        at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
        at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
        at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
        at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
        at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
Caused By: java.sql.SQLException: Connection has already been closed.
        at weblogic.jdbc.wrapper.PoolConnection.checkConnection(PoolConnection.java:58)
        at weblogic.jdbc.wrapper.Connection.preInvocationHandler(Connection.java:94)
        at weblogic.jdbc.wrapper.Connection.prepareCall(Connection.java:543)
        at oracle.adfinternal.controller.savepoint.SavePointDBPersistManager.insertSavePoint(SavePointDBPersistManager.java:221)
        at oracle.adfinternal.controller.savepoint.DBSavePointManagerImpl.storeSavePoint(DBSavePointManagerImpl.java:127)
        at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.storeSavePoint(SavePointManagerImpl.java:301)
        at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createAndStoreSavePoint(SavePointManagerImpl.java:257)
        at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:187)
        at oracle.adfinternal.controller.savepoint.SavePointManagerImpl.createSavePoint(SavePointManagerImpl.java:116)
        at view.security.errormanagement.ManageErrorsMB.saveTaskFlow(ManageErrorsMB.java:213)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:60)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
        at java.lang.reflect.Method.invoke(Method.java:611)
At the bottom of the stack, this statement "Caused By: java.sql.SQLException: Connection has already been closed." intrigues me, but why this error occurs after a couple of days or after particular number of connections or access to the application.
This same issue is also happening in all environments including PROD. Please help. JDeveloper version used is 11.1.2.1.0.

We got the solution from Oracle support. 
Passivation Fails With Error "Connection has already been closed" in PoolConnection.checkConnection() (Doc ID 1330271.1). Problem is caused by the WebLogic Server Connection Pool feature "Inactive Connection Timeout". When this parameter is set up, WLS will forcibly release reserved connections back into the pool. This is a problem for ADF BC that relies on keeping the JDBC connection associated to its
Application Module instance.
Set the "Inactive Timeout Session" to 0 (default), so that the JDBC connection stays active while
the corresponding Application Module instance is active:
Thanks....

Similar Messages

  • ADFC-00025: The ADF controller has not been successfully initialized.

    I am using JDeveloper 11.1.2.0.0, create a simple ADF face page, which is running fine in Inetgrated Weblogic server, and package it as a War file by using Jdeveloper, I chose Weblogic 10.3 as the target server. I deployed the War file to Weblogic managed server on the Unix box by using its console. The deployment is fine and the web application is active. I get ControllerException when I run the page. Please see the exception log. I don't know what goes wrong. Thank you very much for your help.
    [ServletContext@20496013[app:TestDeployServer module:TestDeployServer.war path:/TestDeployServer spec-version:2.5]] Servlet failed with Exception oracle.adf.controller.ControllerException: ADFC-00025: The ADF controller has not been successfully initialized. at oracle.adfinternal.controller.util.Utils.createAndLogControllerException(Utils.java:212) at oracle.adfinternal.controller.application.AdfcAppInitializer.initialize(AdfcAppInitializer.java:110) at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:93) at oracle.adfinternal.controller.state.AdfcContext.initialize(AdfcContext.java:79) at oracle.adfinternal.controller.application.WindowLifecycleLogic.windowOpened(WindowLifecycleLogic.java:60) at oracle.adfinternal.controller.application.AdfcWindowLifecycleListener.windowOpened(AdfcWindowLifecycleListener.java:61) at oracle.adfinternal.controller.application.AdfcWindowLifecycleListener.processWindowLifecylce(AdfcWindowLifecycleListener.java:42) at oracle.adfinternal.view.faces.webapp.rich.RichWindowManagerFactory$ApplicationWindowListeners.processWindowLifecylce(RichWindowManagerFactory.java:246) at oracle.adfinternal.view.faces.webapp.rich.RichWindowManager._fireWindowLifecycleEvent(RichWindowManager.java:496) at oracle.adfinternal.view.faces.webapp.rich.RichWindowManager._handleWindowOpened(RichWindowManager.java:536) at oracle.adfinternal.view.faces.webapp.rich.RichWindowManager.renderLoopbackPage(RichWindowManager.java:907) at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:109) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468) at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:468) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293) at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:199) at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730) at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696) at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120) at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273) at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179) at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490) at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256) at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

    You asked this question in a wrong forum. You should have asked it in {forum:id=83} because the question is related to ADF Faces but not to WebLogic.
    ADF Faces application cannot be deployed as a WAR. You should deploy the application as EAR because ADF Faces applications need some resources which are deployed as part of EAR (e.g. some OPSS configuration filles, some ADF configuration files, JDBC DataSources, etc.).
    Dimitar

  • %APF-4-CREATE_PMK_CACHE_FAILED: apf_pmkcache.c:561 Attempt to insert PMK to the key cache failed. unable to insert a new entry in PMK cache list.Length: 32. Station:

    I received this error using apple IPAD version 7.1.2 connecting to cisco WiSM controller version 7.0.250. access point wireless setup using local-hreap.
    below are the syslog messages.
    : *mmListen: Aug 25 10:38:35.962: %APF-4-CREATE_PMK_CACHE_FAILED: apf_pmkcache.c:561 Attempt to insert PMK to the key cache failed. unable to insert a new entry in PMK cache list.Length: 32. Station:98:fe:94:90:70:ef
    : *mmListen: Aug 25 10:38:35.962: %MM-4-PMKCACHE_ADD_FAILED: mm_listen.c:6479 Failed to create PMK/CCKM cache entry for station 98:fe:94:90:70:ef with update from controller
    : *dot1xMsgTask: Aug 25 12:09:27.883: %DOT1X-3-MAX_EAP_RETRIES: 1x_auth_pae.c:3092 Max EAP identity request retries (3) exceeded for client 98:fe:94:90:70:ef
    : *dot1xMsgTask: Aug 25 12:57:32.503: %DOT1X-3-MAX_EAP_RETRIES: 1x_auth_pae.c:3092 Max EAP identity request retries (3) exceeded for client 98:fe:94:90:70:ef

    Hi Ravi Rai,
    I'm sorry to hear about the issue you are having with your Mac. If you are having hard freezes or restart issue that don't appear to be drive related, even after reinstalling Mavericks, you may want to try the troubleshooting steps outlined in the following article:
    OS X: When your computer spontaneously restarts or displays "Your computer restarted because of a problem."
    Regards,
    - Brenden

  • What are the main steps to be taken care while doing recording for LSMW

    Hi,
    I am facing problem in LSMW.
    Can anybody suggest me that What are the main steps to be taken care while doing recording for LSMW for recording mm01 ?
    thanks'
    naresh

    Hi,
    Recording in LSMW is similar as SHDB.
    in LSMW after you give Project-Subproject and Object.
    1)Go to-> Maintain Object Attributes -> double click
    2)Press Display/Change Button at top left to make editable mode.
    3)Select radiobuton -> Batch Input -> Give Recording name say Z_mm01
    4) Click the Recording Overview boton on right -> Give TCode which u want to record....
    Rest refer the Document link attached.
    Please find the links to various threads on the same.
    Re: LSMW - Using a BAPI
    BAPI, IDOC in LSMW
    Upload the data in LSMW using BAPI
    This one is the most complete document for the same
    http://sapabap.iespana.es/sapabap/manuales/pdf/lsmw.pdf
    http://service.sap.com/lsmw.
    Regards
    Kiran

  • No method (within view controlle) to get reference to the window controller

    Hello all,
    I need to fire the exit plug of the window controller out of an embedded view.
    All help I can find in the internet tell me to "easily" get a ref to the window controller and thus to fire its plug as follows:
    data: L_REF_MAIN_WINDOW type ref to IG_MAIN_WINDOW .
    L_REF_MAIN_WINDOW =   WD_THIS->GET_MAIN_WINDOW_CTR( ).
    L_REF_MAIN_WINDOW->FIRE_MY_EXIT_PLUG_PLG(  ).
    But my view-controller dos not implement a method like
    GET_MAIN_WINDOW_CTR( )
    How can I get this method generated? What am I doing wrong?
    Thanks for your replies.
    Edited by: iSD1977 on Aug 23, 2011 4:09 PM

    Hello,
    in the Properties tab of the View Controller, add Window Controller as Used Controller.
    BR, Saravanan

  • Can Xgrid controller and agent run on the same controller?

    I am trying to setup an Xgrid on 2 Mac OS X Leopard computers. My intention was setting up one computer as a controller/agent and other computer as an agent so that I can have a grid with 2 agents running on different computers. I setup my grid with xgridctl and using Xgrid Admin, I am able to view the grid on a GUI program. In Xgrid Admin, I also see 2 computers (One is local, other one is remote computer) listed with their IP addresses. Only the remote computer's status is "Available". Local computer's status is "Unavailable".
    I was about to conclude that you can not have controller and agent on the same computer but I decided to shoot an email to apple mailing list and expect some clarification.
    Thanks in advance for the support,
    Umut Tezduyar

    You might get a better response to this in either the [OS X Server forum|http://discussions.apple.com/category.jspa?categoryID=96] or even the [Xgrid area!|http://discussions.apple.com/forum.jspa?forumID=722]

  • I have bought Lightroom 6 from Nanobyte Solutions. When I am setting it up on my Macbook Pro using the supplied CD I get asked for the serial no. which I then provided. I then receive the message "We are unable to validate this serial number for Adobe Lig

    Are all Adobe Products this difficult to install? I should just be able to insert my CD and have the product installed. What is wrong with Adobe, why are they so hard to contact, how are they still in business?

    Hi Glenn,
    Kindly try the steps mentioned in the link below see if you are able to use the serial number.
    https://helpx.adobe.com/creative-suite/kb/error-serial-number-valid-product.html
    You can also try to install Lightroom 6 from the link below.
    Digital photography software | Download free Adobe Photoshop Lightroom CC trial
    To serialize Lightroom CC trial to activate as Lightroom 6:
    https://helpx.adobe.com/lightroom/kb/serialize-lightroom-cc-trial-to-activate-as-lightroom -6.html
    Thanks,
    Atul Saini

  • Oracle.adf.controller.ControllerException: ADFC-00011

    We have installed a cluster with Weblogic PS3. After we startup the wohole cluster, one of the manged serevrs does not start correctly. We get:
    ####<Mar 15, 2011 12:43:01 PM CET> <Error> <HTTP> <l1-mwpsysapp03.nl.rsg> <MWPSYS-MS1> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kern
    el.Default (self-tuning)'> <<WLS Kernel>> <> <f9d1a0b2e4a1ab40:-1243ffee:12eb9509536:-7ffc-0000000000000022> <1300189381875> <BEA-101020> <[S
    ervletContext@28271646[app:MetropoolWebPortalV2 module:/mwp2 path:/mwp2 spec-version:2.5]] Servlet failed with Exception
    oracle.adf.controller.ControllerException: ADFC-00011: The ADF Controller is unable to create an MDSSession. See exception for details.
    at oracle.adfinternal.controller.util.Utils.createAndLogControllerException(Utils.java:208)
    at oracle.adfinternal.controller.application.AdfcAppInitializer.checkForMds(AdfcAppInitializer.java:242)
    at oracle.adfinternal.controller.application.AdfcAppInitializer.initialize(AdfcAppInitializer.java:116)
    at oracle.adfinternal.controller.application.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:53)
    at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl.getFacesContext(FacesContextFactoryImpl.java:64)
    at org.apache.myfaces.trinidad.webapp.ResourceServlet.service(ResourceServlet.java:157) at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227) at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26) at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    We restarted everything, but this does not help. According to the Release Notes of PS3; we have restarted the Adminserver and of course this managed servers. The admin server and managed servers are installed and confiured on their on server.
    Regards,
    Marc
    http://orasoa.blogspot.com

    Apple,
    First thing I'd suggest -> try re-installing jdeveloper in a path without spaces to see if that resolves the problem.
    john

  • 3750G - cannot access GUI on the wireless controller

    I am not able to access the GUI of the wireless controller - If I console into the wireless controller I can ping the management IP address but if I console into the switch I cannot ping the wireless controller.
    I think someone may have screwed up the configuration files - is there somewhere I can download the "factory" configuration from?

    To recovery to factory default, you will need to be on the console of the controller, and reboot. Once you are at the user login prompt you can login with recover-config, this will reset the controller to factory defaults. Prior to doing that, hit the CLI from the console port, and issue the command show interface summary. Take a look at the VLAN assigned to the management interface. Then take a look at the switch, and look at Port-Channel 40, should be there by default fo for the port channel to the controller. Want you want to check for is, the native VLAN on the port-channel. This is a dot1q trunk, so if they are tagged the same on both sides traffic will get dropped. For example, if you are using 10.20.1.2/24 for the management interface and this is VLAN 20, then on the port channel you should have switchport trunk native vlan 20, and on the controllers management interface you would want to set the VLAN for 0, untagged. If you need to change this from the CLI of the controller, first issue the command config wlan disable 1, to shutdown the first wlan, then issue the command config interface vlan management 0, this will set the management interface to be untagged. Once you have done this, try to access the GUI again. Once in, you can make the same change to the ap-manager, if it is on the same VLAn as the management.
    Steve

  • Using the "silicon controller" on the MSI NEO4 PLAT SLI, quick question!

    I have a stable OC w/ my FX55 (261x11) 2.87GHz, but now I want to use the Silicon Controller, and not just my NVIDIA controller. Does the MSI NEO4 PLAT SLI "LOCK" the silicon controller, so since my FSB is OC'ed, I dont want any problems.... By not using all 4 ports on the NVIDIA controller, will this maybe "relax" the nvidia controller, and not let it work so hard, or does it not matter. (overall speed wise)

    Quote from: newls1 on 12-April-05, 08:06:00
    I have a stable OC w/ my FX55 (261x11) 2.87GHz, but now I want to use the Silicon Controller, and not just my NVIDIA controller. Does the MSI NEO4 PLAT SLI "LOCK" the silicon controller, so since my FSB is OC'ed, I dont want any problems.... By not using all 4 ports on the NVIDIA controller, will this maybe "relax" the nvidia controller, and not let it work so hard, or does it not matter. (overall speed wise)
    All of the PCI-E devices are locked, so that includes the SiI3132 controller and the Marvell Gigabit NIC.    One note, it's best to use the SiI3132 "last".    AnandTech did a benchmark of the two controllers, and the onboard nVIDIA controller was faster, although the 3132 PCI-E controller was much faster than the competitions use of PCI based SiI3112 controllers.   If you've already used your nVIDIA controller for 4 SATA or SATA II devices, then by all means use the SiI3132 without overclocking fear.

  • ADF Controller in non-jdeveloper environment

    Hello,
    I have been using adf faces in eclipse environment with the JSF Controller (faces-config.xml). I need now to implement use case with adf task flows and for this purpose I need to configure the adf controller to be used (adfc-config.xml). I copied the adf-config.xml file from a corresponding jdev project, and also the weblogic-application.xml and web.xml fils, but this changes do not have any effect. Does anyone know if there are any other configurations needed to get the adf controller working?
    Thanks

    One of mine weblogic-appliction.xml from inside the EAR looks like
      <?xml version="1.0" encoding="windows-1252" ?>
    - <weblogic-application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/weblogic-application.xsd" xmlns="http://www.bea.com/ns/weblogic/weblogic-application">
    - <xml>
    - <parser-factory>
      <saxparser-factory>oracle.xml.jaxp.JXSAXParserFactory</saxparser-factory>
      <document-builder-factory>oracle.xml.jaxp.JXDocumentBuilderFactory</document-builder-factory>
      <transformer-factory>oracle.xml.jaxp.JXSAXTransformerFactory</transformer-factory>
      </parser-factory>
      </xml>
    - <application-param>
      <param-name>jps.credstore.migration</param-name>
      <param-value>OVERWRITE</param-value>
      </application-param>
    - <application-param>
      <param-name>jps.policystore.migration</param-name>
      <param-value>MERGE</param-value>
      </application-param>
    - <listener>
      <listener-class>oracle.adf.share.weblogic.listeners.ADFApplicationLifecycleListener</listener-class>
      </listener>
    - <listener>
      <listener-class>oracle.mds.lcm.weblogic.WLLifecycleListener</listener-class>
      </listener>
    - <listener>
      <listener-class>oracle.security.jps.wls.listeners.JpsApplicationLifecycleListener</listener-class>
      </listener>
    - <listener>
      <listener-class>oracle.security.jps.wls.listeners.JpsAppVersionLifecycleListener</listener-class>
      </listener>
    - <library-ref>
      <library-name>adf.oracle.domain</library-name>
      <implementation-version>11.1.1.1.0</implementation-version>
      </library-ref>
    - <library-ref>
      <library-name>oracle.jsp.next</library-name>
      </library-ref>
      </weblogic-application>so it's a bit different. If I look into the weblogic-appliction.xml file in jdev it look like the one you posted. Build one EAR from jdev and one from eclipse, unpack both into different folders (unpack the WAR too) and run a diff over the two folders.
    Timo

  • "SOME" devices can resolve the ALIAS (CNAME record) for a device, but not the REAL name (A record) - Why? How do I fix this?

    I'm running the DNS server role on Windows Server 2012 R2 on a physical machine on my home network.
    My AD is configured with a non-registered name - let's say it's "home.acme.ca" and the DNS server is configured to host that zone.  I also configured a 2nd zone in the DNS server called "myinf.acme.ca".  They both run on a physical
    server with an IP of 192.168.1.10
    The DHCP server on my Cable Modem is configured to hand out 192.168.1.10 as the only DNS server to every device on my network.  On my servers (with static IP addresses), 192.168.1.10 is configured as the only DNS server available for them. 
    I took the DNS servers from my Cable Provider and configured a Forwarder on my server to send name resolution requests to them only if my DNS server can not answer the request - basically for any name resolution request that does not end with ".home.acme.ca"
    or ".myinf.acme.ca"
    The "home.acme.ca" zone is populated with 'A' records for all of the physical and virtual servers and PC's on my network.
    The "myfin.acme.ca" zone is populated with 'CNAME' records that point directly to the 'A' record in "home.acme.ca" - for example, I have a serve named s000abc123ww.home.acme.ca with an 'A' record providing an IP address of 192.168.1.20 and
    I created a 'CNAME' (alias) record named 'webserver.myinf.acme.ca' which points to the 'A' record 's000abc123ww.home.acme.ca'
    2 of my 6 machines can resolve the alias but not the real name of the server!
    .10 is the Domain Controller.  All of the other machines (except .98) are members of the home.acme.ca domain.
    I attempted to ping 's000abc123ww.home.acme.ca' AND 'webserver.myinf.acme.ca' on the following 6 computers.  I used the fully qualified name in all cases.
    4 of the below machines are able to resolve BOTH names.  The other 2 can resolve the Alias but not the real name!
    I don't understand how this is possible, but I would like to fix it...!!!  Please help?
    .10 - Server 2012 R2 (Physical) -  Hosts Active Directory and DNS.
    .20 - Server 2012 R2 (Virtual)   -  Runs SQL Server
    .21 - Server 2012 R2 (Virtual)   -  Runs Apache
    .22 - Server 2012 R2 (Virtual)  -   Runs Apache.  This is the device I am trying to ping (s000abc123ww)
    .98 - Windows 7 (Physical)
    .99 - Windows 7  (Virtual)
    .21 (which is configured nearly identically to .20 and .22) can resolve and ping the Alias, but not the real name.
    .98 can also resolve and ping the Alias, but not the real name.
    The rest of the machines can resolve and ping both the alias and the real name.
    All of the Virtual Machines are running under Hyper-V on the .10 physical server.
    All the devices are on the same subnet.
    Thank in advance to anyone who can help me understand and correct this problem!
    Jim

    Hi,
    CNAME resource records are recommended for use in the following scenarios:
    • When a host that is specified in an A resource record in the
    same zone needs to be renamed
    • When a generic name for a well-known server, such as www, must resolve to a group of individual computers (each with individual A resource records) that provide the same
    service, for example, a group of redundant Web servers
    Therefore please try to create your CNNAM record in the same zone and try again.
    The related KB:
    Adding, Changing, and Deleting Resource Records
    http://technet.microsoft.com/en-us/library/cc779020(v=ws.10).aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Oracle forms error frm-40508: unable to insert record

    Hi Everyone,
    I have been having this problem for 2 weeks and I realize that I spent alot of time I couldn't get to fix the problem so I need your help.
    Here is my situation. First, I installed Oracle 10g in my laptop with Oracle forms10g and Oracle forms904i. I had oracle_home folder as the top level structure then I have inside oracle folder, Oracle10g in it own folder, Oracle9i release2 in it own folder. then I created the user account "student" using the system/manager account finally I granted privilleges as follow:
    GRANT ALL PRIVILLEGES
    TO student
    WITH ADMIN OPTION;
    this was working perfecty I didn't need to grant objects privilleges such as
    GRANT INSERT, UPDATE, DELETE
    ON customers
    TO student;
    Then I created a form Application prototype and it works well I could Insert, Update and Delete but now I am creating an e-commerce application prototype I created an new account using a system/manager account as I did previously and grant all privilleges. When I try to grant object privileges the message that I receive says ORA-01919 : role 'INSERT' doesn't exist
    When I run the application I am unable to insert the record through forms I get message frm-40508 Orcle error: unable to insert record.
    I deinstall the Oracle and clean my laptop and did a clean installation using only Oracle Server10g and Oracle Developer10g I am getting the same message frm-40508.
    Can someone please help me on this. the insert command that I am running is a simple one such as
    INSERT INTO customers
    VALUES( block_name.field_name, ....);
    COMMIT;

    frm 40735:When button pressed trigger raised unhanded exceptionplease help me to solve this>
    The FRM-40735 is a generic Unhandled Exception. Please post the full error message so we can better help you.
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Analogue of the adf.error.warn

    Hi All,
    Is there any analogue of the adf.error.warn, that used in groovy expression, but for calling from java validation method of EO, and with an opportunity to set custom message text(not message id)?
    Thanks!

    I have solved my issue.
    If you are interested, below the method in which a warning generated when checking the value of the field.
        public boolean validateSal(oracle.jbo.domain.Number sal) {
            if (sal.compareTo(10000) == 1){
                AttrValException ex = new AttrValException( AttrValException.TYP_ENTITY_OBJECT
                                                           ,"Salary is too big!!"
                                                           ,null
                                                           ,getDefinitionObject().getFullName()
                                                           ,"Sal"
                ex.setSeverity(JboException.SEVERITY_WARNING);
                this.getDBTransaction().getRootApplicationModule().addWarning(ex);
            return true;
        }

  • ADF Controller State API

    Hello
    Is there any way to get the Controller state for the current page using Java Code.
    I am using document.location.search in java script, wonder if I can access the same using Some adf API.
    http://xxxx/xxxxxt/faces/login.jspx?*adf.ctrl-state=937739223*
    Thanks.

    My actual requirement to get the Controller state.
    I have page A which is a bounded task flow.When page A is closed i call a javascript to return the TaskFlow and pass document.location.search which will pass the controller state.
    But the problem comes when i open page B (another bounded Task Flow) from Page A and do return Task FLow from page B.
    It navigates back to Page A but then replaces the URL with new adf Controller State. When i actually execute Javascript to execute return Task FLow it gets appended with new Controller state.
    So i need a way to get the ADF Controller state through API instead of URL.

Maybe you are looking for

  • RecordStore??

    I have a program that works as text entry system, i created it using canvas. It just like the normal typing program (not T9 dictionary), except it store words that is not existed in the RecordStore and use it as a suggestion, the next time user type

  • ORA-1839 date not validfor month

    I am getting ORA-1839 date not valid for month specified for fallowing query select      message_id,value_dt from tms_view_fx1 where     TRUNC(to_date('20061124','YYYYMMDD') - TO_DATE(value_dt,'YYYYMMDD')) >=1 what will be the solution please help

  • Dock + mission control

    When using different desktops in mission control, I want to be able to hide the dock for a certain desktop. I have this set up as a remote connection to PC and thus the dock just gets in the way. Can this be done on a desktop by desktop basis (hide d

  • IPad Videos-List format?

    Using iPad-2 with iOS 5.1.1.   I have created playlists in iTunes for my home movies, and synced these playlists to iPad. When Videos app is open on iPad, the movies appear as icons in grid view (alphabetical order). I can't find a Playlist List form

  • 11g conversion server

    Does anyone know if you can use a 11g conversion server and 11g DAM with a 10g content server?