ADF on WebLogic 12c 12.1.2 requires a database

hi
Some recent forum messages suggest that ADF on WebLogic 12c 12.1.2 requires a database :
at https://forums.oracle.com/message/11104301#11104301
"BrianFry wrote:
... The JRF domain template is the one that contains ADF libraries, so to configure standalone WLS with ADF, you need to use the JRF template. As you've discovered, the JRF template has a dependency in 12.1.2 on the Coherence template, so you get that one too. In 12.1.2, the WLS infrastructure with JRF and Coherence also requires a database connection and to have RCU installed. You should run RCU prior to running the config wizard. ..."
and also at https://forums.oracle.com/message/11105901#11105901
The blog post "Setting up a standalone WebLogic 12c install for ADF Without a Database" by Duncan Mills
at https://blogs.oracle.com/groundside/entry/setting_up_a_standalone_weblogic
explicitly says "... I stress this is not a supported configuration for production usage ...".
The same blog post also includes some explanation :
"... Now this connection has a real purpose, the Oracle Platform security infrastructure for 12c needs to store it's information within a proper database so as to correctly (and supportably) manage itself across multiple servers in a cluster. ..."
Has this requirement (the required database) been documented somewhere?
How many database connections are expected to be used by this "feature" (per managed-server, per user-session, per ...)?
What about this requirement if you don't have a WebLogic Server cluster (but maybe some managed-servers behind a load-balancer)?
many thanks
Jan Vervecken

subscribed.

Similar Messages

  • Do we require to install ADF on weblogic for ADF applications

    Hi All,
    For deploying and running ADF applications do we require to install ADF on weblogic? Can only weblogic installation domain be used to deploy and run ADF applications or we have to install ADF on top of weblogic installation for deplying and running ADF applications?
    Please guide!!

    Roshni,
    You may have to install Application Development Runtime.
    The detailed instructions are available here.. http://www.oracle.com/webfolder/technetwork/jdeveloper/howto/11114/managedserver/wlsadfms.html

  • Strange ADF components behavior when deploy to weblogic 12C

    Hi,
    I'm developing a EJB/JavaEE through Jdeveloper with ADF faces. When I deploy the application to Embedded Weblogic 12C everything seems to be ok.
    However, when I deploy on a Production Environment(weblogic server 12c, jdk 1.7u45 and ADF runtime 12c[JRF already installed] running on Oracle Linux 6) some components do not work properly after a PPR(af:button, af:selectOneChoice, etc).
    My development config is Jdeveloper 12C, running application with embedded Weblogic 12C, jdk1.7.0u45 running windows 8.
    It's hard to find out what is wrong because there's no meaningful messages in Logs. All I find in log after components stop to work is:
    <12/11/2013 08h53min43s BRT> <Warning> <javax.enterprise.resource.webcontainer.jsf.application> <jsf.viewhandler.requestpath.recursion> <JSF1015: O caminho da solicitação '/faces/bct/candidato/candidatoCrud.jsf' começa com uma ou mais ocorrências do mapeamento do prefixo do FacesServlet '/faces'.>
    <12/11/2013 08h54min10s BRT> <Info> <Health> <BEA-310002> <17% of the total memory in the server is free.>
    <12/11/2013 08h54min13s BRT> <Notice> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:13.795--ServerSession(29230081)--EclipseLink, version: Eclipse Persistence Services - 2.4.2.v20130514-5956486>
    <12/11/2013 08h54min13s BRT> <Notice> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:13.796--ServerSession(29230081)--Server: 12.1.2.0.0>
    <12/11/2013 08h54min13s BRT> <Info> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:13.799--ServerSession(29230081)--Connection(19752361)--connecting(DatabaseLogin(
      platform=>Oracle11Platform
      user name=> ""
      connector=>JNDIConnector datasource name=>jdbc/ITConsultingERPConnDS
    ))>
    <12/11/2013 08h54min13s BRT> <Info> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:13.975--ServerSession(29230081)--Connection(18498814)--Connected: jdbc:oracle:thin:@//192.168.0.30:1521/erphomo
      User: ERPHOMO
      Database: Oracle  Version: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
      Driver: Oracle JDBC driver  Version: 11.2.0.3.0>
    <12/11/2013 08h54min13s BRT> <Info> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:13.976--ServerSession(29230081)--Connection(12218956)--connecting(DatabaseLogin(
      platform=>Oracle11Platform
      user name=> ""
      connector=>JNDIConnector datasource name=>jdbc/ITConsultingERPConnDS
    ))>
    <12/11/2013 08h54min13s BRT> <Info> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:13.976--ServerSession(29230081)--Connection(28954182)--Connected: jdbc:oracle:thin:@//192.168.0.30:1521/erphomo
      User: ERPHOMO
      Database: Oracle  Version: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
      Driver: Oracle JDBC driver  Version: 11.2.0.3.0>
    <12/11/2013 08h54min14s BRT> <Notice> <EclipseLink> <BEA-2005000> <2013-11-12 08:54:14.31--ServerSession(29230081)--ERPItconsultingfile:/C:/Users/Raphael/AppData/Roaming/JDeveloper/system12.1.2.0.40.66.68/DefaultDomain/servers/DefaultServer/tmp/_WL_user/ERPItconsulting/9bxc8o/war/WEB-INF/lib/_wl_cls_gen.jar_Model login successful>

    Hi,
    I debug the application, I found my @ViewScoped ManagedBeans, they're recreated after you click a button or select a item in combobox
    Here is a piece of code:
        @PostConstruct
        public void resolveEntity() {
            Object sEntity = FacesContext.getCurrentInstance().getExternalContext().getSessionMap().get("entity");
            entity = (BctTbOportunidade) sEntity;
             FacesContext.getCurrentInstance().getExternalContext().getSessionMap().remove("entity");
            if (entity == null) {
                entity = new BctTbOportunidade();
    I use @postConstruct to get a entity from another page in sessionMap(I set a item from a table and use this method to modify a entity in a other page).
    When I click a button or select a item in combobox in same page @PostConstruct method is called but values are lost. No Exceptions are thrown by server.
    I found a artice written by BalluC that some versions of jsf 2.1 has this behavior The BalusC Code: The benefits and pitfalls of @ViewScoped
    I already configured my web.xml to set false javax.faces.PARTIAL_STATE_SAVING 
    But this behavior continues.
    The jsf version deployed in my weblogic 12c is 2.1.7.

  • Programmatic JAAS Authentication for Web/EJBs on WebLogic 12c

    Technologies: JSPs, Servlets, EJBs (version 2.1)
    Database: Oracle 11g Database
    Application Server: WebLogic 12c
    I am working on a project where the users and roles are stored on an Oracle database (as database users with roles granted to them). We therefore need a custom authentication method (the default WebLogic UsernamePasswordLoginModule won't cut it). We created a DatabaseUserLoginModule prior to migrating from a 10g enviroment to 11g/12c.
    public class DatabaseUserLoginModule implements LoginModule
         public boolean login() throws LoginException
              Connection conn = null;
              try
                   s
                   InitialContext ic = new InitialContext();
                   DataSource ds = (DataSource)ic.lookup(jndiDSName);
                   conn = ds.getConnection(username, password);
                   List dbauth = new ArrayList();
                   String rolesSQL = "SELECT GRANTED_ROLE FROM USER_ROLE_PRIVS UNION SELECT GRANTED_ROLE FROM ROLE_ROLE_PRIVS";
                   Statement rolesStmt = conn.createStatement();
                   ResultSet results = rolesStmt.executeQuery(rolesSQL);
                   dbauth.add(new DBUserPrincipal(username));
                   while (results.next())
                        String roleName = results.getString("GRANTED_ROLE");
                        DBRolePrincipal dbRolePrincipal = new DBRolePrincipal(roleName);
                        dbauth.add(dbRolePrincipal);
                   authPrincipals = (Principal[])dbauth.toArray(new Principal[dbauth.size()]);
              catch (Exception e)
                   throw new LoginExcpetion(e.getMessage());
              finally
                   try
                        conn.close();
                   catch (Exception e)
                        throw new LoginExcpetion(e.getMessage());
              return true;
         public boolean commit() throws LoginException
              for (int i = 0; i < authPrincipals.length; i++)
                   subject.getPrincipals().add(authPrincipals[i]);
              return true;
    The getConnection() method on the datasource works with a database username and password thanks to the new "Use Database Credentials" option for WebLogic datasources and granting CONNECT THROUGH (datasource user) privilege for each user.
    We have configured a JAAS context to use this login module by creating a jaas.conf file and setting JAVA_OPTIONS to include "-Djava.security.auth.login.config=%DOMAIN_HOME%\bin\jaas.conf". The file looks like this:
    Test {
    xxxx.controller.security.loginmodule.DatabaseUserLoginModule required;
    When the user logs in, the application uses a LoginContext object to perform authentication:
        PassiveCallbackHandler cbh = new PassiveCallbackHandler(username, password);
        lc = new LoginContext("Test", cbh);
        lc.login();
    This successfully uses the DatabaseUserLoginModule to authenticate the user and populate the Subject with the appropriate roles.
    The next step is to use an InitialContext to lookup an EJB and call a method. We have permissions in ejb-jar.xml for each method, based on database roles:
    <method-permission>
         <role-name>XXXX_USER</role-name>
         <method>
              <ejb-name>AccessControl</ejb-name>
              <method-intf>Home</method-intf>
             <method-name>create</method-name>
             <method-params>
                   <method-param>java.lang.String</method-param>
             </method-params>
         </method>
         <method>
             <ejb-name>AccessControl</ejb-name>
             <method-intf>Remote</method-intf>
             <method-name>remove</method-name>
         </method>
         <method>
             <ejb-name>AccessControl</ejb-name>
             <method-intf>Remote</method-intf>
             <method-name>processFailedLogin</method-name>
             <method-params>
                   <method-param>java.lang.String</method-param>
             </method-params>
         </method>
         <method>
             <ejb-name>AccessControl</ejb-name>
             <method-intf>Remote</method-intf>
             <method-name>processSuccessfulLogin</method-name>
             <method-params>
                   <method-param>java.lang.String</method-param>
             </method-params>
         </method>
    </method-permission>
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
    env.put(Context.PROVIDER_URL, "t3://localhost:7101");
    env.put(Context.SECURITY_PRINCIPAL, username);
    env.put(Context.SECURITY_CREDENTIALS, password);
    InitialContext ic = new InitialContext(env);
    ic.lookup("EJBName");
    The problem is that when the InitialContext is initialised I get the following error:
    javax.naming.AuthenticationException [Root exception is javax.security.auth.login.FailedLoginException: [Security:090304]Authentication Failed: User XXXX_USER] javax.security.auth.login.FailedLoginException: [Security:090302]Authentication Failed: User XXXX_USER denied]
    It looks like the InitialContext is attempting to authenticate the user through WebLogic's default authenticator. How do I tell it to use the JAAS context (with the custom login module) I have already set up?
    If I use the default constructor (new InitialContext()) then I get a different error when calling an EJB method:
    <java.rmi.AccessException: [EJB:010160]Security violation: User <anonymous> has insufficient permission to access EJB type=<ejb>, application=TestApplication, module=TestEJB.jar, ejb=AccessControl, method=processSuccessfulLogin, methodInterface=Remote, signature={java.lang.String}.>
    In this case, how do I propagate the Subject after using LoginContext so that the user calling EJB methods is not anonymous?

    This is the JDev & ADF forum. Your question is better asked in one of the WebLogic forums!
    Timo

  • Oracle weblogic 12c problem

    Hello,
    After you install the 32bit version of Oracle WebLogic 12c , jdevstudio11115install (Windows 7 32 bit platform) . These actions come after the installation of the domain ADF 's and then completed the installation.
    I receive the following error when I run startWebLogic.cmd. ( What is the solution. )
    WARNING: Opening of file based farm keystore failed.
    oracle.security.jps.service.keystore.KeyStoreServiceException: JPS-06514: Openin
    g of file based farm keystore failed.
    at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.openKe
    yStore(FileKeyStoreManager.java:351)
    at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.do
    Init(FileKeyStoreServiceImpl.java:101)
    at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<i
    nit>(FileKeyStoreServiceImpl.java:73)
    at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<i
    nit>(FileKeyStoreServiceImpl.java:63)
    at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(Ke
    yStoreProvider.java:157)
    at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(Ke
    yStoreProvider.java:64)
    at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.findServ
    iceInstance(ContextFactoryImpl.java:139)
    at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getConte
    xt(ContextFactoryImpl.java:170)
    at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getConte
    xt(ContextFactoryImpl.java:191)
    at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getCo
    ntext(JpsContextFactoryImpl.java:132)
    at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getCo
    ntext(JpsContextFactoryImpl.java:127)
    at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.
    java:850)
    at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.
    java:844)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyS
    tore(PolicyUtil.java:844)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<
    init>(PolicyDelegationController.java:291)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<
    init>(PolicyDelegationController.java:284)
    at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(Ja
    vaPolicyProvider.java:270)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at java.lang.Class.newInstance0(Class.java:355)
    at java.lang.Class.newInstance(Class.java:308)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.lo
    adOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1343)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.in
    itialize(CommonSecurityServiceManagerDelegateImpl.java:1022)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityS
    erviceManager.java:873)
    at weblogic.security.SecurityService.start(SecurityService.java:148)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    <Dec 12, 2011 11:43:27 AM EET> <Error> <Security> <BEA-090892> <The loading of O
    PSS java security policy provider failed due to exception, see the exception sta
    ck trace or the server log file for root cause. If still see no obvious cause, e
    nable the debug flag -Djava.security.debug=jpspolicy to get more information. Er
    ror message: oracle.security.jps.JpsException: [PolicyUtil] Exception while gett
    ing default policy Provider>
    <Dec 12, 2011 11:43:27 AM EET> <Critical> <WebLogicServer> <BEA-000386> <Server
    subsystem failed. Reason: weblogic.security.SecurityInitializationException: The
    loading of OPSS java security policy provider failed due to exception, see the
    exception stack trace or the server log file for root cause. If still see no obv
    ious cause, enable the debug flag -Djava.security.debug=jpspolicy to get more in
    formation. Error message: oracle.security.jps.JpsException: [PolicyUtil] Excepti
    on while getting default policy Provider
    weblogic.security.SecurityInitializationException: The loading of OPSS java secu
    rity policy provider failed due to exception, see the exception stack trace or t
    he server log file for root cause. If still see no obvious cause, enable the deb
    ug flag -Djava.security.debug=jpspolicy to get more information. Error message:
    oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default p
    olicy Provider
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.lo
    adOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1402)
    at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.in
    itialize(CommonSecurityServiceManagerDelegateImpl.java:1022)
    at weblogic.security.service.SecurityServiceManager.initialize(SecurityS
    erviceManager.java:873)
    at weblogic.security.SecurityService.start(SecurityService.java:148)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    Truncated. see log file for complete stacktrace
    Caused By: oracle.security.jps.JpsRuntimeException: oracle.security.jps.JpsExcep
    tion: [PolicyUtil] Exception while getting default policy Provider
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<
    init>(PolicyDelegationController.java:293)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<
    init>(PolicyDelegationController.java:284)
    at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(Ja
    vaPolicyProvider.java:270)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    Truncated. see log file for complete stacktrace
    Caused By: oracle.security.jps.JpsException: [PolicyUtil] Exception while gettin
    g default policy Provider
    at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyS
    tore(PolicyUtil.java:899)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<
    init>(PolicyDelegationController.java:291)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<
    init>(PolicyDelegationController.java:284)
    at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(Ja
    vaPolicyProvider.java:270)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    Truncated. see log file for complete stacktrace
    Caused By: java.security.PrivilegedActionException: oracle.security.jps.JpsExcep
    tion: [PolicyUtil] Unable to obtain default JPS Context!
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyS
    tore(PolicyUtil.java:844)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<
    init>(PolicyDelegationController.java:291)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<
    init>(PolicyDelegationController.java:284)
    at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(Ja
    vaPolicyProvider.java:270)
    Truncated. see log file for complete stacktrace
    Caused By: oracle.security.jps.JpsException: [PolicyUtil] Unable to obtain defau
    lt JPS Context!
    at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.
    java:860)
    at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.
    java:844)
    at java.security.AccessController.doPrivileged(Native Method)
    at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyS
    tore(PolicyUtil.java:844)
    at oracle.security.jps.internal.policystore.PolicyDelegationController.<
    init>(PolicyDelegationController.java:291)
    Truncated. see log file for complete stacktrace
    Caused By: oracle.security.jps.service.keystore.KeyStoreServiceException: JPS-06
    514: Opening of file based farm keystore failed.
    at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.openKe
    yStore(FileKeyStoreManager.java:351)
    at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.do
    Init(FileKeyStoreServiceImpl.java:101)
    at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<i
    nit>(FileKeyStoreServiceImpl.java:73)
    at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<i
    nit>(FileKeyStoreServiceImpl.java:63)
    at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(Ke
    yStoreProvider.java:157)
    Truncated. see log file for complete stacktrace
    >
    <Dec 12, 2011 11:43:30 AM EET> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to FAILED.>
    <Dec 12, 2011 11:43:30 AM EET> <Error> <WebLogicServer> <BEA-000383> <A critical
    service failed. The server will shut itself down.>
    <Dec 12, 2011 11:43:33 AM EET> <Notice> <WebLogicServer> <BEA-000365> <Server st
    ate changed to FORCE_SHUTTING_DOWN.>
    Note: JDeveloper 11.1.2.1 and 11.1.1.5.0 install but it did not work.
    C:\oracle\Middleware\user_projects\domains\base_domain\config\fmwconfig\bootstrap\cwallet.sso I have full authority, but did not work folder. (permissions full controll)
    Edited by: 889612 on 12.Ara.2011 07:06

    I am having the exact same issue with Weblogic 12c on Windows Server 2003 SP1 on Intel Itanium processor with Java SE 1.6u29 and JDeveloper 11.1.2.1.0.
    Please advise!
    Thanks in advance.
    P.S.
    Unfortunately, problem also confirmed on Windows 7 64bit and JRockit-jdk1.6.0_29-R28.2.0-4.1.0 and JDeveloper 11.1.2.1.0.
    LOG
    WARNING: Failed to save farm keystore. Reason {0}
    Dec 12, 2011 10:51:29 PM oracle.security.jps.internal.keystore.file.FileKeyStore
    Manager createKeyStore
    WARNING: Failed to save farm keystore. Reason {0}
    oracle.security.jps.service.keystore.KeyStoreServiceException: JPS-06513: Failed to save farm keystore. Reason at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.create KeyStore(FileKeyStoreManager.java:309)
    Edited by: rade.radenkovic on Dec 12, 2011 1:53 PM

  • CDI not working in Weblogic 12c Embedded EJB Container?

    Hi,
    we are trying to use embedded ejb container from weblogic 12c (12.1.2.0) for our junit tests.
    As our application is running in weblogic 12c, we would like to run our tests  in same environment.
    But we encountered two problems, which brings me to the conclusion that CDI is not working correctly in embedded ejb container.
    1. CDI Interceptor are not working
    2. CDI Objects (@Inject) are null
    I can provide an error message, which I think is thrown, when container tries to access the interceptor, because if I delete the interceptors the error message gets no longer thrown:
    Caused by: java.lang.UnsupportedOperationException: authenticatedLookup is unavailable for BasicNamingNode types
          at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:234)
          at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:463)
          at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:274)
          at weblogic.jndi.internal.ServerNamingNode_12120_WLStub.authenticatedLookup(UnknownSource)
          at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:483)
    We just want to know, if CDI is not working in embedded ejb container, so we can go ahead and look for another solution for our junit tests.
    Stefan

    Hi There,
    If you have access to Oracle Support Portal, please go through below Knowledge Articles which can provide more information on your requirement:
    Sample Application Using Timer API (CommonJ) to configure Timer Based tasks in Oracle WebLogic Cluster 10.3.X Cluster (Doc ID 1614886.1)
    Clustered EJB Timer - The minimum time for recurring execution of a timer (Doc ID 1931091.1)
    Let us know if it helps.
    Cheers,
    Naveen

  • Weblogic 12c exam

    Does any one know answers for the below questions ??
    Question 1: Which four of the following NOT included in Weblogic lighter version (WLS Zip Distribution for only development)
    A. JVM
    B. Webserver plug-in
    C. Samples
    D. Smart update
    E. Deployment plan
    Question 2: A WebLogic team is developing an enterprise application from their desktop WebLogic environment. All development systems are connected to the same eight data sources for testing. As a WebLogic Administrator supporting this team, which two actions should you perform to free the developers from creating and configuring all the data sources on their desktop WebLogic environment?
    A. Provide the team with a WebLogic domain template with the testing data sources configured.
    B. Provide the development team with a preconfigured domain archive file.
    C. Provide the development team with the [datasource] -jdbc.xml file to overwrite their local copy.
    D. Create the data sources on behalf each of the developer.
    E. Provide the development team with WLST scripts to create and configure the testing data sources.
    Question 3: What are the three steps you should take to tune a JDBC Connection pool in WebLogic from the initial settings in a production environment?
    A. Ensure the maximum size is increased to an appropriate setting.
    B. Set the minimum and maximum size of the connection pool to the same value.
    C. Increase the statement cache size.
    D. Add more heap to the JVM.
    E. Add more nodes to the cluster.
    Question 4: A customer needs to ensure that the number of threads servicing an application does not exceed the number of database connections available to the application. What step must you take to address this situation?
    A. Configure a Max Threads Constraint and add your application to the list of applications for the Constraint.
    B. Configure a Work Manager with a Maximum Threads Constraint tied to the Connection Pool and configuration your application to use the Work Manager.
    C. Configure a Work Manager with a Minimum Threads Constraint tied to the Connection Pool and configure your application to use the Work Manager.
    D. Configure a global MaxThreads constraint and target it to the server or clusters where your application is deployed.
    E. Configure the startup parameter "-Dwls-maxThreads" to be the same as the number of database connections configured.
    Question 5: In a Java EE messaging application, one MDB is consuming a lot of memory at high traffic. What configuration should you use to prevent possible out-of-memory error at high traffic and at the same time not losing messages?
    A. Configure a Work Manager for the MDB with a Maximum Thread Constraint.
    B. Configure a Work Manager for the MDB with a Minimum Thread Constraint.
    C. Configure a Work Manager for the MDB with a Maximum Thread Constraint and a Capacity Constraint.
    D. Configure a Work Manager for the MDB with a Minimum Thread Constraint and a Capacity Constraint.
    E. Configure a Work Manager for the MDB with both a Maximum Thread Constraint and Minimum Thread Constraint.
    Question 6: An airline is building a booking system for its premium and general customers. The goal is to ensure premium members are given higher access priority when user traffic is high.
    What configuration will achieve this goal?
    A. Configure a Work Manager for premium users with a Minimum Thread Constraint.
    B. Configure a Work Manager for premium users with a higher fair-share-request-class.
    C. Configure a Work Manager for premium users with a higher response-time-request-class.
    D. Configure a Work Manager general users with a Maximum Thread Constraint.
    E. Configure a Work Manager for premium users with a custom request-class.
    Question 7: Which WebLogic optimization allows one non-XA resource to participate in a distributed transaction?
    A. enabling Pinned to Thread
    B. enabling Logging Last Resource
    C. increasing the Statement cache size
    D. setting the statement cache type to LRU
    E. setting the initial and maximum capacity to the same number
    Question 8: You deploy two different applications to the WebLogic container. One application use Xerces parser version A and the other application uses Xerces parser version B. Both these versions are different from the parser version that the WebLogic server uses internally. You want to use the Filtering Classloader feature to solve this problem. What action would you take to generate proper filtering Classloader entries?
    A. Modify the applications to use the same version that WebLogic uses internally.
    B. Based on available examples of Filtering Classloader entries, try to modify get the proper entries.
    C. Deploy and use the Classloader Analyzing Tool to resolve all conflicts with conflicting libraries. This tool will generate all proper entries.
    D. Split the application into separate WebLogic containers and use different WLS versions of Xerces but identical that applications require.
    E. Look for a WebLogic release that uses the same version of Xerces that the applications use.
    Question 9: Identify the two options that can be used to patch WebLogic Server without Incurring application downtime.
    A. automated process using the Admin Server
    B. automated using JDeveloper
    C. manual process with or without Smart Update
    D. scripted with WLST
    E. automated process using Enterprise Manager 12c
    Question 10: WebLogic 12c, the Maven plug-in has been enhanced with which Maven goal?
    A. wls:unzip, wls:install-domain, wls:start-domain, wls:wlst, wls:appc
    B. wls:install, wls:install-domain, wls:start-domain, wls:wlst, wls:appc
    C. wls:unzip, wls:create-domain, wls:start-domain, wls:wlst, wls:appc
    D. wls:install, wls:create-domain, wls:start-server, wls:wlst, wls:appc:

    Hello user7776, I am also looking for answers to the above Questions. Can you please send me the correct answers if you got the answers already? I really appreciate your response. Thank you sir.
    -VCS

  • Oracle SOA suite 11g(11.1.1.6.0) is compatible with Weblogic 12c (12.1.1)

    Hi All,
    Does the Oracle SOA suite 11g(11.1.1.6.0) is compatible with Oracle Weblogic 12c (12.1.1). Please help to advise on this.
    The requirement is : Oracle SOA suite 11g (11.1.1.6.0)
    Oracle Weblogic 12c (12.1.1)
    OSB 11g Release 1 (11.1.1.6.0)
    Thanks.

    No, it is not. Please use Weblogic 10.3.6 for SOA 11.1.1.6.0 and OSB 11.1.1.6.0
    You may refer to the certification matrix available here -
    http://www.oracle.com/technetwork/middleware/downloads/fmw-11gr1certmatrix.xls
    http://www.oracle.com/technetwork/middleware/ias/downloads/fusion-certification-100350.html
    Regards,
    Anuj
    Edited by: Anuj Dwivedi on Mar 19, 2013 1:30 PM

  • Install weblogic  12c

    can i install adf 11.1.1.6 on weblogic 12c ?
    then , upgrade adf 11.1.1.6 up to 11.1.2.3 (JDeveloper) ?
    and there is any guide to install weblogic 12c and adf 11.1.1.6 ??
    can any body tell me , it 's urgent

    AFAIK, ADF is not currently supported in WLS 12.1.1 version.

  • WebLogic 12c and OSGi bundles ClassCastException error

    When I deploy an OSGi bundle to WebLogic 12c there are no errors. However, when I try and access my application I get the following error:
    java.lang.ClassCastException: com.sun.faces.taglib.jsf_core.ViewTag cannot be cast to javax.servlet.jsp.tagext.Tag
    I suspect that WebLogic 12c is loading different versions of the JSF than what I have in my OSGi bundle but I am unable to confirm (I tried to deploy the wls-cat tool but I continue to get 503 errors even after a server restart).
    My bundle currently uses JSF 1.1. After reading various forum posts, I have done the following but have not had any success:
    1. Followed the steps in Re: jsf 1.2 on weblogic 12c (i.e. deploying the jsf-1.2.war, modified my weblogic.xml accordingly in my war and then deployed, etc)
    2. Checked all of my manifest entries (which were correct) and even tried to set the required-bundles to my own JSF in the WEB-INF/lib directories
    Are there any instructions/settings for having OSGi bundles work within WebLogic 12c? Note that my OSGi bundle works correctly in WebLogic 11.
    Side question..I read that even though WebLogic 12c ships JSF 1.2 for backwards compatibility, it is deprecated for this release (as per http://docs.oracle.com/cd/E24329_01/web.1211/e21049/configurejsfandjtsl.htm#i163099). Does that mean that even if I get my bundle deployed/working that if there are other errors/issues in the future then I would not be supported? I am just trying to confirm so that I can make a decision about upgrading my JSF.
    Thanks :)

    gday -
    WLS 12c (12.1.1) doesn't recognize OSGi bundles -- if you have a library you wish to use with your web application, then it needs to conform the packaging requirements for the Java EE deployment model you are using.
    If you are getting conflicts with a WLS supplied library (JSF in this case it appears) then you need to specify a filtering classloader definition in a weblogic deployment descriptor so that the web/app classloader is instructed to ignore a specified set of packages/resources from the parent loaders and load them locally.
    By way of an example, assume you have a web application in which you are bundling JSF 1.2 and you want to use this in place of the JSF 2.1 API/impl that is provided by WLS 12.1.1. In that case, you'd create a WEB-INF/weblogic.xml file and provide the following settings within in.
    <weblogic-web-app xmlns="http://xmlns.oracle.com/weblogic/weblogic-web-app">
            <container-descriptor>
                        <prefer-application-packages>
                            <package-name>javax.faces.*</package-name>
                            <package-name>com.sun.faces.*</package-name>
                            <package-name>com.bea.faces.*</package-name>
                        </prefer-application-packages>
                        <prefer-application-resources>
                            <resource-name>javax.faces.*</resource-name>
                            <resource-name>com.sun.faces.*</resource-name>
                            <resource-name>com.bea.faces.*</resource-name>
                            <resource-name>META-INF/services/javax.servlet.ServletContainerInitializer</resource-name>
                        </prefer-application-resources>
            </container-descriptor>
    </weblogic-web-app>Deploying that with your application, in which you have supplied the JSF 1.2 API and implementation jars in the standard WEB-INF/lib directory will direct WLS to use those locally supplied libraries instead of its JSF API/implementation.
    Hope that helps.
    -steve-

  • Deployment is failing in WebLogic 12c

    Hi ,
    I am using Jdeveloper 12.1.2(on windows system) and WebLogic 12.1.2 (server is on linux host as a external stand alone server). But while deploying i am getting below error can any one suggest me please.
    [12:54:23 PM] ----  Deployment started.  ----
    [12:54:23 PM] Target platform is  (Weblogic 12.x).
    [12:54:39 PM] Retrieving existing application information
    [12:54:40 PM] Running dependency analysis...
    [12:54:40 PM] Building...
    [12:54:46 PM] Deploying 2 profiles...
    [12:54:47 PM] Wrote Web Application Module to C:\JDeveloper\mywork\enabledisable-128475\enableDisable\ViewController\deploy\EnableDisable_Raghbasa.war
    [12:54:47 PM] Wrote Enterprise Application Module to C:\JDeveloper\mywork\enabledisable-128475\enableDisable\deploy\enabledisable_raghbasa_remote.ear
    [12:54:49 PM] Deploying Application...
    [12:55:17 PM] [Deployer:149193]Operation "deploy" on application "enabledisable_raghbasa_remote" has failed on "AdminServer".
    [12:55:17 PM] [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application enabledisable_raghbasa_remote on AdminServer.: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: adf.oracle.domain, Implementation-Version: 11.1.1.1.0, exact-match: false].
    [12:55:19 PM] weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: adf.oracle.domain, Implementation-Version: 11.1.1.1.0, exact-match: false]
    [12:55:20 PM] Deployment cancelled.
    [12:55:20 PM] ----  Deployment incomplete  ----.
    [12:55:20 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)
    Thanks
    Raghav

    Thanks for reply yes i installed runtime by following the below link . please correct me any missing steps or to follow any other configuration ?
    http://www.oracle-base.com/articles/12c/weblogic-12c-adf-application-development-runtime-installation-on-oracle-linux.php
    This is only first step, you will need to follow other steps:
    ORACLE-BASE - WebLogic Server 12cR2 : ADF Application Development Runtime - Repository Configuration Utility (RCU)
    ORACLE-BASE - WebLogic Server 12cR2 : Create, Extend and Remove Domains
    But instead of this, you can read official documentation:
    Oracle&amp;reg; Fusion Middleware Installing and Configuring the Oracle Fusion Middleware Infrastructure 12c (12.1.2) - …
    Dario

  • Deployment fails in Weblogic 12c

    Hi ,
    I am using web logic server stand alone 12c on linux . And when i try to deploy web app below error is coming , any suggestions.
    [01:45:52 PM] weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: adf.oracle.domain, Implementation-Version: 11.1.1.1.0, exact-match: false]
    [01:45:53 PM] Deployment cancelled.
    [01:45:53 PM] ----  Deployment incomplete  ----.
    [01:45:53 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)
    Thanks
    Raghav

    Here is some useful information from WLS 12C guide
    Development features
    WebLogic 12c has support for many IDEs. WebLogic already supports JDeveloper
    11.1.1.5, but will come out with 11.1.1.6 later on. However, anyone developing
    applications using WLS 11.1.1.5 can deploy them to WLS 12c.

  • Weblogic 12c exam2

    Hi all, Does exactly know the answer to the following question.? Thanks
    Q. A customer has a development environment that uses the auto-deployment feature. The customer
    claims the application is not redeployed even if the new version is copied to an application
    subdirectory. Which two parameters of the configuration should you check?
    A. Checkif archive file in the compressed version has a new REDEPLOYfile.
    B. If serverwas started in the Development Mode. Auto-deploymentisnot supported in production
    mode.
    C. If the application includes anEJB 3module. Auto-deployment is not supported forEJBs.
    D. You changeJVM from HotSpot to JRockit. Auto-deployment is not supportedin HotSpot auto
    deployment.
    E. If the domain is a single-server domain. Auto-deployment is not supported in
    multiserverdomains.
    Q. A customer has a critical, performance-sensitive web application that connects to a multimode
    Oracle RAC database. Which feature of WebLogic can provide signification benefit?
    A. The Web Session Affinity feature of Active GridLink for RAC.
    B. WebLogic Clustering
    C. The Transaction Affinity feature of Active GridLink for RAC
    D. Coherence*Web Session Replication
    Q. What is the architectural benefit of keeping WebLogic Server transaction log in the database?
    A. Oracle does not allow replicating files between data centers, so keeping transaction log in
    database allows for replication.
    B. Many transactions in WebLogic are database centric, so keeping log in database makes Two
    Phase Commit protocol possible.
    C. It obviates the need to keep in sync two replication technologies (file and database) between
    data centers. The single replication technology is used for frequently changing data.
    D. Transaction log in a file system is extremely slow so it cannot beefficiently replicated.
    Q. Which two options best describe how the Maven Plugin for WebLogic enables WebLogic to be
    effectively used in a Continuous Integration environment?
    A. execution of unit and integration tests
    B. management of the life cycle of a WebLogic domain including creation, configuration, and
    server life-cycle management
    C. deployment and undeployment of applications
    D. Java profiling
    Q. A customer needs to analyze an application that was developed for Oracle Application Server
    10gR2 or 10gR3 (OC4J) in order to prepare to upgrade the infrastructure to WebLogic 12c.
    customer wants understand the changes required to be made to the application and how to
    configure WebLogic in to support the newly upgraded application.
    Which three actions would you recommend for upgrading the customer's application and server
    configuration?
    A. Use Oracle Upgrade Managerto create a new WebLogicdomain template from an
    OAS/OC4Jinstallation and redeploy the application.
    B. Use SmartUpgrade to analyze the OAS/OC4Jserver configuration and create
    WebLogicconfiguration files.
    C. Use SmartUpgrade to analyze the application archive (EAR/WAR/JAR) Source Directory
    orIDeveloperprojectand generate a report that describes the areas of the application that need
    tobe updated.
    D. Use the Configuration Wizard toextend an existing WebLogic domain with OAS/OC4Jsupport
    libraries and redeploy theapplication.
    E. Use SmartUpgrade to generate application artifacts and deployment descriptors that can
    bedeployed to WebLogic.

    Hi, I have checked your question and answer. And I agree with you.
    Q. A customer has a development environment that uses the auto-deployment feature. The customer
    claims the application is not redeployed even if the new version is copied to an application
    subdirectory. Which two parameters of the configuration should you check?
    -OK I Agree - Answer :
    E. If the domain is a single-server domain. Auto-deployment is not supported in
    multiserver domains.
    B. If server was started in the Development Mode. Auto-deployment is not supported in production
    mode.
    Q. A customer has a critical, performance-sensitive web application that connects to a multimode
    Oracle RAC database. Which feature of WebLogic can provide signification benefit?
    Maybe I'm not sure - Answer:
    A. The Web Session Affinity feature of Active GridLink for RAC.
    The above feature would maintain stickiness to the web session to the RAC Node.
    It is a new feature in WLS 12c and helps to enhance performance of web applications specifically.
    Q. What is the architectural benefit of keeping WebLogic Server transaction log in the database?
    -OK I Agree - Answer :
    C. It obviates the need to keep in sync two replication technologies (file and database) between
    data centers. The single replication technology is used for frequently changing data.
    Q. Which two options best describe how the Maven Plugin for WebLogic enables WebLogic to be
    effectively used in a Continuous Integration environment?
    -OK I Agree - Answer :
    B. management of the life cycle of a WebLogic domain including creation, configuration, and
    server life-cycle management
    C. deployment and undeployment of applications
    Q. A customer needs to analyze an application that was developed for Oracle Application Server
    10gR2 or 10gR3 (OC4J) in order to prepare to upgrade the infrastructure to WebLogic 12c.
    customer wants understand the changes required to be made to the application and how to
    configure WebLogic in to support the newly upgraded application.
    Which three actions would you recommend for upgrading the customer's application and server
    configuration?
    -OK I Agree - Answer :
    B. Use SmartUpgrade to analyze the OAS/OC4Jserver configuration and create
    WebLogicconfiguration files.
    C. Use SmartUpgrade to analyze the application archive (EAR/WAR/JAR) Source Directory
    orIDeveloperprojectand generate a report that describes the areas of the application that need
    tobe updated.
    E. Use SmartUpgrade to generate application artifacts and deployment descriptors that can
    bedeployed to WebLogic.

  • MapViewer erron on WebLogic 12c

    We are in the process of upgrading our WebLogic 11g server to WebLogic 12c.
    When I start mapviewer (11.1.1.6 ) I get this error:
    WARNING: ORA-28001: the password has expired
    java.sql.SQLException: ORA-28001: the password has expired
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:445)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:389)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:382)
    at oracle.jdbc.driver.T4CTTIfun.processError(T4CTTIfun.java:600)
    at oracle.jdbc.driver.T4CTTIoauthenticate.processError(T4CTTIoauthenticate.java:445)
    at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:450)
    at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:192)
    at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:380)
    at oracle.jdbc.driver.T4CTTIoauthenticate.doOAUTH(T4CTTIoauthenticate.java:760)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:401)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:546)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:236)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:521)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:185)
    at oracle.sdovis.ds.NativeOracleDataSource.<init>(NativeOracleDataSource.java:154)
    at oracle.sdovis.ds.DSManager.registerOracleJdbcDS(DSManager.java:123)
    at oracle.lbs.mapserver.core.MapperConfig.createMappers(MapperConfig.java:811)
    at oracle.lbs.mapserver.core.MapperConfig.loadMapViewerConfig(MapperConfig.java:1613)
    at oracle.lbs.mapserver.core.MapperConfig.loadConfigFile(MapperConfig.java:623)
    at oracle.lbs.mapserver.core.MapperConfig.<init>(MapperConfig.java:374)
    at oracle.lbs.mapserver.MapServerImpl.<init>(MapServerImpl.java:131)
    at oracle.lbs.mapserver.MapServerImpl.<init>(MapServerImpl.java:115)
    at oracle.lbs.mapserver.oms$ColdStart.run(oms.java:310)
    at java.lang.Thread.run(Thread.java:662)
    Then if I try to access the mapviewer admin console at /mapviewer I get this error:
    Error 500--Internal Server Error
    java.lang.UnsupportedOperationException
         at javax.faces.application.Application.getResourceHandler(Application.java:287)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:588)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:242)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:216)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:132)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:338)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:75)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:75)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3288)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3254)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
         at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2163)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2091)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2074)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1513)
         at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:255)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    I tried using both autodeploy and deploying a new app onto WebLogic with the same results

    I fixed this by adding a prefer-application-packages entry into the META-INF/weblogic-application.xml
    <wls:prefer-application-packages>
    <wls:package-name>javax.faces.*</wls:package-name>
    </wls:prefer-application-packages>
    Seems like a conflict between WebLogic 12c javax.faces version and the one included with MapViewer

  • Does weblogic 12c support beehive controls

    Hi ,
    we are migrating our weblogic server from 10.3 to 12C , i just import existing project into eclipse(Oracle enterprise pack for eclipse) came with weblogic 12C , it is showing errors on project for shared libraries like beehive controls , weblogic controls ,
    Please let us know does WLS 12C support beehive controls ? do we have any solution for this
    Regards
    Srikanth

    Apache Beehive is not supported on Weblogic 12c.
    Apache Beehive has been deprecated as of WebLogic Server 10.3.
    Oracle recommends that you migrate your Beehive applications and infrastructure to other frameworks such as Oracle's ADF or Java Server Faces at your earliest convenience.
    Please check the below Doc and Page No. 16.
    http://docs.oracle.com/cd/E12839_01/web.1111/e13852.pdf
    Hope this answers your question!!
    Thanks,
    Vijaya
    Edited by: Vijaya_Gopal on May 1, 2013 8:01 PM

Maybe you are looking for

  • OfficeJet 6310 Will Not Install on Windows 7

    I have an HP OfficeJet 6310 that I am trying to install on a computer operating on Windows 7 64-bit.  Using the Add A Printer feature, I am able to add the printer but it will only print - it will not scan.  When attempting to scan from the all-in-on

  • Directory structure on Win/MSS

    Hello, It is a conceptual doubt, not an error. We have several Dialog instances (on separate boxes) for our Production system running R/3 4.7 on Win server 2003 + MS SQL 8.00.2040 I noticed that directory structure of Dialog hosts don't have SYS dire

  • Different weights (man hours, material, costs) of/within different WBS sections

    Hi there, I am using Microsoft Project Standard 2010. Within some elements of my schedule I would like to weight by man-hours, within some by material and within some others again by cost. Also I would like to manually adjust the the weighting on the

  • STAT1 mapping Info Object in SAP BI

    Dear All, Could you please any body tell me the STAT1 filed from PA0000 table, i want to know mapping infoobject from BI side ? Regards, kavitha.

  • Does SAP BO has Idoc structures

    Like SAP R/3, does SAP BO also has Idoc structures to send and receive data from the external system, mainly the production related data. Can some one help me on this. Thanks and Regards Pari