11g ADF BC security - small dialog inconsistency

Hi JDev team
I noticed this very small inconsistency in the ADF BC security dialogs for JDev 11g. Assuming you have enabled ADF Security for your application, if you select an existing ADF BC EO, then in the Structure window:
1) Right click the EO and select Edit Authorization, the dialog shows Read, Update, Delete in the columns
2) Instead right click the EO and select Edit Security, the dialog shows in the rows Read, Update, and removeCurrentRow
I'm guessing they're meant to be the same?
Regards,
CM.

Are you saying what I think you're saying Frank :-o
Ah well, that confirms my mantra. If you don't have a JDev PM take the *#%@ out of you once a day, you're not doing your job ;-)
CM.

Similar Messages

  • 11g ADF Business Component Browser + ADF BC security

    Hi gang
    I was hoping somebody could help me out with the ADF BC security features as outlined section 28.4.3 of the Fusion Developer's Guide for JDev 11g.
    1) I note once you've defined a Policy Store via the ADF Security wizard, each time you run the ADF Business Component Browser a login dialog then shows requiring a user to be authenticated. Is there anyway to turn this off for the ADF BC model project for testing purposes without removing the whole Policy Store set of files?
    2) The EO + EO attributes allow the role "unauthenticated-role" as a permission, documented online as:
    "Select when you want to grant access privileges to unauthenticated users. All users, including unauthenticated users, for example, those *not*required* to log on to the application, are automatically considered by Oracle Platform Security to be a member of the anonymous-role."
    (Note my emphasis in the quote)
    Given this, once the ADF Security is enabled, the login dialog always appear for the ADF Business Component Browser. How do you login in an unauthenticated fashion to test an unauthenticated user's privileges against an authenticated privileges?
    Hope you can help with thanks,
    CM.

    Chris,
    you should be able to switch it on/off by setting
    authorizationEnforce="false"
    authenticationRequire="false"/>
    in the .adf\META-INF\adf-config.xml file
    you can edit this file from within JDeveloper
    Frank

  • 11g ADF Runtime Deployment on Tomcat

    I am unable to start the tomcat server after deploying ADF runtime from JDeveloper 11g. The same problem happens on both Tomcat 5.5.x and 6.0.x
    We have successfully installed
    JSF 1.2
    MyFaces 1.2.2
    Taglibs Standard 1.1.2
    I verified that the JSF worked prior to deploying Oracle ADF. After copying ADF runtime jars into $CATALINA_HOME/lib or ($CATALINE_HOME/common/lib on 5.5.x) the server would not start due to following exception:
    Mar 13, 2008 11:34:56 AM org.apache.catalina.core.StandardContext listenerStart
    SEVERE: Exception sending context initialized event to listener instance of class com.sun.faces.config.GlassFishConfigureListener
    javax.faces.FacesException: Can't parse configuration file: jar:file:/C:/cygwin/home/neo/jdevhome/xyz/filesonweb/http/apache-tomcat-6.0.16/lib/jsf-impl.jar!/com/sun/faces/jsf-ri-runtime.xml: Error at line 3 column 14: jar:file:/C:/cygwin/home/neo/jdevhome/xyz/filesonweb/http/apache-tomcat-6.0.16/lib/jsf-impl.jar!/com/sun/faces/jsf-ri-runtime.xml<Line 3, Column 14>: XML-20149: (Error) Element 'faces-config' used but not declared.
         at com.sun.faces.config.ConfigureListener.parse(ConfigureListener.java:1751)
         at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:448)
         at com.sun.faces.config.GlassFishConfigureListener.contextInitialized(GlassFishConfigureListener.java:47)
         at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3843)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:4350)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:791)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:771)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:525)
         at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:829)
         at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:718)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:490)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1147)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:311)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:117)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1053)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:719)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1045)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:443)
         at org.apache.catalina.core.StandardService.start(StandardService.java:516)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:710)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:578)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:288)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:413)
    null

    I am able to get oracle jdbc connections on Tomcat 6.0.x using JNDI. The problem is getting ADF Faces application to find the connection.
    The following is the context.xml from $CATALINA_HOME/webapps/webapp1/META-INF/context.xml
    <?xml version='1.0' encoding='utf-8'?>
    <Context crossContext="true" reloadable="true">
    <Resource
    auth="Container"
    name="Connection1"
    type="oracle.jdbc.pool.OracleConnectionPoolDataSource"
    factory="oracle.jdbc.pool.OracleDataSourceFactory"
    driverClassName="oracle.jdbc.driver.OracleDriver"
    maxIdle="2"
    maxWait="5000"
    validationQuery="select sysdate from dual"
    url="jdbc:oracle:thin:capp/capp@localhost:1521:scprod"
    maxActive="200"/>
    </Context>
    The following was added to webapp1's web.xml inside $CATALINA_HOME/webappa/webapp1/WEB-INF/web.xml:
    <resource-ref>
    <res-ref-name>
    Connection1
    </res-ref-name>
    <res-type>
    javax.sql.DataSource
    </res-type>
    <res-auth>
    Container
    </res-auth>
    </resource-ref>
    The following is from the bc4j.xcfg:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BC4JConfig version="11.0" xmlns="http://xmlns.oracle.com/bc4j/configuration">
    <AppModuleConfigBag>
    <AppModuleConfig name="HelloAppModuleLocal" ApplicationName="com.xyz.spacecatch.model.applicationModule.HelloAppModule" DeployPlatform="LO
    CAL" JDBCName="Connection1" jbo.project="model.Model">
    <Security AppModuleJndiName="com.xyz.spacecatch.model.applicationModule.HelloAppModule"/>
    </AppModuleConfig>
    <AppModuleConfig name="HelloAppModuleShared" ApplicationName="com.xyz.spacecatch.model.applicationModule.HelloAppModule" DeployPlatform="L
    OCAL" JDBCName="Connection1" jbo.project="model.Model">
    <AM-Pooling jbo.ampool.maxpoolsize="1" jbo.ampool.isuseexclusive="false"/>
    <Security AppModuleJndiName="com.xyz.spacecatch.model.applicationModule.HelloAppModule"/>
    </AppModuleConfig>
    </AppModuleConfigBag>
    </BC4JConfig>
    The Exception:
    [47] javax.naming.NamingException [Root exception is oracle.adf.share.jndi.ConnectionException: oracle.adf.share.security.ADFSecurityRuntimeException: Unable to initialize the credential store.   
         at oracle.adf.share.jndi.ContextImpl.findObject(ContextImpl.java:490)
         at oracle.adf.share.jndi.ContextImpl.lookup(ContextImpl.java:77)
         at oracle.adf.share.jndi.ContextImpl.lookup(ContextImpl.java:82)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at oracle.jbo.client.CADatabaseConnectionProvider.getDatabaseProvider(CADatabaseConnectionProvider.java:69)
         at oracle.jbo.client.CADatabaseConnectionProvider.getConnectionURL(CADatabaseConnectionProvider.java:17)
         at oracle.jbo.client.Configuration.initializeFromConnectionName(Configuration.java:1073)
         at oracle.jbo.client.Configuration.getConfiguration(Configuration.java:596)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:298)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:557)
         at oracle.adf.model.bc4j.DCJboDataControl.findApplicationPool(DCJboDataControl.java:535)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeSessionCookie(DCJboDataControl.java:368)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeJboSession(DCJboDataControl.java:300)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:165)
         at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:163)
         at oracle.adf.model.BindingContext.instantiateDataControl(BindingContext.java:673)
         at oracle.adf.model.dcframe.DataControlFrameImpl.doFindDataControl(DataControlFrameImpl.java:730)
         at oracle.adf.model.dcframe.DataControlFrameImpl.findDataControl(DataControlFrameImpl.java:650)
         at oracle.adf.model.BindingContext.internalFindDataControl(BindingContext.java:769)
         at oracle.adf.model.BindingContext.get(BindingContext.java:755)
         at oracle.adf.model.binding.DCBindingContainer.findDataControl(DCBindingContainer.java:1327)
         at oracle.adf.model.binding.DCIteratorBinding.initDataControl(DCIteratorBinding.java:2310)
         at oracle.adf.model.binding.DCIteratorBinding.getDataControl(DCIteratorBinding.java:2265)
         at oracle.adf.model.binding.DCIteratorBinding.getAttributeDefs(DCIteratorBinding.java:2933)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeDefs(JUCtrlValueBinding.java:420)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.findAttributeDef(JUCtrlValueBinding.java:552)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.lookupAttributeDef(JUCtrlValueBinding.java:522)
         at oracle.jbo.uicli.binding.JUCtrlHierBinding$1JUCtrlHierHintsMap.internalGet(JUCtrlHierBinding.java:148)
         at oracle.jbo.common.JboAbstractMap.get(JboAbstractMap.java:58)
         at javax.el.MapELResolver.getValue(MapELResolver.java:51)
         at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:53)
         at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:64)
         at org.apache.el.parser.AstValue.getValue(AstValue.java:114)
         at org.apache.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:186)
         at org.apache.jasper.el.JspValueExpression.getValue(JspValueExpression.java:101)
         at org.apache.myfaces.trinidad.bean.FacesBeanImpl.getProperty(FacesBeanImpl.java:70)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.getProperty(BaseColumnRenderer.java:768)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.layoutHeader(BaseColumnRenderer.java:374)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.encodeAll(BaseColumnRenderer.java:81)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseTableRenderer.layoutColumnHeader(BaseTableRenderer.java:791)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:275)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:527)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:316)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.encodeAll(RegionRenderer.java:169)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at oracle.adf.view.rich.component.fragment.UIXRegion.encodeEnd(UIXRegion.java:221)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:316)
         at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:163)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:316)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:441)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1287)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:769)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:892)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:245)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:633)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:244)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:178)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at oracle.adfinternal.view.faces.webapp.rich.SharedLibraryFilter.doFilter(SharedLibraryFilter.java:135)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:69)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at oracle.adfinternal.view.faces.activedata.ADSFilter.doFilter(ADSFilter.java:74)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:241)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:198)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:141)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:118)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: oracle.adf.share.jndi.ConnectionException: oracle.adf.share.security.ADFSecurityRuntimeException: Unable to initialize the credential store.
         at oracle.adf.share.jndi.ReferenceStoreHelper.getReferencesMapEx(ReferenceStoreHelper.java:342)
         at oracle.adf.share.jndi.ContextImpl.load(ContextImpl.java:640)
         at oracle.adf.share.jndi.ContextImpl.init(ContextImpl.java:318)
         at oracle.adf.share.jndi.ContextImpl.<init>(ContextImpl.java:72)
         at oracle.adf.share.jndi.InitialContextFactoryImpl.getInitialContext(InitialContextFactoryImpl.java:15)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at oracle.adf.share.jndi.AdfInitialContext.<init>(AdfInitialContext.java:54)
         at oracle.adf.share.config.FallbackConfigImpl.getDefaultConnectionsContext(FallbackConfigImpl.java:122)
         at oracle.adf.share.config.ADFConfigImpl.getConnectionsContext(ADFConfigImpl.java:516)
         ... 105 more
    Caused by: oracle.adf.share.security.ADFSecurityRuntimeException: Unable to initialize the credential store.
         at oracle.adf.share.security.credentialstore.CredentialStoreContext.getCredentialStorage(CredentialStoreContext.java:171)
         at oracle.adf.share.security.credentialstore.CredentialStoreContext.getCredentialProvisioner(CredentialStoreContext.java:98)
         at oracle.adf.share.security.credentialstore.CredentialProvisioner.<init>(CredentialProvisioner.java:43)
         at oracle.adf.share.jndi.CredentialStoreHelper.<init>(CredentialStoreHelper.java:52)
         at oracle.adf.share.jndi.CredentialStoreHelper.<init>(CredentialStoreHelper.java:46)
         at oracle.adf.share.jndi.ReferenceStoreHelper.loadCredentials(ReferenceStoreHelper.java:767)
         at oracle.adf.share.jndi.ReferenceStoreHelper.createReference(ReferenceStoreHelper.java:553)
         at oracle.adf.share.jndi.ReferenceStoreHelper.getReferencesMapEx(ReferenceStoreHelper.java:333)
         ... 116 more
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at oracle.adf.share.security.credentialstore.CredentialStoreContext.getCredentialStorage(CredentialStoreContext.java:167)
         ... 123 more
    Caused by: java.lang.ExceptionInInitializerError
         at oracle.security.jps.JpsContextFactory$1.run(JpsContextFactory.java:68)
         at oracle.security.jps.JpsContextFactory$1.run(JpsContextFactory.java:67)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.JpsContextFactory.getContextFactory(JpsContextFactory.java:65)
         at oracle.adf.share.security.providers.jps.CSFCredentialStore.checkInitCSFStore(CSFCredentialStore.java:200)
         at oracle.adf.share.security.providers.jps.CSFCredentialStore.initialize(CSFCredentialStore.java:252)
         at oracle.adf.share.security.providers.jps.CSFCredentialStore.<init>(CSFCredentialStore.java:187)
         ... 128 more
    Caused by: java.util.MissingResourceException: Can't find oracle.security.jps.internal.common.resources.common.CommonResources bundle
         at java.util.logging.Logger.setupResourceInfo(Logger.java:1329)
         at java.util.logging.Logger.<init>(Logger.java:224)
         at java.util.logging.Logger.getLogger(Logger.java:320)
         at oracle.security.jps.util.JpsLogger.getLogger(JpsLogger.java:108)
         at oracle.security.jps.util.JpsUtil.<clinit>(JpsUtil.java:121)
         ... 135 more
    [48] CommonMessageBundle (language base) being initialized
    [49] oracle.jbo.ConfigException: JBO-33003: Connection name Connection1 not defined
         at oracle.jbo.client.Configuration.initializeFromConnectionName(Configuration.java:1082)
         at oracle.jbo.client.Configuration.getConfiguration(Configuration.java:596)
         at oracle.jbo.common.ampool.PoolMgr.createPool(PoolMgr.java:298)
         at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:557)
         at oracle.adf.model.bc4j.DCJboDataControl.findApplicationPool(DCJboDataControl.java:535)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeSessionCookie(DCJboDataControl.java:368)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeJboSession(DCJboDataControl.java:300)
         at oracle.adf.model.bc4j.DataControlFactoryImpl.createSession(DataControlFactoryImpl.java:165)
         at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:163)
         at oracle.adf.model.BindingContext.instantiateDataControl(BindingContext.java:673)
         at oracle.adf.model.dcframe.DataControlFrameImpl.doFindDataControl(DataControlFrameImpl.java:730)
         at oracle.adf.model.dcframe.DataControlFrameImpl.findDataControl(DataControlFrameImpl.java:650)
         at oracle.adf.model.BindingContext.internalFindDataControl(BindingContext.java:769)
         at oracle.adf.model.BindingContext.get(BindingContext.java:755)
         at oracle.adf.model.binding.DCBindingContainer.findDataControl(DCBindingContainer.java:1327)
         at oracle.adf.model.binding.DCIteratorBinding.initDataControl(DCIteratorBinding.java:2310)
         at oracle.adf.model.binding.DCIteratorBinding.getDataControl(DCIteratorBinding.java:2265)
         at oracle.adf.model.binding.DCIteratorBinding.getAttributeDefs(DCIteratorBinding.java:2933)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeDefs(JUCtrlValueBinding.java:420)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.findAttributeDef(JUCtrlValueBinding.java:552)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.lookupAttributeDef(JUCtrlValueBinding.java:522)
         at oracle.jbo.uicli.binding.JUCtrlHierBinding$1JUCtrlHierHintsMap.internalGet(JUCtrlHierBinding.java:148)
         at oracle.jbo.common.JboAbstractMap.get(JboAbstractMap.java:58)
         at javax.el.MapELResolver.getValue(MapELResolver.java:51)
         at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:53)
         at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELResolver.java:64)
         at org.apache.el.parser.AstValue.getValue(AstValue.java:114)
         at org.apache.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:186)
         at org.apache.jasper.el.JspValueExpression.getValue(JspValueExpression.java:101)
         at org.apache.myfaces.trinidad.bean.FacesBeanImpl.getProperty(FacesBeanImpl.java:70)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.getProperty(BaseColumnRenderer.java:768)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.layoutHeader(BaseColumnRenderer.java:374)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseColumnRenderer.encodeAll(BaseColumnRenderer.java:81)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at oracle.adfinternal.view.faces.renderkit.rich.table.BaseTableRenderer.layoutColumnHeader(BaseTableRenderer.java:791)
         at oracle.adfinternal.view.faces.renderkit.rich.TableRenderer.encodeAll(TableRenderer.java:275)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.component.UIXCollection.encodeEnd(UIXCollection.java:527)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:316)
         at oracle.adfinternal.view.faces.renderkit.rich.RegionRenderer.encodeAll(RegionRenderer.java:169)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at oracle.adf.view.rich.component.fragment.UIXRegion.encodeEnd(UIXRegion.java:221)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:316)
         at oracle.adfinternal.view.faces.renderkit.rich.FormRenderer.encodeAll(FormRenderer.java:163)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeChild(CoreRenderer.java:299)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeAllChildren(CoreRenderer.java:316)
         at oracle.adfinternal.view.faces.renderkit.rich.DocumentRenderer.encodeAll(DocumentRenderer.java:441)
         at oracle.adf.view.rich.render.RichRenderer.encodeAll(RichRenderer.java:947)
         at org.apache.myfaces.trinidad.render.CoreRenderer.encodeEnd(CoreRenderer.java:220)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeEnd(UIXComponentBase.java:749)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__encodeRecursive(UIXComponentBase.java:1287)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.encodeAll(UIXComponentBase.java:769)
         at javax.faces.component.UIComponent.encodeAll(UIComponent.java:892)
         at com.sun.faces.application.ViewHandlerImpl.doRenderView(ViewHandlerImpl.java:245)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:178)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:176)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:633)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:244)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:178)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at oracle.adfinternal.view.faces.webapp.rich.SharedLibraryFilter.doFilter(SharedLibraryFilter.java:135)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:69)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at oracle.adfinternal.view.faces.activedata.ADSFilter.doFilter(ADSFilter.java:74)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:281)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:241)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:198)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:141)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:118)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
         at java.lang.Thread.run(Thread.java:619)
    null

  • "Security Warning" dialog box when click script set to Run at Server

    I am rendering a PDF form using the renderForm component.  I'm setting the Target URL.  I have a script on a button set to "run at server".  I can render my form in a browser and fill it out, but when I click the button I get a dialog box with a title of "Security Warning".  It says "Acrobat is attempting to connect to [target URL]" with options to Allow or Block.  Is this the expected behaviour for server-side execution of scripts?
    I'm thinking that maybe I should just use a submit button instead.  The problem with that though, is that I don't want to run the mandatory field rules and validation rules.  As I understand, you can't submit a form with a submit button unless all the mandatory fields are completed.
    Here's the requirement.  I need to have two "submit" buttons.  One checks all the mandatory field rules before submitting a "final" version of the form.  The other button submits a "draft" version without the mandatory checks.  I was hoping that the second button could be implemented as a normal command button with a script that executes server-side.  Sure enough, it attempted to submit without checking the mandatory fields.  Unfortunately I ran into other undesirable side-effects including a distressing "Security Warning" dialog box.
    Ideas?
    Jared Langdon

    This was helpful (stopped the request to execute Thunderbird) . However, The pop up window is now asking what program do you want to use to access the website??? What is the next step??

  • Expanding "Roles" to edit ADF BC Entities using ADF BC Security

    hi,
    I created a test application using the ADF Business Components Technology stack.
    I wanted to use "ADF BC Security" instead of "ADF Security" as we encountred problems with "ADF Security" ...
    I also configured the ADF BC module to enforce the security etc... as mentionned in the JDev developer's guide.
    the problem:
    I wanted to edit the authorization for a given BC entity, by right clicking on the entity then choosing edit > authorization > new > read, update, update when new > chose "role"
    the problem is that I always find 6 roles:
    oc4jadmin, as_control ,etc.....
    I edited the system-jazn-data.xml to add my "own" roles , but they do not appear in the list of choice of roles, when I want to edit the entities authorization as mentionned above.
    can someone help please?
    thank you.

    thank you Frank for the answer. but it does not solve the problem.
    I know where tofind the system-jazn-data, i even find 3x "system-jazn-data.xml" in the JDev 1032 folder. I even inserted my "own" roles into these 3 files to see, maybe it works. but not.
    after restarting JDev 1032 , the problem persists, I still can not list my own roles when I edit the authorization of an ADF BC Entity.
    can somenone help please?
    thank you.
    PS: here the extract of my system-jazn-data.xml, with the "own roles" in bold:
              <roles>
                   <role>
                        <name>oc4j-administrators</name>
                        <display-name>OC4J Admin Role</display-name>
                        <description>Administrative role for OC4J</description>
                        <guid>5280445217CB11DCAF10CD54D443D9D4</guid>
                        <members>
                             <member>
                                  <type>user</type>
                                  <name>oc4jadmin</name>
                             </member>
                             <member>
                                  <type>user</type>
                                  <name>JtaAdmin</name>
                             </member>
                        </members>
                   </role>
                   <role>
                        <name>ascontrol_appadmin</name>
                        <display-name>ASControl App Admin Role</display-name>
                        <description>Application Administrative role for ASControl</description>
                        <guid>5280445617CB11DCAF10CD54D443D9D4</guid>
                        <members>
                        </members>
                   </role>
                   <role>
                        <name>users</name>
                        <display-name>users</display-name>
                        <description>users role for rmi/ejb access</description>
                        <guid>5280445417CB11DCAF10CD54D443D9D4</guid>
                        <members>
                        </members>
                   </role>
                   <role>
                        <name>ascontrol_admin</name>
                        <display-name>ASControl Admin Role</display-name>
                        <description>Administrative role for ASControl</description>
                        <guid>5280445517CB11DCAF10CD54D443D9D4</guid>
                        <members>
                             <member>
                                  <type>user</type>
                                  <name>oc4jadmin</name>
                             </member>
                        </members>
                   </role>
                   <role>
                        <name>ascontrol_monitor</name>
                        <display-name>ASControl Monitor Role</display-name>
                        <description>Monitor role for ASControl</description>
                        <guid>5280445717CB11DCAF10CD54D443D9D4</guid>
                        <members>
                        </members>
                   </role>
                   <role>
                        <name>my_own1</name>
                        <guid>E460913021EA11DC8F0A77098E9E0856</guid>
                        <members>
                        </members>
                   </role>
                   <role>
                        <name>oc4j-app-administrators</name>
                        <display-name>OC4J Application Administrators</display-name>
                        <description>OC4J application-level administrators</description>
                        <guid>5280445317CB11DCAF10CD54D443D9D4</guid>
                        <members>
                        </members>
                   </role>
              </roles>

  • Parent values should be enter into child table in 11g adf

    HI ALL,
    i' m using oracle 9i with 11g adf jdeveloper.
    I have one parent table and child table respectively . I'm display both the parent and child table in one jsf page.Some fields/records in child table have same as in parent table.so when we enter values in parent fields the child table value should be placed.
    Ex:
    PARENT TABLE
    ID
    NAME
    LOC
    SAL
    DEPART
    COMP
    CHILD TABLE
    CID
    PID
    CNAME
    LOC
    SAL
    DEPART
    CNO
    CPNR
    LOC,SAL and DEPART are common fields in both tables
    I display all the feilds in parent table , but i won't display LOC,SAL and DEPART field from Child table . Now i when i fill value in fields and fire submit . the values of LOC,SAL and DEPART parent table values should be enter in child table fields
    Thanks in advance.

    Create a custom Application Module method and expose it to the AM client interface. In it set the child VO attributes from the parent VO and submit. Bind this custom method to your Submit in the ViewController and call it from a backing bean.
    Regards,
    Nick

  • JBO-29000: Unexpected exception caught: oracle.adf.share.security.ADFSecuri

    Does anyone get the following exception when trying to run their EJB application? I'm running JDeveloper 11.1.1.4 and trying to run my application via right click after deploying the application. I get the same error when trying to run my test programs that use a MySql JDBC data source. Note the data source tests, ok itself. If I turn off ADF security via the secure->Configure ADF Security menu, then everything is fine. Please HELP!!!!
    -Mark
    (oracle.jbo.JboException) JBO-29000: Unexpected exception caught: oracle.adf.share.security.ADFSecurityAuthenticationException, msg=EXC_NO_AUTHENTICATION_SERVICE
    ----- Level 1: Detail 0 -----
    (oracle.adf.share.security.ADFSecurityAuthenticationException) EXC_NO_AUTHENTICATION_SERVI
    Stack dump....
    oracle.jbo.jbotester.ErrorHandler$ExceptionWrapper: EXC_NO_AUTHENTICATION_SERVICE
         at oracle.jbo.jbotester.ErrorHandler.displayError(ErrorHandler.java:96)
         at oracle.jbo.jbotester.ErrorHandler.displayError(ErrorHandler.java:89)
         at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:437)
    Caused by: oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.adf.share.security.ADFSecurityAuthenticationException, msg=EXC_NO_AUTHENTICATION_SERVICE
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:609)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2394)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2270)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:3168)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:460)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:431)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:426)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeApplicationModule(DCJboDataControl.java:516)
         at oracle.adf.model.bc4j.DCJboDataControl.getApplicationModule(DCJboDataControl.java:862)
         at oracle.jbo.jbotester.binding.TesterBinding.getConnectionInfo(TesterBinding.java:214)
         at oracle.jbo.jbotester.MainFrame.initializeDataControl(MainFrame.java:906)
         at oracle.jbo.jbotester.MainFrame.loadConfiguration(MainFrame.java:632)
         at oracle.jbo.jbotester.MainFrame.processArgs(MainFrame.java:597)
         at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:428)
    Caused by: oracle.adf.share.security.ADFSecurityAuthenticationException: EXC_NO_AUTHENTICATION_SERVICE
         at oracle.adf.share.security.authentication.AuthenticationServiceUtil.getAuthenticationService(AuthenticationServiceUtil.java:68)
         at oracle.jbo.common.UserAznUtil.authenticate(UserAznUtil.java:64)
         at oracle.jbo.common.UserAznUtil.authenticateUser(UserAznUtil.java:32)
         at oracle.jbo.jbotester.TesterEnvInfoProvider.getInfo(TesterEnvInfoProvider.java:344)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:65)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2834)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:590)
         ... 13 more
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.adf.share.security.ADFSecurityAuthenticationException, msg=EXC_NO_AUTHENTICATION_SERVICE
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:609)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2394)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2270)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:3168)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:460)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:431)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:426)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeApplicationModule(DCJboDataControl.java:516)
         at oracle.adf.model.bc4j.DCJboDataControl.getApplicationModule(DCJboDataControl.java:862)
         at oracle.jbo.jbotester.binding.TesterBinding.getConnectionInfo(TesterBinding.java:214)
         at oracle.jbo.jbotester.MainFrame.initializeDataControl(MainFrame.java:906)
         at oracle.jbo.jbotester.MainFrame.loadConfiguration(MainFrame.java:632)
         at oracle.jbo.jbotester.MainFrame.processArgs(MainFrame.java:597)
         at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:428)
    Caused by: oracle.adf.share.security.ADFSecurityAuthenticationException: EXC_NO_AUTHENTICATION_SERVICE
         at oracle.adf.share.security.authentication.AuthenticationServiceUtil.getAuthenticationService(AuthenticationServiceUtil.java:68)
         at oracle.jbo.common.UserAznUtil.authenticate(UserAznUtil.java:64)
         at oracle.jbo.common.UserAznUtil.authenticateUser(UserAznUtil.java:32)
         at oracle.jbo.jbotester.TesterEnvInfoProvider.getInfo(TesterEnvInfoProvider.java:344)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:65)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2834)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:590)
         ... 13 more
    ## Detail 0 ##
    oracle.adf.share.security.ADFSecurityAuthenticationException: EXC_NO_AUTHENTICATION_SERVICE
         at oracle.adf.share.security.authentication.AuthenticationServiceUtil.getAuthenticationService(AuthenticationServiceUtil.java:68)
         at oracle.jbo.common.UserAznUtil.authenticate(UserAznUtil.java:64)
         at oracle.jbo.common.UserAznUtil.authenticateUser(UserAznUtil.java:32)
         at oracle.jbo.jbotester.TesterEnvInfoProvider.getInfo(TesterEnvInfoProvider.java:344)
         at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:65)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2834)
         at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:590)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2394)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2270)
         at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:3168)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:460)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:431)
         at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:426)
         at oracle.adf.model.bc4j.DCJboDataControl.initializeApplicationModule(DCJboDataControl.java:516)
         at oracle.adf.model.bc4j.DCJboDataControl.getApplicationModule(DCJboDataControl.java:862)
         at oracle.jbo.jbotester.binding.TesterBinding.getConnectionInfo(TesterBinding.java:214)
         at oracle.jbo.jbotester.MainFrame.initializeDataControl(MainFrame.java:906)
         at oracle.jbo.jbotester.MainFrame.loadConfiguration(MainFrame.java:632)
         at oracle.jbo.jbotester.MainFrame.processArgs(MainFrame.java:597)
         at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:428)

    Good question. I use the same jazn-data.xml file that several other people use which does have entitlement and resource grants. However, on my overview using Jdev 11.1.1.4 it doesn't show any. The same jazn file on version 11.1.1.3 shows several resource/entitlement grants on the overview. This appears to be a Jdeveloper bug, or I could be missing something.

  • Possibility & Drawback  Using JDeveloper 11g ADF Faces with Oracle 10g DB

    We are new to ADF Faces, would like to use JDeveloper 11g ADF Faces with Oracle 10g database (Enterprise Edition). As we are new to JDeveloper 11g ADF BC, so we want to know about the Possibility & the Drawback.
    Edited by: eng.shahed on Apr 5, 2010 11:21 AM

    i dont think so any drawbacks using Jdeveloper with any database.....its a open product ... You can use it with Sybase, MySQL, Oracle etc etc..

  • 11G ADF BC: First time loading the page, how to disable some components?

    Hi,
    I have a fusion web application created using Jdev 11G ADF BC. I am working on a search/results page that has a panel split. In the left panel, there is a list of nevigation links. The data shows in the right panel.
    What I want to achieve here is to enable only one link on the left when the page is first loaded and it is a search/result page. Disable all the rest of it because other links are related to more info about the search results. When the page is first loaded, there is no data on the right, so that there is no more other data to look at. Ideally, all the rest of the links should be disabled and only the "Query" link should be active and selected.
    Is there a way to do this with 11G? Thank you very much for your help.
    Regards,
    Annie

    initially, what ever the components you want to disable set the disabled="true" in the jspx. Once you fetch the query results and in that action enable the componens like commandButton1.setDisabled(Boolean.FALSE);. that's how I am doing. You can dynamically enable/disable by having a boolean variable in the backing bean and set the disable property of component lke disabled="#{backingBeanScope.yourbean.blnAddBtn}".

  • Bandwidth requirec for Oracle 11g ADF application

    Hi
    What is the idel bandwidth recomend for oracle 11g ADF web application .

    Can't be answered without knowledge of the app you are talking about.
    100 user doesn't mean they are all active at once and even if they are it depends on how much data your app processes. This can't be answered from out point of view.
    So your task is to find out how many users are doing what at a given time interval and then find out how much data is processed (there are plenty of tools available to measure this).
    How a bout a test run with e.g. 10 users doing normal work with our app, measure the amount of data and calculate the bandwidth from there. Don't forget to take service level agreements (e.g. a page has to be submitted in x seconds) into your calculations.
    Timo

  • ADF Swing - Default LOV Dialog

    Can anyone tell me if the ADF Swing "Default LOV Dialog" was improved in JDeveloper 10.1.3? Specifically, are the same major problems with it, as documented in Frank's article at [1], still present in 10.1.3? If so, do you know if an RFE has been filed to fix it?
    Thanks
    Erik
    [1] http://www.oracle.com/technology/products/jdev/howtos/10g/jclientlov/customadfjclientlovpanel.html

    Thanks Frank,
    What about Set Allow Search? That's one of the big ones that doesn't work in 10.1.2.
    What about the extensibility of the panel? Is MyLovPanel still an inner class of JULovButtonBinding?
    Thanks
    Erik

  • Did JHeadstart 11g capable to convert 10g forms to 11g  ADF Faces?

    We would like to purchase JHeadstart. We are using Oracle 10g Database , Forms & Report. Ours goal is to convert 10g forms to 11g ADF Faces. Which version of JHeadstart could capable to convert 10g Forms to 11g ADF Faces Directly? Need yours valuable suggestion/consultancy.

    Shahed,
    Thanks for your interest in Oracle JHeadstart. You should use Oracle JHeadstart 11g. You can buy the software through your local Oracle Consulting contact. If you do not have a contact please contact [email protected] and we will provide the right contact details. A good way to get a project like this started is through the Forms2ADF assessment service. You can read more about it in the factsheet http://www.oracle.com/technology/products/jheadstart/OracleForms2ADFAssessment.pdf.
    Regards,
    Ton
    Oracle JHeadstart Team

  • JDeveloper 11g ADF and application servers

    I am new to JDeveloper and have enjoyed the 11g but I am concerned about deployment of my code. Can I deploy an 11g ADF application to Oracle Application Server 10gAS version 10.1.2.0.2 or will I need to request an upgrade of the server which will be hard to accomplish?
    Thanks :)

    Hi,
    In theory you can but you have to be careful what you are doing.
    I wouldn't encourage you to do this.
    You can't use the new ADF rich faces if you plan to deploy to an older OAS. You have to be careful to select the right JDK while developing (11g uses 1.6.x).
    I'm not sure that you can start a new project in 11g using the older Oracle stuff entirely.
    So if you plan to use the new features try to get an update to WLS 10g R3.
    Timo

  • Getting error in ADF Login security

    Hi Team,
    I am making security login mechanism.
    I referred - Oracle ADF 11g Security - Custom ADF Login Form - Part 1 (High) and part 2 video from youtube.
    I am not getting any error in my log but after entering username and password its giving me error-
    Error 401--Unauthorized
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    *10.4.2 401 Unauthorized*
    The request requires user authentication. The response MUST include a WWW-Authenticate header field (section 14.46) containing a challenge applicable to the requested resource. The client MAY repeat the request with a suitable Authorization header field (section 14.8). If the request already included Authorization credentials, then the 401 response indicates that authorization has been refused for those credentials. If the 401 response contains the same challenge as the prior response, and the user agent has already attempted authentication at least once, then the user SHOULD be presented the entity that was given in the response, since that entity MAY include relevant diagnostic information. HTTP access authentication is explained in section 11.
    Can you please suggest me how to resolve this.
    Jdev :- 11.1.1.6.0
    Thanks in advance.
    Ramit Mathur

    Hi.
    Check the grants/permissions in jazn-data
    After you log in, the security framework checks the user's right to access the resource. For example, if you receive an unexpected 401 unauthorized user error, verify that you have created grants as suggested in Section 30.11.4, "Best Practices for Working with Oracle ADF Security."
    http://docs.oracle.com/cd/E14571_01/web.1111/b31974/adding_security.htm#BABFIHAF

  • Best Practice / Solutions for using 11g DB+x86 or Small Computer to build iaas/paas?

    My customer wants to build their own iaas/paas using Oracle 11g DB, plus x86 or other small computer, running Linux or Solaris or Unix OS.
    Oracle Exadata is not feasible for them to use currently.
    Customer wants to know whether there are other customers have implemented their cloud solution based on these or not?
    If yes, would like to share the experience, presentation slides, best practices etc.
    Is there an Oracle email DL for asking this kind of question?
    Thanks,
    Boris

    Like Rick, I'm not aware of a specific "cloud implementors forum". Internally, Oracle has lots of material on implementing cloud, using any platform at all, although obviously we feel Engineered Systems are the most cost-effective solution for many customers. Are you interested in IaaS i.e. virtualised hardware, or PaaS i.e. DBaaS? They should not be confused, neither is required for the other, in fact, using IaaS to implement "DBaaS", as the OpenStack trove API attempts to do, is probably the most counter-productive way to go about it. Define the business-visible services you will be offering, and then design the most efficient means of supporting them. That way you gain from economies of scale, and set up appropriate management systems that address issues like patching, security, database virtualisation and so on.

Maybe you are looking for

  • Issue in F110 exclude values

    Hi i have issue regarding f110 exclude values. In f110 under free selections tab i am selecting document numbers and exclude value check box and i try to post the payment but system is picking that exclude documents also. kindly give me your valuable

  • Can I use 3D in PS CC?

    Can I use 3D in PS CC? If so why is it grayed out? What image format does it recognize? Will it render a multi level image with a flat back? Like a family crest with florals, helmets, crosses, castles and such? I have the Cloud and both Photoshop CS6

  • Problems with Comcast (Motorola) modem and Airport Extreme

    I have a very strange problem which I have been unable to solve, nor able to find a solution on Apple Support or anywhere else by Googling it. I switched back to Comcast/Xfinity, hooked up the Motorola surfboard SB5120 modem: My primary Macbook Pro c

  • Application not recognized by I-Tunes

    Hi, I want to copy long voice memos recorded by Recorder-Pro app to my computer running windows 7. I-Tunes (v. 11.1.3.8) doesn't recognize the App, it does recognize many others. What can be done? Thanks

  • Unable to see contacts since 7.0.6, unable to see contacts since 7.0.6

    since I updated to 7.0.6 I am unable to see the contacts in my phone. I know they are there because if I click in a blank spav=ce, the whole card then appears; but I see only blank spacec in list view