Need Information on oracle Security

hi,
Information is required on below senario.DB version oracle 11gR2.
- From Few IP , I can able to read,write in data base.
I am having x user in DB, only from two IP, it can be write/read in this user.
- From All IP , I can able to only read data.
the rest of other ip can able to read the user x's data.
Please guide me , how i can achive above two points .

My question is how can we configure at DB level that From x Ip , it can access of only read/write db.
and From other IP can having read DB permission.not simply possible by IP only however you may find some option in database vault but this may required extra licence.
check detail.
http://www.oracle.com/us/products/database/options/database-vault/overview/index.html

Similar Messages

  • Need information on oracle certified security admin for solaris 10

    Hi All,
    I need some information on "oracle certified security admin for solaris 10 OS".The information what i am looking out is eligibility criteria and within oraganization any tranning provided .
    Regards,
    Uma Maheshwar.

    http://education.oracle.com

  • OC4J 10.1.3.1 Need to find oracle.security.jazn.login.module.db.util pckg

    Hi,
    I managed to configure Oracle's DBTableOraDataSourceLoginModule together with JavaSSO to access two tables which reside on a 9i database. One is the user's table and the other a roles table. The only problem is that the user's passwords should be encripted in this table.
    I followed the instructions in the Oracle Containers for J2EE Security Guide page 9-10 - Implementing DBLoginModuleEncodingInterface for Password Encryption, and specified in the pw_encoding_class parameter
    the DBLoginModuleSHA1Encoder class provided in the oracle.security.jazn.login.module.db.util package.
    I also wrote a small program to do the encryption in the table, using a getKeyDigestString method found in DBLoginModuleSHA1Encoder class of a sample dblogin module downloaded from a link in Lucas Jellema's article on how to secure an application developed with JDeveloper and deployed in OC4J. I used this class because I could not find the one mentioned in the Oracle documentation.
    Now the DBTableOraDataSourceLoginModule rejects the login with an invalid password message. It seems the encoding is calculated differently in the two classes. I tried to use the sample dblogin module in the javasso specification, and got a - no class found - message. I tried to locate the oracle.security.jazn.login.module.db.util package to use in the password encoding program, but I couldn't find it anywhere in either OC4J nor JDeveloper directories.
    Can you tell me where to find the oracle.security.jazn.login.module.db.util package ?
    Thanks for help.
    Gustavo

    Hi
    As I am also tried the same and found the encryption module working fine for me.
    This I could do only on JDeveloper 10g whereas while attempted on the same on JDeveloper 11g, I got lots of problems.
    Will you please help out in this regard, if you had already able to acheive the same on JDeveloper 11g TP3, please let me know the steps or any relevant URL which I can refer.
    Thanks in advance
    Kind Rgds
    Krishnamurthy. R

  • Need information on Oracle products

    Hi,
    I am very new to oracle's products, kindly could you guide me with the below information :
    1)ORA 10 g app and web server : Is this product a combination of both app and web server? or are there individual products for the same?
    2)ORA 10 g database enterprise edition with OLAP option installed and with patch set 2 (10.1.0.4) applied : what is the OLAP option?
    3)Analytic workspace manager 10 g (10.1.0.4) : Need more info on this. Usage and functionality.
    Thank You.

    Here's some info on the Analytic Workspace Manager:
    http://download-east.oracle.com/docs/cd/B19306_01/olap.102/b14349/wiz.htm#i76953
    Press the "Download Oracle Software" button in the top right of the forums page and you should be able to find it.
    Good luck,
    Jim

  • Need information aboout Oracle Cloud Computing.

    Hi,
    I need to prepare the Oracle Cloud Computing solution for Iaas(Infrastucture). Can some body provide me the information or pointer from where i can get the information. Can some body let me know if I want to use cloud computing for Infrastucture. What would be the step need to followed.
    Regards,
    Syed

    Hi,
    Please see the following links.
    Cloud Computing Center
    http://www.oracle.com/technology/tech/cloud/index.html
    Oracle in the Cloud - Frequently Asked Questions
    http://www.oracle.com/technology/tech/cloud/faq.html
    Regards,
    Hussein

  • Need Information on oracle clinicals

    I need some documentation on Oracle clinicals..could anyone suggest me where i can get my hands on some oracle clinical stuff..?
    Thanks,
    Vineet
                                            07-Mar-2002
                                  Plainsboro, New Jersey

    I am afraid that link is no longer working. Check the site:
    http://www.oracle.com/technology/documentation/applications.html (Pharmaceuticals documents)

  • Urgent: Need information on Oracle

    Hello,
    I have 10,000 records in Oracle Database. I need to fetch 1000 records at one time. Is it possible in Oracle. Can someone tell me how?

    There are a few ways to do this, the two most common being caching the data in memory, and using ordered data to query agains.
    Caching is pretty simple, especially with classes like CachedRowSet to play with. The entire data set is kept in memory and you have to keep track of pointers as you move back and forth through the rows. The larger your dataset, the less functional this approach.
    Querying against ordered data allows you to use the rownum pseudocolumn. You start with a known value, get ordered data above/below that value, and use rownum to give you the number of rows you need. The rownum value is assigned before ordering, so you have to order in a subquery.   Statement stmt = conn.createStatement(ResultSet.CONCUR_READ_ONLY, ResultSet.TYPE_SCROLL_INSENSITIVE);
       String query = "select min(field) from schema.table"; //get the starting point
       ResultSet rs = stmt.executeQuery();
       if (!rs.next()) someErrorCondition();
       String startValue = rs.getString(1);
       rs.close();
       query = "select * from schema.table where field in " +
               "(select field from schema.table where field >= " +  
               startValue + ") and rownum <= 1000";
       rs = stmt.executeQuery(query);
       if (!rs.next()) someErrorCondition();
       rs.last();
       startValue = rs.getString(1);
       rs.first(); //loop through the data, etc.
       rs.close();
       //get the next page
       query = "select * from schema.table where field in " +
               "(select field from schema.table where field > " +
               startValue + ") and rownum <= 1000";
       rs = stmt.executeQuery(query);That's a quick look, anyway. A problem with this is the number of trips to the database to accomplish a single page pass; you'll either have to do a rs.last() to find the startValue for the next page, or loop through the entire contents of the page and keep track of the last value.
    Oracle gives many reasons for not implementing an easier way to do this (mostly to do with data concurrency) but I think they could work it out if they tried.

  • Need Information on oracle

    kindly guide me on below Point.
    We are having oracle 11G R2.
    1) more than 1,00,000 TPS . There will be one CSV file which will having approx these much records.
    2) We have to process these records and insert records in Our DB .
    what approach we should follow which will make insert faster.What kind of DB structure/table Structure we have to go for. ?

    user10366531 wrote:
    We are having oracle 11G R2. That is a product name and not a version number. 11.2.0.1 is for example a version number and meaningful. The product name is much less meaningful.
    1) more than 1,00,000 TPS . There will be one CSV file which will having approx these much records. What is TPS? And do you imply that a single CSV file has 1 million rows to load?
    2) We have to process these records and insert records in Our DB . Process how? Does the data in the CSV file need to be transformed prior to loading? Does the data in the CSV simply needs to loaded into a table? You need to be specific about what this entails.
    what approach we should follow which will make insert faster.What kind of DB structure/table Structure we have to go for. ?The fastest loads with SQL*Loader are direct path and parallel loads doing minimal transformation and processing logic in the control file - and loading into a table that has no constraints, no indexes and no triggers.
    However - this may not be suitable and may not meet requirements.
    The fastest way to drive a car is pedal-to-metal going down a straight. But not all roads are straights. Many have tight corners and S-curves and hairpin bends. Pedal-to-metal will simply result in a crash on such a road.

  • Need Information about Oracle DBA 9i Exam

    Hi all,
    I am from saudi arabia, and i would like to write OCP for 9iDBA. I tried to contact saudi arabia oracle. But no use.
    Can any body help regarding to find another center for OCP.
    Reply me on [email protected]
    Bye
    Raj

    You can take the exams at any Prometric testcenter.
    Online registration is available on http://www.2test.com
    More information about OCP can be found on
    http://www.oracle.com/education/certification/

  • Need information about Oracle HTML DB

    What is Oracle HTML DB?
    From where can i get the installation for this software?

    Did you take a look at the product information?
    http://www.oracle.com/technology/products/database/application_express/index.html
    C.

  • Need information about Oracle Forms & Reports server installation

    Hello Friends,
    First of all I am very new user for oracle forums, So please ignore if I posted wrong place.
    We are using Oracle Database 10g and Oracle forms & Reports server 6i version.
    We just purchased oracle forms & reports (currently known as a Oracle Fusion middleware) license.  As per my knowledge latest version doesn't support Oracle 10g database.
    My question is can somebody give me Oracle Database 10g supported Forms & Reports version?
    We are planning to upgrade.
    Help would be really appreciated.
    Thanks & Regards.

    Thanks a lot for prompt response.
    I get my answer from your certification matrix.  I appreciate your response.
    Now second question arise that We are using currently Database version of 10.2.0.1.0.
    And in a certification matrix shows supported version Oracle 10.2.0.4+.
    Now I am bit confused that currently working database supports or not?
    Still i am trying to install on My window 2008 R2 with IIS 7.0.
    Let me check what happens.
    Again Thanks a lot to ccortez and PaulM  for your quick response and help.

  • Need information on oracle enterprise repository

    Hi,
    I am planning to get started on oracle enterprise repository.
    I have read a lot about it st various blogs and now want to have hands on implementation of the same. Can someone  let me know where I can get some tutorials or examples to get started with it. Sincerely appreciate your help.
    Thanks.Sridhar.

    have a look at these links
    Oracle Enterprise Repository
    Installing Oracle Enterprise Repository
    Installation Guide
    ORA:FMW Fusion Middleware: Installing Oracle Enterprise repository 11g
    regards
    Nasir

  • Need info regarding Oracle UCM Accounts and Security Groups behaviour

    Need information regarding Oracle UCM Accounts and Security Groups behaviour.
    Oracle UCM version: 11.1.1.5.0
    Steps:
    1. Log in with "weblogic" user and created a content with id "content1"
    2. Applied "@acc1(R)" and "TestGroup1" to the cotent created in step 1
    3. Log out
    4. Log in as "acc1user1", the user is not able to see the "content1"
    5. Log out
    6. Log in as "role1user1", the user is not able to see the "content1"
    Account and Group information:
    1. User "acc1user1" is part of "@acc1(R)"
    2. User "role1user1" is part of "role1(R)" and is mapped to "TestGroup1" in UCM
    Expected:
    Both "acc1user1" and "role1user1" should be able to see "content1" as they have at least Read permission.
    Please help me understand why the users are not able to see the content.

    ACLs, like Accounts, are optional security setting which may add on some extra functionality to mandatory security groups. Likewise, the resulting permission is taken as an intersection of SG and ACLs.
    But in the second part the number of set of users is huge (approx say 600)I don't get this completely. Does this mean that those "sets of users" (users who see the same data) are distinct and that there is 600 of such groups?
    If you read thoroughly the manual I sent earlier, there is a recommendation that there should be maximum 50 security groups, and you should use accounts, should this number be exceeded. This means you could have all the documents in one security group (and have one common role with Read permission), but combine it with accounts. ACLs are not a good choice here - their performance and manageability is much worse than of accounts. ACLs are primarily used if you expect security settings to change during the lifetime (e.g. a project manager adds temporarily rights to access an item to another user, and revokes it when the user finishes his or her work).
    Note that accounts as well as permissions of users within accounts can also be mapped externally (from LDAP/AD) and it usually follows some kind of org chart.
    I'd feel more comfortable not to speak about users, security groups, roles, etc., but about some real-life objects and scenarios.

  • I need help changing my security information because i forgot it and i clicked forgot your answers on the apple website and its sopost to send me an email saying how to reset it but i never got an email

    i need help changing my security information because i forgot it and i clicked forgot your answers on the apple website and its sopost to send me an email saying how to reset it but i never got an email.

    Contact iTunes support:
    http://www.apple.com/support/itunes/contact/

  • NoClassDefFoundError: oracle/security/jps/JpsException

    I have a web service developed in JDeveloper 12c (12.1.2) using the Generate Web Service from WSDL option. Inside the service implementation class I create a root application module like so:
    ApplicationModule am = Configuration.createRootApplicationModule("xxx.model.XXX_AppModule", "XXX_AppModuleLocal");
    When I test it in the integrated WebLogic server through JDeveloper, the web service works fine. However when I deploy the application (including the web service) to a production WebLogic server, I get the following error in the logs when testing it:
    ####<22-Jul-2014 14:51:09 o'clock BST> <Notice> <StdErr> <XXXXXXXXXXXX> <Engineering> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1406037069434> <BEA-000000> <Jul 22, 2014 2:51:09 PM oracle.adf.share.ADFContext getCurrent
    WARNING: Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    For more information please enable logging for oracle.adf.share.ADFContext at FINEST level.>
    ####<22-Jul-2014 14:51:10 o'clock BST> <Error> <com.sun.xml.ws.server.sei.TieHandler> <XXXXXXXXXXXX> <Engineering> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1406037070692> <BEA-000000> <oracle/security/jps/JpsException
    java.lang.NoClassDefFoundError: oracle/security/jps/JpsException
      at java.lang.Class.forName0(Native Method)
      at java.lang.Class.forName(Class.java:270)
      at oracle.adf.share.common.ClassUtils.forName(ClassUtils.java:53)
      at oracle.adf.share.security.credentialstore.CredentialStoreContext.getCredentialStorage(CredentialStoreContext.java:186)
      at oracle.adf.share.security.credentialstore.CredentialStoreContext.getCredentialProvisioner(CredentialStoreContext.java:109)
      at oracle.adf.share.security.credentialstore.CredentialProvisioner.<init>(CredentialProvisioner.java:44)
      at oracle.adf.share.jndi.CredentialStoreHelper.<init>(CredentialStoreHelper.java:54)
      at oracle.adf.share.jndi.CredentialStoreHelper.<init>(CredentialStoreHelper.java:48)
      at oracle.adf.share.jndi.ReferenceStoreHelper.loadCredentials(ReferenceStoreHelper.java:1082)
      at oracle.adf.share.jndi.ReferenceStoreHelper.createReference(ReferenceStoreHelper.java:726)
      at oracle.adf.share.jndi.ReferenceStoreHelper.getReferencesMapEx(ReferenceStoreHelper.java:331)
      at oracle.adf.share.jndi.ContextImpl.load(ContextImpl.java:850)
      at oracle.adf.share.jndi.ContextImpl.init(ContextImpl.java:480)
      at oracle.adf.share.jndi.ContextImpl.<init>(ContextImpl.java:78)
      at oracle.adf.share.jndi.InitialContextFactoryImpl.getInitialContext(InitialContextFactoryImpl.java:17)
      at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:684)
      at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:307)
      at javax.naming.InitialContext.init(InitialContext.java:242)
      at javax.naming.InitialContext.<init>(InitialContext.java:216)
      at oracle.adf.share.jndi.AdfInitialContext.<init>(AdfInitialContext.java:93)
      at oracle.adf.share.jndi.AdfInitialContext.newAdfInitialContext(AdfInitialContext.java:74)
      at oracle.adf.share.jndi.AdfJndiConfig.getDefaultConnectionsContext(AdfJndiConfig.java:79)
      at oracle.adf.share.config.FallbackConfigImpl.getDefaultConnectionsContext(FallbackConfigImpl.java:306)
      at oracle.adf.share.config.ADFConfigImpl.getConnectionsContext(ADFConfigImpl.java:755)
      at oracle.jbo.client.CADatabaseConnectionProvider.getDatabaseProvider(CADatabaseConnectionProvider.java:177)
      at oracle.jbo.client.CADatabaseConnectionProvider.loadConnectionProperties(CADatabaseConnectionProvider.java:151)
      at oracle.jbo.client.Configuration.initializeFromConnectionName(Configuration.java:1109)
      at oracle.jbo.client.config.ConfigurationProviderManager.resolveConfiguration(ConfigurationProviderManager.java:113)
      at oracle.jbo.client.config.ConfigurationProviderManager.getConfiguration(ConfigurationProviderManager.java:54)
      at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:534)
      at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1393)
      at xxx.service.util.ServiceUtils.getApplicationModule(ServiceUtils.java:28)
      at com.baesystems.wdms.ELKITInterfaceImpl.getLoomDetail(ELKITInterfaceImpl.java:85)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
      at java.lang.reflect.Method.invoke(Method.java:606)
      at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:117)
      at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:91)
      at com.sun.xml.ws.server.InvokerTube$2.invoke(InvokerTube.java:149)
      at com.sun.xml.ws.server.sei.SEIInvokerTube.processRequest(SEIInvokerTube.java:88)
      at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:1136)
      at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:1050)
      at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:1019)
      at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:877)
      at com.sun.xml.ws.server.WSEndpointImpl$2.process(WSEndpointImpl.java:420)
      at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:687)
      at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:266)
      at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:169)
      at weblogic.wsee.jaxws.WLSServletAdapter.handle(WLSServletAdapter.java:205)
      at weblogic.wsee.jaxws.HttpServletAdapter$AuthorizedInvoke.run(HttpServletAdapter.java:634)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
      at weblogic.wsee.util.ServerSecurityHelper.authenticatedInvoke(ServerSecurityHelper.java:108)
      at weblogic.wsee.jaxws.HttpServletAdapter$3.run(HttpServletAdapter.java:278)
      at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:287)
      at weblogic.wsee.jaxws.JAXWSServlet.doRequest(JAXWSServlet.java:134)
      at weblogic.servlet.http.AbstractAsyncServlet.service(AbstractAsyncServlet.java:99)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:844)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:238)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3363)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      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:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    Caused By: java.lang.ClassNotFoundException: oracle.security.jps.JpsException
      at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
      at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
      at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
      at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
      at java.lang.Class.forName0(Native Method)
      at java.lang.Class.forName(Class.java:270)
      at oracle.adf.share.common.ClassUtils.forName(ClassUtils.java:53)
      at oracle.adf.share.security.credentialstore.CredentialStoreContext.getCredentialStorage(CredentialStoreContext.java:186)
      at oracle.adf.share.security.credentialstore.CredentialStoreContext.getCredentialProvisioner(CredentialStoreContext.java:109)
      at oracle.adf.share.security.credentialstore.CredentialProvisioner.<init>(CredentialProvisioner.java:44)
      at oracle.adf.share.jndi.CredentialStoreHelper.<init>(CredentialStoreHelper.java:54)
      at oracle.adf.share.jndi.CredentialStoreHelper.<init>(CredentialStoreHelper.java:48)
      at oracle.adf.share.jndi.ReferenceStoreHelper.loadCredentials(ReferenceStoreHelper.java:1082)
      at oracle.adf.share.jndi.ReferenceStoreHelper.createReference(ReferenceStoreHelper.java:726)
      at oracle.adf.share.jndi.ReferenceStoreHelper.getReferencesMapEx(ReferenceStoreHelper.java:331)
      at oracle.adf.share.jndi.ContextImpl.load(ContextImpl.java:850)
      at oracle.adf.share.jndi.ContextImpl.init(ContextImpl.java:480)
      at oracle.adf.share.jndi.ContextImpl.<init>(ContextImpl.java:78)
      at oracle.adf.share.jndi.InitialContextFactoryImpl.getInitialContext(InitialContextFactoryImpl.java:17)
      at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:684)
      at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:307)
      at javax.naming.InitialContext.init(InitialContext.java:242)
      at javax.naming.InitialContext.<init>(InitialContext.java:216)
      at oracle.adf.share.jndi.AdfInitialContext.<init>(AdfInitialContext.java:93)
      at oracle.adf.share.jndi.AdfInitialContext.newAdfInitialContext(AdfInitialContext.java:74)
      at oracle.adf.share.jndi.AdfJndiConfig.getDefaultConnectionsContext(AdfJndiConfig.java:79)
      at oracle.adf.share.config.FallbackConfigImpl.getDefaultConnectionsContext(FallbackConfigImpl.java:306)
      at oracle.adf.share.config.ADFConfigImpl.getConnectionsContext(ADFConfigImpl.java:755)
      at oracle.jbo.client.CADatabaseConnectionProvider.getDatabaseProvider(CADatabaseConnectionProvider.java:177)
      at oracle.jbo.client.CADatabaseConnectionProvider.loadConnectionProperties(CADatabaseConnectionProvider.java:151)
      at oracle.jbo.client.Configuration.initializeFromConnectionName(Configuration.java:1109)
      at oracle.jbo.client.config.ConfigurationProviderManager.resolveConfiguration(ConfigurationProviderManager.java:113)
      at oracle.jbo.client.config.ConfigurationProviderManager.getConfiguration(ConfigurationProviderManager.java:54)
      at oracle.jbo.common.ampool.PoolMgr.findPool(PoolMgr.java:534)
      at oracle.jbo.client.Configuration.createRootApplicationModule(Configuration.java:1393)
      at xxx.service.util.ServiceUtils.getApplicationModule(ServiceUtils.java:28)
      at com.baesystems.wdms.ELKITInterfaceImpl.getLoomDetail(ELKITInterfaceImpl.java:85)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
      at java.lang.reflect.Method.invoke(Method.java:606)
      at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:117)
      at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:91)
      at com.sun.xml.ws.server.InvokerTube$2.invoke(InvokerTube.java:149)
      at com.sun.xml.ws.server.sei.SEIInvokerTube.processRequest(SEIInvokerTube.java:88)
      at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:1136)
      at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:1050)
      at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:1019)
      at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:877)
      at com.sun.xml.ws.server.WSEndpointImpl$2.process(WSEndpointImpl.java:420)
      at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:687)
      at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:266)
      at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:169)
      at weblogic.wsee.jaxws.WLSServletAdapter.handle(WLSServletAdapter.java:205)
      at weblogic.wsee.jaxws.HttpServletAdapter$AuthorizedInvoke.run(HttpServletAdapter.java:634)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
      at weblogic.wsee.util.ServerSecurityHelper.authenticatedInvoke(ServerSecurityHelper.java:108)
      at weblogic.wsee.jaxws.HttpServletAdapter$3.run(HttpServletAdapter.java:278)
      at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:287)
      at weblogic.wsee.jaxws.JAXWSServlet.doRequest(JAXWSServlet.java:134)
      at weblogic.servlet.http.AbstractAsyncServlet.service(AbstractAsyncServlet.java:99)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:844)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:341)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:238)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3363)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3333)
      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:2220)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2146)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2124)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1564)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:295)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:254)
    I thought that maybe I needed to include the jsp-api.jar in the WEB-INF/lib directory in the web service WAR file, but that didn't make any difference.
    Any ideas?
    For reference, this is the structure of the EAR file that I deployed to the server:
    Application.ear
    /adf
      /META-INF
        /adf-config.xml
        /connections.xml
        /wsm-policy.xml
    /lib
      /adf-loc.jar
    /META-INF
      /application.xml
      /cwallet.sso
      /weblogic-application.xml
    /View.war (contains Trinidad pages and ADF BC classes)
    /WebService.war (contains web service and ADF BC classes)
      /WEB-INF
        /classes
        /lib
          /jps-api.jar
        /wsdl
          /XXXService.wsdl
          /xxx.xsd
        /web.xml
        /weblogic.xml

    The error is thrown by the weblogic Classloader as it is unable to load the class/package oracle.security.jps.JpsException
    This class is related to OPSS framework. Please add the relevant jar having the above class to the classpath or package it within the application to solve the issue.
    Vijaya
    =====

Maybe you are looking for

  • Boot Camp and Windows XP right-click

    I have a Mac Book Pro where I have installed Boot Camp and Windows XP with great success. I have one problem; I can not right-click. When I press ctrl+mousepad button it still works as an left-click. Very frustrating. Can anyone please help? And no,

  • Incorrect Financial Statment Item

    Hi experts, I use the standard report in BI content : 0FIGL_VC1_Q0001 (Financial Statement and P&L: Actual/Actual Comparison) . I have loaded Financial Statement Item Hierarchy successful. It is correct when I view in Administration Workbech (rsa1),

  • Time machine puts icons back on desktop

    whenever Time Machine backs up my computer, icons for Adobe Flash player, Firefox, hp, etc. appear on my desktop. Is there any way I can stop this from happening?

  • XMP file problem

    As a photo archivist at a museum I need to be able to fill in the description fields of the xmp file before the image is created. My work flow is exceptionally inefficient due to wait time as the scanner creates the image file. Short of using two sca

  • Java plugin support discontinued

    According to some techinical articles released by Apple, Java update 10 for OSX 10.5 no longer supports the java plugin.  As a result, java will no longer work with Firefox or Chrome unless users update to OSX 10.6.  Although there may be valid techn