Deploying ViewController project, problem with: OrdHttpResponseHandler

Hi,
I use JDeveloper 11.1.1.2.0 and I am trying to deploy a ViewController project on my integrated weblogic server.
I get the following error:
<15-jun-2010 17:19:17 uur CEST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1276615153140' for task '0'. Error is: 'java.lang.ClassNotFoundException: oracle.ord.im.OrdHttpResponseHandler'
java.lang.ClassNotFoundException: oracle.ord.im.OrdHttpResponseHandler
     at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(GenericClassLoader.java:296)
     at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:269)
     at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:56)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
     at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
     Truncated. see log file for complete stacktrace
Does anyone know what this means? Do I need to deploy a library?
In my ViewController-project I use JHeadstart with default options.

Hi,
in this case I think its better to check the JHeadstart forum here on OTN. I've not seens this eror messages in my deployments so far.
Frank

Similar Messages

  • Projection problems with KEYNOTE

    I am an orthodontist and do many lectures showing pictures of faces and teeth.
    I moved to Mac 2 years ago and I love Keynote BUT when I project the pictures the quality is significantly inferior to the identical slide projected through the same projector with the same cable using powerpoint.
    The quality is also nowhere near the quality seen on my computer.
    Do I need to buy a Belkin HDMI to DVI cable - I would love to do this if it will help?
    Do I need to buy a Dell 5100MP projector with HDMI input - again happy so to do...
    I just want to maximise the quality of the output, irrespective of cost...
    Please help

    Not that your problem is related to doing dental presentations, but there are at least 2 people who specialize in helping presenters of dental information: James Cowherd in Las Vegas and Greg Lutke in Dallas. Greg may not have as much knowledge about Keynote as James, but both are great guys. Contact info should be easily accessible through google.
    Corky

  • 5.2.0-Defining C projects - problem with MULTITHREADED FALSE

    Hi,
    I am having a problem importing a UDS5.0.9 PEX file into a UDS5.2.0 environment that defines a "C" project.
    I have stripped down our PEX file to a level that highlights the problem (see below). The original PEX file links to a number of "externalstaticlibs" and "externalobjectfiles", it provides access via Forte to our "C" routines that are not guaranteed to be multi-thread safe. A number of our similar routines may attempt to access these external libraries/objects at the same time via the "LibProb" library similar to that below.
    When "fcompile" is run on the "LibProb" project the compile fails due to a number of defines missing in UDS5.2.0 include files. When the PEX file MultiThreaded property is changed from FALSE to TRUE , "fcompile" works....changing the MultiThreaded property would concern me -especially as a number of our routines maybe attempting to access the same libraries at the same time.
    The problem also seems to exist with UDS5.1.3.
    The platform we use is IBM AIX5.1 with Visual Age C++ 5.0.2.1.
    1. Has anybody came across this problem before??
    2. Do you know any way round the problem??
    Specific details follow.
    Can anybody help - thanks,
    -Ray.
    =====Library Problem - PEX File==========
    begin C LibProb from library;
    includes Framework;
    class MyFunction inherits from Framework.Object
    has public  method MyInit(input anyInt : Framework.int): Framework.int HAS PROPERTY id = 1 ;
    has property
         distributed=(allow=off, override=on);
         id = 1; proxyId = 0;
    end class;
    HAS PROPERTY
         CompatibilityLevel = 0;
         Restricted = FALSE;
         MultiThreaded = FALSE;
            extended = (ExternalObjectFiles = 'anyfunc');
    end LibProb;
    ====end of PEX File======When "fcompile"ing the code generated by "makedistrib" the following name lookup problems occur (property "Multithreaded" is "FALSE")...
    Compiling.
    /usr/vacpp/bin/xlC_r -c -+ -qlanglvl=compat366 -qflag=I:E -qchars=signed -q32 -DNeedFunctionPrototypes -qthreaded 
    -I/usr/apps/forte/mydir/UDS5.2.0/install/inc/os -I/usr/apps/forte/mydir/UDS5.2.0/install/inc/cmn
    -I/usr/apps/forte/mydir/UDS5.2.0/install/inc/ds -I/usr/apps/forte/mydir/UDS5.2.0/install/inc/handles
    -I/usr/apps/forte/mydir/UDS5.2.0/install/inc/ds -I/usr/include/Motif2.1
    -I/usr/apps/forte/mydir/UDS5.2.0  libprob.cc
    "libprob.cc", line 45.49: 1540-0274 (S) The name lookup for "qqSH_TSK_MPROP_ENABLE_SWITCH" did not find a declaration.
    "libprob.cc", line 46.9: 1540-0274 (S) The name lookup for "qqOS_CLIBLOCK" did not find a declaration.
    "libprob.cc", line 56.9: 1540-0274 (S) The name lookup for "qqOS_CLIBULOCK" did not find a declaration.
    Error during compilation, abortingThe UDS5.1.x/UDS5.2.0 header files seem to have changed, namely UDS5.2.0/install/inc/cmn tskmprop.h and opsys.cdf
    However when I change the property Multithreaded to TRUE in the PEX file, the "fcompile" works....
    Compiling.
    /usr/vacpp/bin/xlC_r -c -+ -qlanglvl=compat366 -qflag=I:E -qchars=signed -q32 -DNeedFunctionPrototypes -qthreaded 
    -I/usr/apps/forte/mydir/UDS5.2.0/install/inc/os
    -I/usr/apps/forte/mydir/UDS5.2.0/install/inc/cmn
    -I/usr/apps/forte/mydir/UDS5.2.0/install/inc/ds
    -I/usr/apps/forte/mydir/UDS5.2.0/install/inc/handles
    -I/usr/apps/forte/mydir/UDS5.2.0/install/inc/ds
    -I/usr/include/Motif2.1
    -I/usr/apps/forte/mydir/UDS5.2.0  libprob2.cc
    Linking.
    /usr/vacpp/bin/makeC++SharedLib_r -p 1026  -o liblibprob2.a -lld -L/usr/vacpp/lib -lC_r -lC
    -L/usr/lib/threads -lpthreads -lc_r
    -L/usr/apps/forte/mydir/UDS5.2.0/install/lib -lqqknpthrd -L/usr/apps/forte/mydir/UDS5.2.0/install/lib
    -lqqcm -L/usr/apps/forte/mydir/UDS5.2.0/install/lib -lqqdo -L/usr/apps/forte/mydir/UDS5.2.0/install/lib
    -lqqfo -L/usr/apps/forte/mydir/UDS5.2.0/install/lib -lqqsm  
    -L/usr/apps/forte/mydir/UDS5.2.0/userlib    libprob2.o  
    /usr/apps/forte/mydir/UDS5.2.0/abc_test/compile_dir/LibProb2/anyfunc.o

    I do remember a while back they decided to start using only POSIX threading library going forward and not support the old threading library. A work around may be to put mutex lock around your entry point to the library which will make sure only one person access the library at a time.
    ka

  • Keynote projection problem with MacBook Pro

    I have my MacBook pro hooked up to a projector. The desktop displays full-screen but when I play a presentation in Keynote it only displays in a small window, the surround is black.
    How do I fix it so that I get a full size presentation projected?

    If it requires a third repair then it's normally replaced with the latest comparable model.
    Are you dealing with Apple directly or with an Authorised dealer ?
    (I've had poor service from NextByte and MAC1 but found Geekworks OK)
    I suggest you call Apple Australia (133 622) and ask for Customer Relations (they are based in Sydney), explain what's been happening and tell them how unhappy you are about it. They have more flexibility than dealerships and would most likely arrange a replacement for you I'd suspect.

  • Large project, problems with video clips

    I have a project I want to start work on. It's going to be using around 4 hours of clips to work from and that's my problem. I want to break the project into smaller more easily managed projects but is there a way to import my clips into a holding area that I can then pull from when I move from smaller project to smaller project? I don't want to have to import all my clips into one project or have to wade through all my clips to find the three or four I might need for a certain part of this project. Any way to break this up into manageable sections where my clips reside in either a folder or something and I can simply import the ones I need at any given time? Thanks.

    Firstly, are the four hours of clips on four miniDV tapes? If so, you could capture each tape to its own iMovie project and then move them into the final project as needed, but I don't see how you are going to avoid looking through the clips to some extent anyway to sort out the ones you need.

  • Projection problems with my new MacBook Pro

    My MacBook Pro (13 inches retina display flash memory drive) connects to Sharp Notevision projector but the image projected is a ghastly imitattion of my laptop wallpaper. I suspect it has something to do with retinal display and/or the new operating system. Any suggestions?

    Call AppleCare or arrange with the local Apple retailer to have the motherboard replaced. You cannot replace the GPU alone. If the computer is in warranty then you may get a replacement or at least the repair will be covered.

  • Problems with Deploy java.lang.NoClassDefFoundError

    I Have an aplication in Jdeveloper 11.1.2.2, i make the ear for the aplication and i tried to deploy it on the embebed weblogic of my jdeveloper and in a weblogic 10.3.6 with the patch for adf 11.1.1.2 (the server its fine because i have other aplications running on it).
    The deploy goes well, i can access to some pages and work with the application BUT when a access to a page with input Date control the page return this error.
    java.lang.NoClassDefFoundError: oracle/adf/view/rich/component/rich/input/RichInputDate
         at java.lang.Class.getDeclaredMethods0(Native Method)
         at java.lang.Class.privateGetDeclaredMethods(Class.java:2427)
         at java.lang.Class.getDeclaredMethods(Class.java:1791)
         at oracle.adfinternal.controller.beans.AnnotationUtils.findAnnotatedMethods(AnnotationUtils.java:194)
         at oracle.adfinternal.controller.beans.AnnotationUtils.runPostConstructIfSpecified(AnnotationUtils.java:63)
    i tried to put the adf-richclient-api-11.jar in the viewController project and deploy, but the problem persist
    Edited by: UserMan on 25-jun-2012 8:02

    The app runs on jdeveloper fine (in the integrated weblogic), when i create de ear file to deploy in the production webLogic it doesn't work, and if i try to deploy the same ear in the integrated webLogic in doesn´t work too, and the error is the same.

  • Unable to deploy BPM projects with human tasks from BPC

    I’m trying to edit and deploy a BPM process from Business Process Composer (web based tool). To do it, I followed the steps below:
    1.     I created I project in JDeveloper
    2.     I created the Human task from using the “Auto-generate task form” option
    3.     I converted it to a template
    4.     I published it to BPM MDS
    5.     On Business Process Composer I created I new project based on my published template
    6.     And I finally I deployed it with no errors.
    When I ran the BPM it creates I human task but I’m not able to access its form on Business Process Workspace.
    On Business Process Workspace I can see the task created by my BPM process, but when I click on it to access its form I get a 404 message (message below).
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    I think this error occur because my Task form project was not deployed. To fix it I undeployed all the applications and then I deployed the BPM application with all its tasks forms from JDeveloper. It worked fine (I can actually access the task form on Business Process Workspace), but now I’m not able to edit the BPM process on Business Process Composer anymore.
    Then I finally repeated the steps 3 to 6 on top of this post in order to make the BMP process editable on Business Process Workspace but this time I receive the error at the end of this post taken from server log.
    No matters if I publish the project on MDS BMP repository as a template project or as non template project. I always have the same problem.
    So, how can I use a BPM project that contains Human Tasks forms on Business Process Composer?
    I’m using:
    •     JDevelopper: 11.1.1.5
    •     Oracle Soa Suite 11.1.1.5
    Error:
    <Error> <ServletContext-/soa-infra> <AUSDCCMTPRF03> <soa_server1> <[ACTIVE] ExecuteThread: '10' for queue: 'weblogic.kernel.Default (self-tuning)'> <weblogic> <> <daba687c30fc2ae1:5f5821e2:131915bbc92:-8000-000000000001c442> <1312478914395> <BEA-000000> <Error during deployment
    oracle.fabric.common.FabricException: Deployment Failed: Error occurred during deployment of component: AssignVendorETATask to service engine: implementation.workflow, for composite: AlertBPMProject: ORABPEL-30123
    Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.
    : Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.
         at oracle.integration.platform.blocks.deploy.StandaloneCompositeDeploymentCoordinatorImpl.coordinateCompositeDeployment(StandaloneCompositeDeploymentCoordinatorImpl.java:62)
         at oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor.deployNewComposite(BaseDeployProcessor.java:378)
         at oracle.integration.platform.blocks.deploy.servlet.BaseDeployProcessor.deploySARs(BaseDeployProcessor.java:226)
    Caused By: oracle.fabric.common.FabricException: Error occurred during deployment of component: AssignVendorETATask to service engine: implementation.workflow, for composite: AlertBPMProject: ORABPEL-30123
    Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.
    : Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.
         at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deployComponents(CompositeDeploymentConnection.java:244)
         at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deploy(CompositeDeploymentConnection.java:93)
    Caused By: oracle.fabric.common.FabricDeploymentException: ORABPEL-30123
    Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.
    : Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.
    {rootCauses=[]}
         at oracle.bpel.services.workflow.fabric.WorkflowServiceEngine.deploy(WorkflowServiceEngine.java:908)
         at oracle.bpel.services.workflow.fabric.WorkflowServiceEngine.deploy(WorkflowServiceEngine.java:368)
         at oracle.integration.platform.blocks.deploy.CompositeDeploymentConnection.deployComponents(CompositeDeploymentConnection.java:239)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused By: ORABPEL-30123
    Error while deploying task metadata.
    The task namespace http://xmlns.oracle.com/AlertBPMApplication/AlertBPMProject/AssignVendorETATask is already used as a template namespace.
    Check if the project you are deploying now is a template project. Please avoid deploying template projects. Use a different namespace for the task definition to fix the problem or set the suffixNamespace flag to true.

    I came across the same issue, and now resolved it like this.
    Firstly, you shouldn't deploy QuoteProcessLab with other UILabs like ApproveDealUILab and so on. So, if you already did it, then go to Weblogic EM and undeploy it.
    Secondly, you should deploy each of UILab separately as standalone application. So, deploy EnterQuiteUILab, BUsinessPracticesUILab, and so on each. These will run independently behind and when your project created based on template in the Composer runs, it will link each of these on human task.
    Thirdly, publish you QuoteProcessLab. And follow the book about how to create a project based on template in the Composer.
    Just one thing you should be careful with is, when you do auto-generation for human task, it sometimes doesn't work fully, unfinished halfway through. So, make sure that the icon 'go to existing business form taskflow' in .task file takes you to the human taskflow.
    If it fails, do another auto-generation. Sometimes DataBindings.cpx can get corrupted by JDev, but let's not go too far for now.
    Mostly, it will work.
    Sung

  • Problem with Deployments of web service Project as EAR in weblogic console

    Hi All :-)
    I was facing the problem with the Deployments of web service(java class) as EAR.I created the one web project associated with EAR project. After my development i exported this project as EAR and deployed the same on the weblogic console.....But time it will work fine and sometime it Deployments status will not become active (its running status) and failed after activate the changes.
    Can any body tell me the real problem with weblogic console for Deployments?
    Please tell me the solution...it?s urgent for me...If you know the answer please mail me on [email protected] or reply here on forum
    Thank you very much for your time.
    Rgds
    Ranjit

    I received the same message and resolved it by adding the following jars to the classpath. All these jars came from the weblogic92 directory:
    server/lib/ant/ant.jar
    common/lib/apache_xbean.jar
    server/lib/jsafe.jar
    server/lib/weblogic.jar
    server/lib/webservices.jar
    server/lib/webserviceclient.jar
    server/lib/webserviceclient+ssl.jar
    server/lib/schema/weblogic-container-binding.jar
    server/lib/xbean.jar
    hth,
    John

  • Problem with DC project

    Hi All,
    I am using DC components for my projects.Recently I have encountered problems with my DC components.
    The "DCMetaData" in WebDynpro perspective is no longer getting reflected.
    Steps:- Open WebDynpro perspective -->WebDynpro Explorer --> Expand the project. DCMetaData should be present but for my components it is no longer present now.
    Also components are no longer in MyComponents list of DC perspective.
    Can anyone please tell how I can resolve it as I am not able to either delete old DC components and deploy new components.
    Looking forward for the reply.
    Regards,
    Pawan

    Hi,
    In Netweaver Studio, open Window-->Preferences. Then expand Workbench and select Workspace.
    Then make a note of the path of the default workspace.
    From the workspace either you can reimport/reload your project
    or
    close Netweaver Developer Studio.  go to the path of the default workspace. You should see a directory named ".metadata". Delete that directory
    Now restart Studio. This will recreate the '.metadata' directory
    before doing any of this try to export/copy your projects.
    Regards
    Ayyapparaj

  • Problem with starting JHeadstart Enable Project Wizard

    Hi,
    Ive got small problems with JHeadstart (10.1.3.0.95) at Win2k, JDev (10.1.3.1.0.3984). After adding all DB related stuff to new application project Im trying to use function "JHeadstart Enable Project Wizard" from right-click context menu available under "ViewController". And here comes all my headache - after first warning screen Im going to the next one when the text box is empty and clicking on Finish button doesnt work. I can only click Cancel.
    It would be cool to get fast any good advice as Im trying to finish my term project on Monday.

    Piotrek,
    I tried to reproduce your issue without success.
    I would be very grateful if you can send us a sample project with the DB tables where the JHeadstart Enable Project Wizard does not work.
    You can send the testcase to [email protected], and make sure you rename extension .zip to .zipped, otherwise the mail is refused by our mail server
    Thanks!
    Steven Davelaar,
    JHeadstart Team.

  • Problem deploying JPA project

    When deploying an ear containing a war with a persitence archive in its WEB-INF/lib, I get a deploy error. The error in the opmn log seems to indicate a problem with parsing some xml file, but I can't seem to find a problem with the persitence.xml. This seems to work correctly using the embedded version of OC4J included with Jdevelper but fails when deploying to a clustered App server instance on linux.
    The application server version is 10.1.3.1 which matches the version of Jdev I'm using.
    thanks in advance.
    The persistence archive contains a persistence.xml under its META-INF with these contents
    <?xml version="1.0" encoding="windows-1252" ?>
    <persistence xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
    version="1.0" xmlns="http://java.sun.com/xml/ns/persistence">
    <persistence-unit name="Model" transaction-type="JTA">
    <provider>oracle.toplink.essentials.PersistenceProvider</provider>
    <jta-data-source>jdbc/web</jta-data-source>
    <properties>
    <property name="toplink.session-name" value="Model"/>
    <property name="toplink.logging.level" value="FINE"/>
    <property name="toplink.logging.timestamp" value="true"/>
    <property name="toplink.logging.session" value="true"/>
    <property name="toplink.logging.thread" value="true"/>
    <property name="toplink.logging.exceptions" value="true"/>
    <property name="toplink.target-database" value="Oracle"/>
    </properties>
    </persistence-unit>
    </persistence>
    Deploy Error
    Operation failed with error:
    [fcmanagement:FCManagement] - Exception creating EntityManagerFactory using PersistenceProvider class oracle.toplink.essentials.PersistenceProvider for persistence unit Model.
    In the opmn log I see this stack trace
    <Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected.
    07/06/20 15:37:58 oracle.oc4j.admin.internal.DeployerException: [fcmanagement:FCManagement] - Exception creating EntityManagerFactory using PersistenceProvider class oracle.toplink.essentials.PersistenceProvider for persistence unit Model.
    07/06/20 15:37:58 at com.evermind.server.ejb.exception.DeploymentException.exceptionCreatingEntityManagerFactory(DeploymentException.java:130)
    07/06/20 15:37:58 at com.evermind.server.ejb.persistence.PersistenceUnitManagerImpl.createContainerEntityManagerFactory(PersistenceUnitManagerImpl.java:197)
    07/06/20 15:37:58 at com.evermind.server.ejb.persistence.PersistenceUnitManagerImpl.initializePersistenceUnit(PersistenceUnitManagerImpl.java:159)
    07/06/20 15:37:58 at com.evermind.server.ejb.persistence.PersistenceUnitManagerImpl.initialize(PersistenceUnitManagerImpl.java:86)
    07/06/20 15:37:58 at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:733)
    07/06/20 15:37:58 at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:414)
    07/06/20 15:37:58 at com.evermind.server.Application.getHttpApplication(Application.java:545)
    07/06/20 15:37:58 at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1990)
    07/06/20 15:37:58 at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.<init>(HttpSite.java:1909)
    07/06/20 15:37:58 at com.evermind.server.http.HttpSite.addHttpApplication(HttpSite.java:1606)
    07/06/20 15:37:58 at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:238)
    07/06/20 15:37:58 at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:99)
    07/06/20 15:37:58 at oracle.oc4j.admin.internal.ApplicationDeployer.bindWebApp(ApplicationDeployer.java:547)
    07/06/20 15:37:58 at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:202)
    07/06/20 15:37:58 at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    07/06/20 15:37:58 at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    07/06/20 15:37:58 at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    07/06/20 15:37:58 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    07/06/20 15:37:58 at java.lang.Thread.run(Thread.java:595)
    07/06/20 15:37:58 WARNING: DeployerRunnable.run [fcmanagement:FCManagement] - Exception creating EntityManagerFactory using PersistenceProvider class oracle.toplink.essentials.PersistenceProvider for persistence unit Model.oracle.oc4j.admin.internal.DeployerException: [fcmanagement:FCManagement] - Exception creating EntityManagerFactory using PersistenceProvider class oracle.toplink.essentials.PersistenceProvider for persistence unit Model.
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:126)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)

    I tried repackaging the ear. Instead of including the persistence archive in the web-inf/lib of the war, I created an EJB jar with the jpa project in it.
    The application.xml now deploys that as an ejb module along with the war.
    The deploy error is a little different now, it specifies a missing class, Missing class: oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider.
    I'm assuming that this class is in the toplink-essentials.jar. Should the toplink-essential.jar be packaged in the ear?
    Again this is being deployed to a 10.1.3.1 Application server.
    thanks
    Joel
    Here is to full error message
    [inapp03.inapp03/fastconnecttst] 07/06/21 11:54:47 Notification ==>Operation failed with error:
    Missing class: oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider
    Dependent class: com.evermind.server.ejb.persistence.PersistenceUnitManagerImpl
    Loader: oc4j:10.1.3
    Code-Source: /usr01/app/oracle/product/10.1.3/OracleAS_1/j2ee/home/lib/oc4j-internal.jar
    Configuration: <code-source> in META-INF/boot.xml in /usr01/app/oracle/product/10.1.3/OracleAS_1/j2ee/home/oc4j.jar
    This load was initiated at fcmanagement.root:0.0.0 using the Class.forName() method.
    The missing class is not available from any code-source or loader in the system.
    [Summary] There are total 2 instances in the operation.
    [Summary] Operation failed on inapp04.inapp04/fastconnecttst
    [Summary] Operation failed on inapp03.inapp03/fastconnecttst
    [Summary] Operation on cluster FAILED since 2 instanced failed!
    Deploy error: Deploy error: Operation failed with error:
    Missing class: oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider
    Dependent class: com.evermind.server.ejb.persistence.PersistenceUnitManagerImpl
    Loader: oc4j:10.1.3
    Code-Source: /usr01/app/oracle/product/10.1.3/OracleAS_1/j2ee/home/lib/oc4j-internal.jar
    Configuration: <code-source> in META-INF/boot.xml in /usr01/app/oracle/product/10.1.3/OracleAS_1/j2ee/home/oc4j.jar
    This load was initiated at fcmanagement.root:0.0.0 using the Class.forName() method.
    The missing class is not available from any code-source or loader in the system.

  • Deploying my project with Netbeans 4.0

    Does anyone know how I do this? This is one of the pains of Java - no executable files.
    I can't even find a tutorial on how to deploy using Netbeans 4.0.
    Any suggestions?

    Your dead right, it can be a pain in the ass.
    Although, NetBeans IDE makes and places a JAR file of your project in the 'ProjectFolder/dist/' folder, which should run the project when double clicked.
    The problems with this can occur if your using image or sound files (known as resources within a jar file) see my post:
    http://forum.java.sun.com/thread.jspa?threadID=648553

  • Problem with JAR Deployment

    Hi,
    I knew there are many threads about the deployment to a jar file and problems of missing additional jars used in the project. But I'm facing a problem, which I couldn't solve by reading the threads. Also I've read in Oracle JDeveloper 10g Handbook of OraclePress howto "Create a Java Application JAR File" and hopefully done all necessary steps.
    at the moment I've done the following
    1. create a new Deployment to JAR
    2. enter a name for JAR File: C:\test.jar
    3. checked "Include Manifest File"
    4. set the Main Class to main.MainFrame
    5. create a new File Group "libs" with type Libraries
    6. I've selected all jars available in "Filters" (later I will try to minimize the added jars, but for a first try all jars should guarantee that nothing is missing)
    7. deployed ma project to jar-file
    8. running java.exe -jar C:\test.jar
    I get always NoClassDefFoundError ...
    Opening the test.jar in JDEveloper I can see all the jars inside it, opening the manifest.MF I see the following:
    Manifest-Version: 1.0
    Created-by: Oracle Jdeveloper 10.1.3.0.4
    Main-Class: main.MainFrame
    What else do I have to do to get it running without error???
    Thanks for any help - You're helping a despairing person near at the end of all nerves :)
    chrissy

    There is an option in Jar deployment profile properties, Additional manifest files to merge...
    Add a file such that the contents define your classpath. I have one that looks like this:
    Class-Path: lib\frmjdapi.jar lib\support.jar
    Make sure the Class-Path is on one line and append a new line to the end. So your final file will contain two lines. first is the classpath and second is just the line feed.
    When you opn the Manifest file now, you should see the Class-Path contents added.
    Good luck.

  • Hyperion planning installation(Problem with application server deployment)

    Hi There:
    I am new to hyperion planning.I am trying to install planning.I got problem with Hyperion Configuration utility while configuring application server deployment.Its show message failed.Please guide me how to fix this.If it is possible can you please send me any personal documentation on installation.I am trying this for past 4 day's.Below is the error its showing in configtool
         ... 10 more
    (Mar 09, 2008, 08:26:04 PM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, INFO, Validating dependencies...
    (Mar 09, 2008, 08:26:04 PM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel$5, DEBUG, Product: Planning; Dependencies: []
    (Mar 09, 2008, 08:26:04 PM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, DEBUG, task to execute: HspDBPropertyLocation
    (Mar 09, 2008, 08:26:04 PM), com.hyperion.cis.config.wizard.ProductTaskSelectionPanel, DEBUG, task to execute: applicationServerDeployment
    (Mar 09, 2008, 08:26:04 PM), com.hyperion.cis.config.wizard.PanelEventDispatcher, DEBUG, constructor
    (Mar 09, 2008, 08:26:04 PM), com.hyperion.cis.config.wizard.AppServerSelectionPanel, INFO, AppServerSelectionPanel in queryEnter
    (Mar 09, 2008, 08:26:04 PM), com.hyperion.cis.config.wizard.AppServerSelectionPanel, INFO, Server: WebLogic 8.1; deployment type = both
    (Mar 09, 2008, 08:26:04 PM), com.hyperion.cis.config.wizard.AppServerSelectionPanel, INFO, Server: WebSphere 5.1; deployment type = both
    (Mar 09, 2008, 08:26:04 PM), com.hyperion.cis.config.wizard.AppServerSelectionPanel, INFO, Server: Tomcat 5.0.28; deployment type = both
    (Mar 09, 2008, 08:26:08 PM), com.hyperion.cis.config.wizard.AppServerSelectionPanel, INFO, AppServerSelectionPanel in queryExit
    (Mar 09, 2008, 08:26:08 PM), com.hyperion.cis.config.wizard.AppServerSelectionPanel, DEBUG, AppServer selected: WebLogic 8.1
    (Mar 09, 2008, 08:26:08 PM), com.hyperion.cis.config.wizard.ProductCustomInputPanel, ERROR, Error:
    java.lang.NullPointerException
         at com.hyperion.cis.config.wizard.ProductCustomInputPanel.queryEnter(ProductCustomInputPanel.java:88)
         at com.installshield.wizard.awt.AWTWizardUI.currentBeanChanged(Unknown Source)
         at com.installshield.wizard.swing.SwingWizardUI.currentBeanChanged(Unknown Source)
         at com.installshield.wizard.StandardWizardListener.currentBeanChanged(Unknown Source)
         at com.installshield.wizard.Wizard$RunThread.run(Unknown Source)
    (Mar 09, 2008, 08:26:09 PM), com.hyperion.cis.config.AppServerDeployer, DEBUG, Starting WebLogic 8.1 deployment...
    (Mar 09, 2008, 08:26:09 PM), com.hyperion.cis.config.AppServerDeployer, DEBUG, pre-Deploy: Planning
    (Mar 09, 2008, 08:26:09 PM), com.hyperion.cis.config.AppServerDeployer, DEBUG, Deploy: Planning
    (Mar 09, 2008, 08:26:09 PM), com.hyperion.cis.config.wizard.RunAllTasksWizardAction, ERROR, Error:
    java.lang.NullPointerException
         at com.hyperion.cis.config.AppServerDeployer.initContexts(AppServerDeployer.java:628)
         at com.hyperion.cis.config.AppServerDeployer.deploy(AppServerDeployer.java:548)
         at com.hyperion.cis.config.AppServerDeployer.deploy(AppServerDeployer.java:526)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.executeDeployerTask(RunAllTasksWizardAction.java:251)
         at com.hyperion.cis.config.wizard.RunAllTasksWizardAction.execute(RunAllTasksWizardAction.java:156)
         at com.installshield.wizard.RunnableWizardBeanContext.run(Unknown Source)
    (Mar 09, 2008, 08:26:13 PM), com.hyperion.cis.config.wizard.CustomSummaryPanel, DEBUG, CustomSummaryPanel in queryExit
    Please help me.Email id:[email protected]
    Thanks
    Harsha.
    Message was edited by:
    user603943

    I think the installation of planning on Vista is difficult. As some of the files doesn't support even i am tired of doing that.
    But tell me one thing have you installed all other products , I mean Essbase, (server, client) , AAS and Shared services.
    Are they working good .
    I have formatted my system to XP and installed everything , but the problem is when i install planning it prompts me that IIS 5 should be greater other wise EPM will not install...
    there are lot of things with planning 1) i can't datasource as it is not highlighting when we configure with Shared services
    2) It does not create product instance .
    If any one can fix this thing by giving me a suggestions.
    Advance Thanks

Maybe you are looking for

  • Any way to change the video frame size once imported into fcp?

    I have an edit that was done with 2 cameras. I wanted to create a multiclip edit but the size of the video from the 2 cameras are different. One file is 720x480 and the other is 720x486. My sequence is 720x480. Is there a way to adjust the 720x486 fo

  • HT4883 i have problem with this update

    i downloaded this version as suggested by an apple guy on the phone and tried to install it but it tells me that i already have a more recent version. the thing is that i don't have java preferences in my utility folder nor i can seem to find it in t

  • Just bought a hdmi cable from iPad to TV

    I got two ipad 2 and just bought a hdmi cable for it however the cable will only connect to one iPad and seems to big for the other ipad can any one please tell me why this is. Here is cable I got. http://www.trustedreviews.com/best-value-tvs_round-u

  • Using 8 Apple TVs

    Hi guys, I have just recently had a look at a configuration and was hoping for some advice... He has, himself, installed 8 Apple TVs and is having issues connecting some of them at times.  I have very quickly identified that only 5 devices can use ho

  • What happened to the outline option in Pages?

    Upgraded to latest Pages.  Totally differnt in how things work.  I have several files created with 'outlines'  Now they are simply word processor docs.  What happened?  I liked the outline option.