ResourceAdapter not found during deployment using WL 7.0 SP2

Hi,
          Am using WL 7.0 SP2 on Win2k w/ JDK 1.4.
          Am using the non-managed mode (wherein the admin server is also the managed-server).
          Am trying to deploy my RA. On uploading the RAR using
          the admin console, I get the following error (from the server.log):
          Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info Deployer Initiating a deployment task with id 8 for application bs-ra
          Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info Deployer preparing application bs-ra on vspl-dev-server
          Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info Deployer prepared application bs-ra on vspl-dev-server
          Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info Management Configuration changes for domain saved to the repository.
          Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info Deployer activating application bs-ra on vspl-dev-server
          Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info Connector Initializing connection pool for resource adapter BookStore-
          Resource Adapter_eis/BSResourceAdapter.
          Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Error Deployer Unexpected error was encountered during the deployment proce
          ss.
          Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Error Deployer The Slave Deployer failed to complete the deployment task wi
          th id 8 for the application bs-ra.
          java.lang.NoClassDefFoundError: javax/resource/spi/ResourceAdapter
               at java.lang.Class.getMethods0(Native Method)
               at java.lang.Class.getDeclaredMethods(Class.java:1034)
               at java.beans.Introspector$1.run(Introspector.java:847)
               at java.security.AccessController.doPrivileged(Native Method)
               at java.beans.Introspector.getPublicDeclaredMethods(Introspector.java:845)
               at java.beans.Introspector.getTargetEventInfo(Introspector.java:551)
               at java.beans.Introspector.getBeanInfo(Introspector.java:289)
               at java.beans.Introspector.getBeanInfo(Introspector.java:76)
               at weblogic.connector.common.internal.ConnectionPool.<init>(ConnectionPool.java:402)
               at weblogic.connector.common.internal.ConnectionPoolManager.addManagedConnectionFactory(ConnectionPoolManager.java:64)
               at weblogic.connector.deploy.ConnectorDeployer.activate(ConnectorDeployer.java:315)
               at weblogic.connector.deploy.ConnectorModule.activate(ConnectorModule.java:221)
               at weblogic.j2ee.J2EEApplicationContainer.activateModule(J2EEApplicationContainer.java:1662)
               at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1087)
               at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1074)
               at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1110)
               at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:730)
               at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
               at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
               at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
          --------------- nested within: ------------------
          weblogic.management.ManagementException: 149233 - with nested exception:
          [java.lang.NoClassDefFoundError: javax/resource/spi/ResourceAdapter]
               at weblogic.management.deploy.slave.SlaveDeployer.convertThrowable(SlaveDeployer.java:834)
               at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1180)
               at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:730)
               at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
               at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
               at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
          Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Warning Deployer Failures detected initiating weblogic.management.ManagementE
          xception: 149233 - with nested exception:
          [java.lang.NoClassDefFoundError: javax/resource/spi/Resource
                                                                                              Adapter] task for application Activate application bs-ra on
          vspl-dev-server
          Jun 9, 2003 5:32:32 PM EDT vspl-dev-server Info Management Configuration changes for domain saved to the repository.
          Jun 9, 2003 5:32:36 PM EDT vspl-dev-server Error Connector ManagedConnectionFactory not found for jndiName eis/BSResour
          ceAdapter.
          Jun 9, 2003 5:32:39 PM EDT vspl-dev-server Error Connector ManagedConnectionFactory not found for jndiName eis/BSResour
          ceAdapter.
          Jun 9, 2003 5:32:47 PM EDT vspl-dev-server Error Connector ManagedConnectionFactory not found for jndiName eis/BSResour
          ceAdapter.
          Jun 9, 2003 5:32:48 PM EDT vspl-dev-server Error Connector ManagedConnectionFactory not found for jndiName eis/BSResour
          ceAdapter.
          There are two things I observer here.
          1. The ResourceAdapter class does not seem to be found by Weblogic. It's part of the javax.resource.spi package.
          I checked the weblogic.jar archive in the WL-HOME/server/lib folder. It does not seem to have the class. Why ?
          2. It complains about the ManagedConnectionFactory not being found. Am assuming that if the RA was deployed
          in the first place, I would not have seen this error (coz, the ManagedConnectionFactory would have been
          deployed in the previous step). Right ?
          I did observe that WL 7.0 supports only JCA 1.0. In JCA 1.0's (public) API, there is no mention of the
          javax.resource.spi.ResourceAdapter class, though the spec talks about it. ??
          Note: I had designed and implemented my RA as per JCA 1.5 (but nothing 1.5-specific, I guess).
          Any ideas ?
          thanks,
          raghu
          

I figured it out. Darn simple.
          My ManagedConnectionFactory implementation referenced ResourceAdapter as
          it has to implement the ManagedConnnectionFactory interface of JCA 1.5.
          In JCA 1.0 (which is supported by WL 7.0 & 8.1), the ResourceAdapater
          is undefined. Hence, the classloading problem.
          Sorry for any confusion.
          raghu
          raghu h wrote:
          > Hi,
          >
          > Am using WL 7.0 SP2 on Win2k w/ JDK 1.4. Am using the non-managed mode
          > (wherein the admin server is also the managed-server).
          >
          > Am trying to deploy my RA. On uploading the RAR using
          > the admin console, I get the following error (from the server.log):
          >
          >
          >
          > -----------------------------------------------------------------------------------------------------------------
          >
          >
          > Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info
          > Deployer Initiating a deployment task with id 8 for
          > application bs-ra
          > Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Info
          > Deployer preparing application bs-ra on
          > vspl-dev-server Jun 9, 2003 5:32:31 PM EDT
          > vspl-dev-server Info Deployer prepared application
          > bs-ra on vspl-dev-server Jun 9, 2003 5:32:31 PM EDT
          > vspl-dev-server Info Management Configuration
          > changes for domain saved to the repository. Jun 9, 2003 5:32:31 PM
          > EDT vspl-dev-server Info Deployer activating
          > application bs-ra on vspl-dev-server Jun 9, 2003 5:32:31 PM
          > EDT vspl-dev-server Info Connector
          > Initializing connection pool for resource adapter BookStore-
          >
          > Resource Adapter_eis/BSResourceAdapter.
          >
          > Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Error
          > Deployer Unexpected error was encountered during the
          > deployment proce
          >
          > ss.
          >
          > Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Error
          > Deployer The Slave Deployer failed to complete the deployment
          > task wi
          >
          > th id 8 for the application bs-ra.
          >
          > java.lang.NoClassDefFoundError: javax/resource/spi/ResourceAdapter
          > at java.lang.Class.getMethods0(Native Method)
          > at java.lang.Class.getDeclaredMethods(Class.java:1034)
          > at java.beans.Introspector$1.run(Introspector.java:847)
          > at java.security.AccessController.doPrivileged(Native Method)
          > at
          > java.beans.Introspector.getPublicDeclaredMethods(Introspector.java:845)
          > at java.beans.Introspector.getTargetEventInfo(Introspector.java:551)
          > at java.beans.Introspector.getBeanInfo(Introspector.java:289)
          > at java.beans.Introspector.getBeanInfo(Introspector.java:76)
          > at
          > weblogic.connector.common.internal.ConnectionPool.<init>(ConnectionPool.java:402)
          >
          > at
          > weblogic.connector.common.internal.ConnectionPoolManager.addManagedConnectionFactory(ConnectionPoolManager.java:64)
          >
          > at
          > weblogic.connector.deploy.ConnectorDeployer.activate(ConnectorDeployer.java:315)
          >
          > at
          > weblogic.connector.deploy.ConnectorModule.activate(ConnectorModule.java:221)
          >
          > at
          > weblogic.j2ee.J2EEApplicationContainer.activateModule(J2EEApplicationContainer.java:1662)
          >
          > at
          > weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1087)
          >
          > at
          > weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1074)
          >
          > at
          > weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1110)
          >
          > at
          > weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:730)
          >
          > at
          > weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
          >
          > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
          > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
          > --------------- nested within: ------------------
          > weblogic.management.ManagementException: 149233 - with nested exception:
          > [java.lang.NoClassDefFoundError: javax/resource/spi/ResourceAdapter]
          > at
          > weblogic.management.deploy.slave.SlaveDeployer.convertThrowable(SlaveDeployer.java:834)
          >
          > at
          > weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1180)
          >
          > at
          > weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:730)
          >
          > at
          > weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
          >
          > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
          > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
          > Jun 9, 2003 5:32:31 PM EDT vspl-dev-server Warning
          > Deployer Failures detected initiating
          > weblogic.management.ManagementE
          >
          > xception: 149233 - with nested exception:
          >
          > [java.lang.NoClassDefFoundError: javax/resource/spi/Resource
          >                                                                                   
          > Adapter] task for application Activate application bs-ra on
          >
          > vspl-dev-server
          >
          > Jun 9, 2003 5:32:32 PM EDT vspl-dev-server Info
          > Management Configuration changes for domain saved to the
          > repository. Jun 9, 2003 5:32:36 PM EDT vspl-dev-server
          > Error Connector ManagedConnectionFactory not found for
          > jndiName eis/BSResour
          >
          > ceAdapter.
          >
          > Jun 9, 2003 5:32:39 PM EDT vspl-dev-server Error
          > Connector ManagedConnectionFactory not found for jndiName
          > eis/BSResour
          >
          > ceAdapter.
          >
          > Jun 9, 2003 5:32:47 PM EDT vspl-dev-server Error
          > Connector ManagedConnectionFactory not found for jndiName
          > eis/BSResour
          >
          > ceAdapter.
          >
          > Jun 9, 2003 5:32:48 PM EDT vspl-dev-server Error
          > Connector ManagedConnectionFactory not found for jndiName
          > eis/BSResour
          >
          > ceAdapter.
          >
          > -------------------------------------------------------------------------------------------------------------
          >
          >
          >
          > There are two things I observer here. 1. The ResourceAdapter class does
          > not seem to be found by Weblogic. It's part of the javax.resource.spi
          > package.
          > I checked the weblogic.jar archive in the WL-HOME/server/lib folder. It
          > does not seem to have the class. Why ?
          > 2. It complains about the ManagedConnectionFactory not being found. Am
          > assuming that if the RA was deployed
          > in the first place, I would not have seen this error (coz, the
          > ManagedConnectionFactory would have been
          > deployed in the previous step). Right ?
          >
          > I did observe that WL 7.0 supports only JCA 1.0. In JCA 1.0's (public)
          > API, there is no mention of the
          > javax.resource.spi.ResourceAdapter class, though the spec talks about
          > it. ??
          >
          >
          > Note: I had designed and implemented my RA as per JCA 1.5 (but nothing
          > 1.5-specific, I guess).
          >
          > Any ideas ?
          >
          > thanks,
          > raghu
          >
          >
          >
          >
          

Similar Messages

  • Class not found during deployment

    I'm getting "class not found during deserialization of descriptor" during deployment of an EJB. What does this mean?

    The problem is I am trying to use JavaMail in an EJB and it gives me the error if I create a javax.mail.Session. If I comment out the Session, deployment is fine. I am thinking that maybe the problem is I am using 8i version 8.1.5 and it only supports java 1.1.8.

  • Class not found during deserialization of descriptor UserSession

    I am using JDeveloper 3.1.1.2 (build 767) to deploy an EJB to Oracle 8.1.6 and I get the following error message....
    Generating EJBHome and EJBObject on the server...
    Class not found during deserialization of descriptor UserSession
    *** Errors occurred while deploying the EJB to JServer ***
    *** Deployment completed ***
    I've tried
    a) to deploy all the classes in the project,
    b) create a new project step by step,
    c) use 'deployejb' and I still get the same error...
    Can anyone help? Thanks.

    Yep, JDeveloper auto generates the <>.ejb and it is a binary file.
    Seems a pretty specific error message....any help available from the JDev team??

  • Error in File name or class name not found during Automation operation: 'CreateObj​ect'

    Hello Team,
    When I am trying to execute the below code i am getting the following error. Any help would be greatly appreciated.
    Set oFSO = CreateObject("Scripting.FileSystemObject")
    If Not oFSO.FolderExists(SavePath) Then
    Set f = oFSO.CreateFolder(SavePath)
    Else
    End If
    53 4/11/2014 12:27:22 PM Error:
    Error in <NoName(4).VBS> (Line: 9, Column: 1):
    File name or class name not found during Automation operation: 'CreateObject'
    I have googled through the error and tried to re-register the scrrun.dll using regsvr32 eventhogh it is successfully registered, i am getting the following error. My PC is windows 7 32bit OS.
    any help is greatly appreciated.

    The following script class will write a log file entry. See if it will run for you.
    The script is using a class object that you might not have seen before. A little intro:  The top section is just for testing the class. Normally I just comment this out after the class is working well.  It should run right way. I would save the vbs file in the editor, That way when you are using autoactpath or currentscriptpath variables they will be able resolve the paths.
    Paul
    Attachments:
    LoggingCode_V2.VBS ‏5 KB

  • Import not found when deploying to Standalone OC4J

    Hi,
    I'm developing a small application, consisting of a few classes and a few jsp pages. I'm using JDeveloper 9.0.3.1 with the sun j2sdk 1.4.2 for windows.
    I test my application with the embedded OC4J in Jdeveloper, and it runs fine. But when I deploy it to the standalone OC4J, I get this error:
    500 Internal Server Error
    OracleJSP: oracle.jsp.provider.JspCompileException:
    Errores de compilación:F:\programas\Oracle\jdeveloper\j2ee\home\application-deployments\Workspace4-WSWrappers-WS\WebServices\persistence\_pages\\_integrate2.java
    Note: sun.tools.javac.Main has been deprecated.
    F:\programas\Oracle\jdeveloper\j2ee\home\application-deployments\Workspace4-WSWrappers-WS\WebServices\persistence\_pages\_integrate2.java:6: Class webservices.Integrator not found in import.
    import webservices.Integrator;
    ^
    1 error, 1 warning
    This error does not happen when using the embedded OC4J server, only when deploying to the standalone. Since leaving JDeveloper up all times to use de app is not an option :) I really would appreciate any help towards solving this matter. I suspect it has to do with deployment options and whatnot, but I can't find anything wrong. Of course, I'm fairly new to this (jsp/OC4J), so it can be an obvious mistake right under my nose.
    thanks
    Javier

    Fixed. The problem was my Standalone OC4J was not properly installed, AND I was doin the deplyment wrong. Now it works by creating a war file, deploying to the war file and THEN deploying to the OC4J Standalone connection.
    So, if you start seeing "import not found" when deploying to standalone and it works on the embedded, check you war files to see if they REALLY are packing the classes they are supposed to carry.

  • " APPLICATION NOT FOUND"  while deploying Web dynpro java Application

    Hi, I am getting a message that "application not found " While deploying the web dynpro java application .......... please give me a solution for this .

    Hi Ram,
    This error comes generally when your webdynpro project does not have an application. To create an application in your webdynpro project follow the underlying steps:
    <Project>->WebDynpro->Applications ---> right click and create New Application.
    Follow the steps to create the application.
    Now if you create archive and deploy, it will not give you the error again.
    Best Regards,
    Ravi

  • CRM 7.0 upgrade ( i5/OS PASE program not found or in use)

    Hi,
    We are upgrading CRM 5.0 to CRM 7.0 on iSeries (V6r1) and facing the following issue.
    When I execute this command
       STARTUP    SID(CD3)  TYPE(ABAP)  RESTART(YES)  DVDPATH('/Inst_DVDs/51036889')
            SAPUPLIB(SAPUP)  OPTIONS('jce_policy_zip=/Inst_DVDs/51036889/local_policy.jar')
    iSeries show this error message in "UPG_A_CD3" job log.
       Message . . . . :   i5/OS PASE program not found or in use. Path name is
           /usr/sap/CD3/upg/STARTUP.                                             
    Does anyone has any idea what could be wrong ?
    Thank you,
    Jack.

    Hi,
    We are upgrading CRM 5.0 to CRM 7.0 on iSeries (V6r1) and facing the following issue.
    When I execute this command
       STARTUP    SID(CD3)  TYPE(ABAP)  RESTART(YES)  DVDPATH('/Inst_DVDs/51036889')
            SAPUPLIB(SAPUP)  OPTIONS('jce_policy_zip=/Inst_DVDs/51036889/local_policy.jar')
    iSeries show this error message in "UPG_A_CD3" job log.
       Message . . . . :   i5/OS PASE program not found or in use. Path name is
           /usr/sap/CD3/upg/STARTUP.                                             
    Does anyone has any idea what could be wrong ?
    Thank you,
    Jack.

  • HT1386 my sync stops due to iphone not found during the final copy step...how do I fix?

    my sync stops with an error message that iphone not founds during the final copy step...how to I fix?  always work before.

    The backup is located at: iTunes/Preferences/Devices. Select the backup from the window and hit the delete key. Then connect your iPhone to your computer. It'll take a new backup.

  • I want to disable 'Spotlight' for repairing my disk "Macintosh HD" , but somehow the command 'sudo mdutil -a -i off' does not work in 'Terminal'. I get result as ' bash: sudo: command not found' .I am using OS 10.10.  Please help.

    I want to disable 'Spotlight' for repairing my disk "Macintosh HD" , but somehow the command 'sudo mdutil -a -i off' does not work in 'Terminal'. I get result as ' bash: sudo: command not found' .I am using OS 10.10.  Please help.

    It appears that you may not have a properly installed OS X system.
    You must be connected to the Internet to reinstall OS X.
    In the menu bar, choose Apple menu > Restart. Once your Mac restarts (and the gray screen appears), hold down the Command (⌘) and R keys.
    Select “Disk Utility,” and then click Continue.
    Select your startup disk from the list on the left, and then Repair Disk.
    After disk is repaired, select Reinstall OS X, then click Continue.
    Follow the onscreen instructions. In the pane where you select a disk, select your current OS X disk

  • Trying to transfer a video clip from iPhone to iPad using transfer app it says device not found, I have used this before wifi is fine and both  devices are connected ?

    Trying to transfer a video clip from iPhone to iPad using transfer app it says device not found, I have used this before wifi is fine and both  devices are connected ?

    That does not involve iPhoto for the Mac in any way - try the iPad forum
    I will request your post be moved
    LN

  • Operating system not found when deploying to machines with two hard drives using MDT 2013.

    Computers with two hard drives will not boot after the install OS step in the task sequence.  I get the "An operating system wasn't found.  Try removing drives that don't contain an operating system" error.  I am able to get the
    machine to boot by swapping the hard drives' boot order, but the  task sequence won't complete after this.  The deployment works fine on machines with one hard drive, and I'm not getting any errors from the task sequence.  I'm deploying windows7
    enterprise x64 using MDT2013.  This is a new custom image and task sequence generated using MDT2013.  I can't remove the second hard drive because there are scripts that run on the second hard drive during deployment and also because I don't desire
    to remove and re-install 250 hard drives.  I've not experienced this problem with earlier versions of MDT.

    The bdd.log file you sent does not show two internal drives, it shows only one.
    Console > Please wait while DiskPart scans your configuration... ZTIDiskpart 12/16/2013 9:57:04 AM 0 (0x0000)
    Console > DiskPart has finished scanning your configuration. ZTIDiskpart 12/16/2013 9:57:05 AM 0 (0x0000)
    Console > DISKPART> ZTIDiskpart 12/16/2013 9:57:05 AM 0 (0x0000)
    Console > Disk ### Status Size Free Dyn Gpt ZTIDiskpart 12/16/2013 9:57:05 AM 0 (0x0000)
    Console > -------- ------------- ------- ------- --- --- ZTIDiskpart 12/16/2013 9:57:05 AM 0 (0x0000)
    Console > Disk 0 Online 60 GB 60 GB ZTIDiskpart 12/16/2013 9:57:05 AM 0 (0x0000)
    Console > DISKPART> ZTIDiskpart 12/16/2013 9:57:05 AM 0 (0x0000)
    Console > Volume ### Ltr Label Fs Type Size Status Info ZTIDiskpart 12/16/2013 9:57:05 AM 0 (0x0000)
    Console > ---------- --- ----------- ----- ---------- ------- --------- -------- ZTIDiskpart 12/16/2013 9:57:05 AM 0 (0x0000)
    Console > Volume 0 D DVD-ROM 0 B No Media ZTIDiskpart 12/16/2013 9:57:05 AM 0 (0x0000)
    Is this the problem?
    Keith Garner - keithga.wordpress.com

  • FormTemplate not found Exception while using adobe Services

    Hi,
    We are trying to create a pdf file using Adobe Services from webDynpro.
    However, in doing so, we get an error saying-
    "The error is:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException:
    FormTemplate was not found"
    Followed by the message-
    java.io.FileNotFoundException: ./temp/webdynpro/public/asianpaints.com/login_form_using_adobe/webdynpro/Components/com.apl.test.login_form_using_adobe.LoginForm/PdfForm_InteractiveForm.xdp (No such file or directory
    (errno:2))
    at java.io.FileInputStream.open(Native Method)
    at java.io.FileInputStream.<init>(FileInputStream.java:106)
    at
    com.sap.tc.webdynpro.clientserver.adobe.AdobeFormHelper.getTemplateURL
    (AdobeFormHelper.java:659)
    However, the PdfForm_InteractiveForm.xdp (template Source) file exists
    in the specified position.We are using Adobe Reader 6.0 on NWD04
    Could you please let us know the solution to this problem at the
    earliest as we are in the midst of the development.
    Thanks in advance
    Apeksha

    Hi,
    Thanks for the reply. I worked recreated the application by simple reinserting the interactive UI element and binding its dataSource context with a node whose values i need to display in the pdf format and pdfsource bound to attibute of type binary. However, when i deploy, i get the following exception:
    Processing HTTP request to servlet [dispatcher] finished with error.
    The error is: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Error during call to AdobeDocumentServer: Failed to create a Data Manager. Please ensure that the Document Services Data Manager service is running:
    com.adobe.FailedCreationException
    Exception id: [001083FE64E6006900000218000010E80004194FC07D8B75]
    However, the Document Services Data Manager service is already running along with IIOP provider.Are there some other things that need to be taken care of?
    Thanks in Advance
    Apeksha

  • File not found during installation (WinXP)

    Well, I downloaded Oracle 11g for Windows (32 bit) from http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html, and, basically, after having had some trouble configuring a new database, I selected the option to (simply) install a database through the wizard. I breezed through the settings, and, ran the installation wizard, however, some files seem not to be available within \win32_11gR2_database_1of2\database, or perhaps my laptop (Amilo Pro 8210) is too slow to be able to read these files.
    The errors show up during Setting up Oracle Database 11g 11.2.0.10. The errors showing up within the UI are as follows:
    File not found F:\app\Jon\product\11.2.0\dbhome_1\bin\db2gc
    File not found F:\app\Jon\product\11.2.0\dbhome_1\oc4j\OC4J_DBConsole\config\system-application.xml
    File not found F:\app\Jon\product\11.2.0\db_home_1\oc4j\j2ee\OC4j_DBConsole\config\system-jazn-data.xml
    NOTE: It is quite painful that there is no functionality to enable me to upload attachments (e.g. screenshots and log files) because it is very time consuming to copy everything manually, and, it is human nature to get bored typing after a while, so please, Oracle, pimp this profile :~) I did not take exhaustive screenshots, the error log files shows quite a few exceptions as well:
    oraInstall2012-06-17_08-09-30PM.err
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup12.jar (The system cannot find the path specified)
         java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup12.jar (The system cannot find the path specified)
         java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup5.jar (The system cannot find the path specified)
         java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup5.jar (The system cannot find the path specified)
         java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup19.jar (The system cannot find the path specified)
         java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup19.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup1.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup1.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup20.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup20.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup15.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup15.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup8.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup8.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup11.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup11.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup4.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup4.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup18.jar (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup18.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup14.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup14.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup7.jar (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup7.jar (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup3.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup3.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup10.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup10.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup17.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup17.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup13.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup13.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup6.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup6.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup2.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup2.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup16.jar (The system cannot find the path specified)
         C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup16.jar (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup9.jar (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.ctx\11.2.0.1.0\1\DataFiles\filegroup9.jar (The system cannot find the path specified)
    java.io.FileNotFoundException: C:\Documents and Settings\Jon\My Documents\Downloads\win32_11gR2_database_1of2\database\stage\Components\oracle.sysman.console.db\11.2.0.1.0\1\DataFiles\filegroup3.jar (The system cannot find the path specified)
    NOTE: Due to the message limit of 30000 characters I could not post the log file, nor upload it because no such options is available within
    Database Installation I had to chop off parts of the error file as well, patiently highlighting the filenames of the jar files.
    oraInstall2012-06-17_08-09-30PM.out
    You can find the log of this install session at:
    C:\Program Files\Oracle\Inventory\logs\installActions2012-06-17_08-09-30PM.log
    Dll to load is C:\DOCUME~1\Jon\LOCALS~1\Temp\OraInstall2012-06-17_08-09-30PM\Win32RunProcesses.dll
    Loading psapi.dll from C:\DOCUME~1\Jon\LOCALS~1\Temp\OraInstall2012-06-17_08-09-30PM\psapi.dll
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.

    >
    Your imagination is not limited, my friend. I have already told you that I have unzipped the folders, and, it is not the scope of this forum to have myself insulted in this manner.
    Seriously, one expects forum members to be respectful rather than talk garbage about manuals, I was only asking for help, because I thought that files were missing from the installation pack.
    I might be your next client for all you know.
    >
    No offence was intended - it was merely a tongue-in-cheek observation. If you read my previous two replies in this thread, they are courteous to a fault - as are all my posts.
    The forums are a volunteer organization - people take time out from their personal and professional lives to help others. Some folks, thankfully a very small minority, use the forums as a free personal support/helpdesk tool to read all the documentation on their behalf and look up or solve things on their behalf. The forums work best when there is real dialogue and exchange of information, rather than monosyllabic answers and mudslinging.
    Good luck with your install
    HTH
    Srini

  • Get "404 Not Found" after deployment.  How to find out correct URL?

    To the experienced:
    In preparing to deploy my application, I am using JDeveloper 10.1.3.4 to deploy the application to the standalone oc4j server that is included in JDeveloper. After the deployment, I get the "404 Not Found" error when trying to invoke the application in a browser. The deployment looks OK, becasue the log window in JDeveloper showed no error when running deployment from inside JDeveloper. Therefore I guess the question is how to find out the correct URL to invoke the application. The steps I took in doing the deployment are as follows.
    I first installed the standalone oc4j by running the <jdev_home>\jdev\bin\start_oc4j .bat file. The installation is OK because I deployed the SRTutorial applcation and invoked it in a browser successfully.
    The WAR file was created by right-clicking the ViewController project and select to create a WAR file. To the application's Context Root its own name, I typed "ZB" in the box for the context root.
    Then in ViewController -> Resources, right_click the deployment file (ZBOV.deploy) and chose "Deploy to" the local_standalone_oc4j. The messages in JDeveloper's log window for the deployment are all clean without errors.
    I then used this url to invoke the deployed application in a browser:
    http://localhost:8888/ZB/faces/staff/login.jspx
    But I got an "404 Not Found" error. Right away I tried invoking the SRTutorial application, and it runs fine.
    login.jspx is one of the pages for the appllication. In the application navigator, it is located with other files in the ViewController/Web Content/staff folder, therefore I used /staff/login.jspx after ZB/faces.
    What could be wrong? If the deployment is actually successful, how to find out the correct url to invoke the application?
    Many thanks for your help!
    Newman

    Hi, Arun,
    Thank you for the suggestion. I tried it but got the same error.
    I tried it by first undeploying the application using the enterprise manager page (which is also part of the oc4j included in JDeveloper). I select the application and clicked the undeploy link, confirmed that I wanted to remove it. And it was removed.
    Then in JDeveloper, I right-clicked the ViewController, and in the properties of the probject selected "J2EE Application" and then selected "Use Custom Settings", then in the "J2EE Web Context Root" box I entered "ZB". Created the deployment profile again, overwriting the existing one, and then right-clicked the ZB.deploy node to deploy to the standalone oc4j on the localhost. And I used the url:
    http://localhost:8888/ZB/faces/staff/login.jspx
    And I got the same "404 Not Found" error.
    There was no error at the time of deployment using the ZB.deploy profile. On the enterprise manager page, the path of the deployed application is given as /C:/jdev10134/j2ee/home/applications/ZB.ear, and the folder of the deployed application is there. Question is: if the deployment is actually OK, can the correct URL be found in some file somewhere in the folder?
    All ideas and suggestions are very much appreciated!
    Newman

  • Content Selector is not loading during deployment

    Hi Alll,
    I am using weblogic portal 10.2 and MySQL 5.0.
    I have created content selector during developement using workshop.
    and deployed the same EAR in Staging server.
    But content selector is not loaded after deployment.
    I got confirmation after checking adminconsole ->> Content Selectors(Which will be displayed in home page of admin console after login)
    And i can see that , other changes ,,JSP Changes...are reflected as part of deployment.
    Please let me know what might be the poblem,for not loading content selector??
    Is there any number of restrictions on number of content selectors for an environment??
    Srinivas

    hi
    production mode does have the behavior you see, and there are good reasons why this must be so.
    You mean to say, we need to propagate Content selectors from STAGING to PRODUCTION??Yes you need to propagate from an environment which has all the data you want correctly to your production environment. You can scope the propagation to only Content Selectors (if you want, the documentation has data how you can do this) and you can run this via GUI or via ANT.
    regards
    deepak

Maybe you are looking for

  • Sync issue with google contacts.

    Just noticed that my contacts had not updated since Jan 2010. After conferring with Motorola did a factory reset. Put everything back in. Contacts were good for a couple of days. Now getting a message problem with sync. However gmail, calendar, faceb

  • Motion 3 Sluggish

    Motion 3 has been working fine for me for a long time, but suddenly everything is just unbearably slow.  I can not even preview in the canvas anymore.  Frames will suddenly jump and the playback is herky jerky.  Or it will take sometimes 10 seconds t

  • How much does it cost to change one key on the keyboard ?

    i have dropped my hair dryer on my keyboard, i would like to know how much it cost to change these keys: 1. v 2. b 3. n 4. space key plz email me back at [email protected]

  • Current redo log file is lost

    Hi All, I got a scenario in which my current redo log file is lost: Do I need to: 1)Clear log file group (or) 2)I should perform incomplete recovery. What are the steps I should follow to recover this current redo log file? 1)*If it is inactive* I ca

  • I'm not finding ARD 3.1 easy

    I'm a small business owner, often on the road and with three employees who live throughout the state and work from home.  I bought ARD today because there are times when I need to retrieve file or document on my home Mac Pro machine when I am away fr