Error deploying FlightList Project

Hello:
I have imported the FlightList sample application.  I can create an archive, but when I go to Deploy the project, I get the following error:
TutWD_FlightList.ear -> Successfully created a temporary copy
Jun 27, 2004 3:32:11 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Deploy Thread] ERROR:
TutWD_FlightList.ear -> Deployment aborted
DEPLOYMENT ...
==> SDM host : dev
==> SDM port : 50018
==> URL : file:/C:/DOCUME1/ADMINI1/LOCALS~1/Temp/1/temp31017TutWD_FlightList.ear
... ABORTED
Aborted: development component 'TutWD_FlightList'/'local'/'LOKAL'/'0.2004.06.27.15.29.41':
Caught exception while checking the login credentials from SAP J2EE Engine's deploy API:
com.sap.engine.deploy.manager.DeployManagerException: ERROR: Cannot connect to Host: [dev] with UserName: [Administrator]      
               Check your Login Info.           
          Exception is: com.sap.engine.services.jndi.persistent.exceptions.NamingException: Exception while trying to get InitialContext. [Root exception is com.sap.engine.services.security.exceptions.BaseLoginException: User not authorized.]
(message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.checkLoginCredentials.DMEXC)
I believe I have set-up J2EE parameters correctly in Netweaver Studio, as well as in the SLD.
Anyone have any idea's?
Also (the big also), in the Visual Administrator, I am unable to configure the SLD Data Supplier-Standard User Group to role assignment.  I get "Pole Assignment Failed".  However; I am able to successfully  test the CIM Client Test.
Any help would be greatly appreciated.
Russ Wagner
Canada

Since you downloaded the whole application, I guess we can dismiss the second error about a naming problem as being caused by the initial error concerning the authorization issue.  Did you change any passwords since install?  I remember that Benny had commented in this forum that it was possible to get into a situation where the deployment password was out of synch. I don't recall if there was a clear way to fix it.  But you might consider poking around with the steps in this link: /people/benny.schaich-lebek/blog/2004/04/13/how-to-unlock-your-java-admin maybe something will fall-out.
Dale

Similar Messages

  • Error deploying composite projects with partner links in abstract wsdl

    Error while deployment of PartnerLinkCompositeError. The two composites have the same wsdl files, but PartnerLinkCompositeError composite projects has a perter link inside the wsdl.
    <partnerLinkType name="execute_ptt"
    xmlns="http://schemas.xmlsoap.org/ws/2003/05/partner-link/">
    <role name="execute_pttProvider">
    <portType name="tns:execute_ptt"/>
    </role>
    </partnerLinkType>
    The error during deployment
    [04:13:04 PM] Error deploying archive sca_PartnerLinkCompositeError_rev1.0.jar to partition "default" on server soa_server1 [http://158.166.229.41:8001]
    [04:13:04 PM] HTTP error code returned [500]
    [04:13:04 PM] Error message from server:
    There was an error deploying the composite on soa_server1: Deployment Failed: Unable to find a WSDL that has a definition for service {http://xmlns.oracle.com/EBS/PartnerLinkCompositeError/Mediator1}Mediator1_ep and port execute_pt. Please make sure that the port attribute for the binding defined in the composite file is correct by checking the namespace, service name, and port name. In addition, check that the WSDL associated with the binding namespace is imported and currently reachable (check the import nodes at the top of the composite file). Finally, validate the HTTP proxy settings for the server..
    [04:13:04 PM] Check server log for more details.
    [04:13:04 PM] Error deploying archive sca_PartnerLinkCompositeError_rev1.0.jar to partition "default" on server soa_server1 [http://158.166.229.41:8001]
    [04:13:04 PM] #### Deployment incomplete. ####
    [04:13:04 PM] Error deploying archive file:/D:/workspace/NIF2/PartnerLinkCompositeError/deploy/sca_PartnerLinkCompositeError_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)
    What can be the cause for this error?
    Projects for download
    http://www.4shared.com/zip/w5R5zp1G/PartnerLinkCompositeError.html
    http://www.4shared.com/zip/EM7butNF/PartnerLinkComposite.html

    During WSDL design for composite projects like BPM or SOA using JDeveloper WSDL designer or by hand, BE sure that the partner link namespace is in the root of the wsdl definition.
    <?xml version= '1.0' encoding= 'UTF-8' ?>
    <wsdl:definitions name="Service"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/">
    <wsdl:portType name="execute_ptt">
    </wsdl:portType>
    <wsdl:portType name="callback_ptt">
    </wsdl:portType>
    <plnk:partnerLinkType name="execute_ptt">
    <plnk:role name="execute_pttProvider">
    <plnk:portType name="tns:execute_ptt"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </wsdl:definitions>
    Example:
    WSDL that will deploy
    <?xml version= '1.0' encoding= 'UTF-8' ?>
    <wsdl:definitions name="Mediator1"
    targetNamespace="http://xmlns.oracle.com/EBS/PartnerLinkCompositeError/Mediator1"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:inp1="http://xmlns.oracle.com/singleString"
    xmlns:tns="http://xmlns.oracle.com/EBS/PartnerLinkCompositeError/Mediator1"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/">
    <wsdl:types>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:import namespace="http://xmlns.oracle.com/singleString"
    schemaLocation="xsd/singleString.xsd"/>
    </xsd:schema>
    </wsdl:types>
    <wsdl:message name="requestMessage">
    <wsdl:part name="request" element="inp1:singleString"/>
    </wsdl:message>
    <wsdl:message name="callbackMessage">
    <wsdl:part name="callback" element="inp1:singleString"/>
    </wsdl:message>
    <wsdl:portType name="execute_ptt">
    <wsdl:operation name="execute">
    <wsdl:input message="tns:requestMessage"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:portType name="callback_ptt">
    <wsdl:operation name="callback">
    <wsdl:input message="tns:callbackMessage"/>
    </wsdl:operation>
    </wsdl:portType>
    <plnk:partnerLinkType name="execute_ptt">
    <plnk:role name="execute_pttProvider">
    <plnk:portType name="tns:execute_ptt"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </wsdl:definitions>
    Seems that Oracle JDeveloper WSDL designer has contribution to this issue since when trying to add a partner link from
    http://www.4shared.com/photo/7D4D4Elx/wsdl_designer.html?
    it creates the wsdl with the following configuration.
    http://www.4shared.com/photo/zb907pXN/wsdl_designer_2.html?
    Maybe will be fixed in next versions of JDeveloper. Until then, use this work suggested around.

  • Error deploying JDeveloper project using ant-sca-compile.xml

    Hi all, I'm having problems on deploying a JDeveloper project using ant-sca-compile.xml. The output in C:\XXXX\YYYYY\SCA-INF\classes\scac.log is:
    java.lang.NoClassDefFoundError: 4\jdeveloper\////oracle_common
    Caused by: java.lang.ClassNotFoundException: 4\jdeveloper\....oracle_common
         at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:305)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:246)
    Could not find the main class: 4\jdeveloper\/../oracle_common. Program will exit.
    Exception in thread "main"
    What's missing in wich classpath?
    Regards
    Efren.

    Same composite we were able to deploy successfully without any error, from Monday onward we are experiencing this issue.
    We checked in Installation Guide provided by oracle. Oracle has suggested few memory related changes in ant-sca-compile.xml file.
    Increasing Memory to avoid Compilation Errors
    To avoid out-of-memory errors during compilation of a SOA composite application, you need to
    increase the following memory settings.
    To increase memory settings:
    1. Open the ant-sca-compile.xml file in the SOA_HOME/bin directory.
    2. Under the scac element, increase the following memory settings.
    <jvmarg value="-Xms2048m"/>
    <jvmarg value="-Xmx2048m"/>
    <jvmarg value="-XX:PermSize=32m"/>
    <jvmarg value="-XX:MaxPermSize=256m"/>
    3. For Windows change the following memory settings to.
    <jvmarg value="-Xms1536m"/>
    <jvmarg value="-Xmx1536m"/>
    <jvmarg value="-XX:PermSize=32m"/>
    <jvmarg value="-XX:MaxPermSize=256m"/>
    We did those changes but still experiencing same error. I checked H:\AIASOAProject\AIAReceiptInterface\ReceiptListEbizProvider\SCA-INF\classes\scac.log ; file its showing Could not create the Java virtual machine.
    Regards
    Manish

  • Error deploying ATG project in BCC

    Hello,
    We have installed ATG 10.2 vanilla with Commerce Reference Store and no switching data source. We have tested two scenarios:
    -1st Scenario: When doing an incremental deployment of a project which includes a new product (not existing in Reference Store), the deployment fails giving back the following error:
    on BCC:
    atg.deployment.DistributedDeploymentException: Destination item product:prod70022 is null. at atg.deployment.repository.RepositoryWorkerThread.deployItem(RepositoryWorkerThread.java:1116) at atg.deployment.repository.RepositoryWorkerThread.processMarkerForReferenceUpdatePhase(RepositoryWorkerThread.java:362) at atg.deployment.DeploymentWorkerThread.processMarkerPhase(DeploymentWorkerThread.java:568) at atg.deployment.DeploymentWorkerThread.run(DeploymentWorkerThread.java:335)
    For weblogic log message, please see log in next message.
    - 2nd Scenario: deployment of a project containing a modified product of the reference Store. In this case, the deployment is completed but when checking the product changes in Production Schema there isn't a new record. However, changes are visible in Publishing Schema.
    Log message:
    org.apache.commons.httpclient.HttpMethodDirector executeWithRetry
    INFO: I/O exception (java.net.ConnectException) caught when processing request: Connection refused
    org.apache.commons.httpclient.HttpMethodDirector executeWithRetry
    INFO: Retrying request
    So if anyone has encountered the same problem and could shed light on this...
    Thank you!

    Log message, 1st scenario:
    /atg/epub/DeploymentServer    Forward deploying following active workspaces: [workspace:11107]
    /atg/epub/DeploymentServer    Run first apply phase: true
    /atg/epub/DeploymentServer    Target not configured for switch. Skipping switchable datasource verification.
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:Creating standard DeploymentData
    /atg/epub/DeploymentServer    Forward deploying following active workspaces: [workspace:11107]
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:Deploy Data
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:Starting DAF deployment with ID: 900005
    /atg/deployment/DeploymentManager    Database: Oracle
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:Polling Until Data Appplied
    /atg/deployment/DeploymentManager    Starting deployment with id: 900005
    /atg/deployment/DeploymentManager    Executing deployment in LOCAL mode
    /atg/deployment/DeploymentManager     item = repositoryMarker:mark200002 cause = atg.deployment.DistributedDeploymentException: Destination item product:prod70022 is null.
    /atg/deployment/DeploymentManager        at atg.deployment.repository.RepositoryWorkerThread.deployItem(RepositoryWorkerThread.java:1116)
    /atg/deployment/DeploymentManager        at atg.deployment.repository.RepositoryWorkerThread.processMarkerForReferenceUpdatePhase(RepositoryWorkerThread.java:362)
    /atg/deployment/DeploymentManager        at atg.deployment.DeploymentWorkerThread.processMarkerPhase(DeploymentWorkerThread.java:568)
    /atg/deployment/DeploymentManager        at atg.deployment.DeploymentWorkerThread.run(DeploymentWorkerThread.java:335)
    /atg/deployment/DeploymentManager     message = Deployment Failed time = Mon Nov 18 10:46:46 EST 2013  atg.deployment.DeploymentFailure@a600300    atg.deployment.DistributedDeploymentException: Destination item product:prod70022 is null.
    /atg/deployment/DeploymentManager        at atg.deployment.repository.RepositoryWorkerThread.deployItem(RepositoryWorkerThread.java:1116)
    /atg/deployment/DeploymentManager        at atg.deployment.repository.RepositoryWorkerThread.processMarkerForReferenceUpdatePhase(RepositoryWorkerThread.java:362)
    /atg/deployment/DeploymentManager        at atg.deployment.DeploymentWorkerThread.processMarkerPhase(DeploymentWorkerThread.java:568)
    /atg/deployment/DeploymentManager        at atg.deployment.DeploymentWorkerThread.run(DeploymentWorkerThread.java:335)
    /atg/deployment/DeploymentManager   
    /atg/deployment/DeploymentManager    Unexpected error occurred. DeploymentWorkerThread terminated prematurely.    atg.deployment.DistributedDeploymentException: Exceeded allowable error count (0)
    /atg/deployment/DeploymentManager        at atg.deployment.DeploymentWorkerThread.processMarkerPhase(DeploymentWorkerThread.java:680)
    /atg/deployment/DeploymentManager        at atg.deployment.DeploymentWorkerThread.run(DeploymentWorkerThread.java:335)
    /atg/deployment/DeploymentManager   
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:found 1 failure messages
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:adding failure message Deployment Failed with severity Error
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:DeploymentListener.deploymentFailed called for deployment with ID: 900005
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:DAFDeploymentID: 900005 matches DeploymentID: 900005
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:DeploymentListener.deploymentFailed
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:found 1 failure messages
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:adding failure message Deployment Failed with severity Error
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:    deployment failed
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:Creating rollback DeploymentData:
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:  Adding rollback DeploymentData for a deployment stoppage due to failure in the first apply phase.
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:    Adding rollback DeploymentData for: [email protected]49e3e18a
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:    Adding rollback DeploymentData for: /atg/epub/file/WWWFileSystem, /127.0.0.1:8810
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:    Adding rollback DeploymentData for: [email protected]337edb18
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:    Adding rollback DeploymentData for: [email protected]5ebfe1be
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:    Adding rollback DeploymentData for: /atg/epub/file/ConfigFileSystem, /127.0.0.1:8810
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:    Adding rollback DeploymentData for: [email protected]2e47c083
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:    Adding rollback DeploymentData for: [email protected]50966248
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:    Adding rollback DeploymentData for: [email protected]3acdf9ac
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:    Adding rollback DeploymentData for: [email protected]6fb0e5a3
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:    Adding rollback DeploymentData for: atg.adapter.version.VersionRepository@6362aba6(/atg/userprofiling/PersonalizationRepository)
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:Purging deployment data for deployment: 900005
    /atg/deployment/DeploymentManager    Purging deployment data for deployment 900005
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:Starting DAF deployment with ID: 900005-auto_rb
    /atg/deployment/DeploymentManager    Database: Oracle
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:Polling Until Data Appplied
    /atg/deployment/DeploymentManager    Starting deployment with id: 900005-auto_rb
    /atg/deployment/DeploymentManager    Executing deployment in LOCAL mode
    /atg/deployment/DeploymentManager    Attempted to remove references to non-existent item product:prod70022 continuing to deploy, but not invoking removeItem.
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:DeploymentListener.deploymentCompleted called for deployment with ID: 900005-auto_rb
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:DAFDeploymentID: 900005-auto_rb matches DeploymentID: 900005-auto_rb
    /atg/epub/DeploymentServer    DistributedDeploymentAdapter:DeploymentListener.deploymentCompleted
    /atg/deployment/DeploymentManager    Purging deployment data for deployment 900005-auto_rb
    /atg/deployment/DeploymentManager    Purging deployment data for deployment 900005-auto_rb
    /atg/deployment/DeploymentManager    Deployment 900005-auto_rb finished in 0:07.672
    /atg/deployment/DeploymentManager    Averaged 0 assets per second
    /atg/deployment/DeploymentManager    Purging deployment data for deployment 900005
    /atg/epub/DeploymentServer    ---    atg.deployment.common.DeploymentException: Deployment '900005' to target 'Production' encountered a system level deployment error during data transfer.
    /atg/epub/DeploymentServer        at atg.deployment.common.ResourceUtil.exception(ResourceUtil.java:333)
    /atg/epub/DeploymentServer        at atg.deployment.adapter.DistributedDeploymentAdapter.deployData(DistributedDeploymentAdapter.java:1391)
    /atg/epub/DeploymentServer        at atg.deployment.adapter.DistributedDeploymentAdapter.transferData(DistributedDeploymentAdapter.java:278)
    /atg/epub/DeploymentServer        at atg.deployment.server.Deployment.run(Deployment.java:1960)
    /atg/epub/DeploymentServer        at java.lang.Thread.run(Thread.java:724)
    /atg/epub/DeploymentServer   

  • BPM 10.3.1 - Error deploying a project

    Hi,
    We have a project already running on our production server. It runs perfectly.
    We have published a new version that contains a project variable. This is the first time we are including a project variable in any of our projects.
    The project is published successfully, we can see the variable in the Process Administrator. When we try to deploy it, we get the following error message:
    *Error(s) found while creating external variables for the following engines: bpmengine: [BEA][Oracle JDBC Driver][Oracle]ORA-01017: invalid username/password; logon denied*
    And in the webconsole.log file we get the following:
    [     (cont)     ] Main: Error(s) found while creating external variables for the following engines:
    [     (cont)     ] Main: bpmengine: [BEA][Oracle JDBC Driver][Oracle]ORA-01017: invalid username/password; logon denied
    [     (cont)     ] Main:
    [     (cont)     ] Main:
    [     (cont)     ] Main: fuego.mami.exception.CannotUpdateEngineExternalVariablesException: Error(s) found while creating external variables for the following engines:
    [     (cont)     ] Main: bpmengine: [BEA][Oracle JDBC Driver][Oracle]ORA-01017: invalid username/password; logon denied
    [     (cont)     ] Main:
    [     (cont)     ] Main:
    [     (cont)     ] Main:      at fuego.mami.DeploymentTopology.deploy(DeploymentTopology.java:824)
    [     (cont)     ] Main:      at fuego.webconsole.model.JSFDeploymentTopology.deployAction(JSFDeploymentTopology.java:744)
    [     (cont)     ] Main:      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [     (cont)     ] Main:      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [     (cont)     ] Main:      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [     (cont)     ] Main:      at java.lang.reflect.Method.invoke(Method.java:597)
    [     (cont)     ] Main:      at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
    [     (cont)     ] Main:      at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:72)
    [     (cont)     ] Main:      at javax.faces.component.UICommand.broadcast(UICommand.java:312)
    [     (cont)     ] Main:      at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:267)
    [     (cont)     ] Main:      at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:381)
    [     (cont)     ] Main:      at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:75)
    [     (cont)     ] Main:      at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
    [     (cont)     ] Main:      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    [     (cont)     ] Main:      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    [     (cont)     ] Main:      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    [     (cont)     ] Main:      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    [     (cont)     ] Main:      at fuego.web.filter.CharsetFilter.doFilter(CharsetFilter.java:48)
    [     (cont)     ] Main:      at fuego.web.filter.BaseFilter.doFilter(BaseFilter.java:63)
    [     (cont)     ] Main:      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    [     (cont)     ] Main:      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    [     (cont)     ] Main:      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    [     (cont)     ] Main:      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    [     (cont)     ] Main:      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    [     (cont)     ] Main:      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    [     (cont)     ] Main:      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    [     (cont)     ] Main:      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    [     (cont)     ] Main:      at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    [     (cont)     ] Main:      at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:667)
    [     (cont)     ] Main:      at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    [     (cont)     ] Main:      at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    [     (cont)     ] Main:      at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    [     (cont)     ] Main:      at java.lang.Thread.run(Thread.java:619)
    [     (cont)     ] Main:
    Any help will be appreciated!
    Thanks,
    Roy

    Sounds like the database information is wrong, Have you tried correctign this through the BPM Process administrator? There are a few places where you setup database configuration it's probably one of them.
    I'm am fairly new so I can only offer up that.
    I'm having a nightmare myself deplying a process engine, good luck
    mARK

  • Error deploying JSF project to my standalone OC4J server

    javax.faces.el.EvaluationException: oracle.oc4j.loader.util.AnnotatedLinkageError: view/backing/BlahBean (Unsupported major.minor version 49.0)
         Invalid class: view.backing.BlahBean
         Loader: scannerex.web.scannerex:0.0.0
         Code-Source: /D:/Oracle10gDS/jdev10gW/j2ee/home/applications/scannerex/scannerex/WEB-INF/classes/
         Configuration: WEB-INF/classes/ in D:\Oracle10gDS\jdev10gW\j2ee\home\applications\scannerex\scannerex\WEB-INF\classes
         Dependent class: java.beans.Beans
         Loader: jre.bootstrap
         Code-Source: unknown
         Configuration: jre bootstrap
         at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:206)...
    Basically the BlahBean is the backing bean for my JSF page. It seems as if it can't find it, or that it doesnt like the actual bean
    Any ideas on what may be the problem here?

    Unsupported major.minor version 49.0
    Compile JSF with JDK 1.4.

  • Error while deploying import project

    I am getting the following error while deploying the import project.
    I dont get any error while importing assets from the xls sheet. it successfully imports all the assets.
    It only gives error when i try to deploy this project.
    I have checked all the assets and i dont see any id as null in the data that i m importing.
    09:28:31,978 ERROR [DeploymentManager]  item = repositoryMarker:mark5621005 cause = CONTAINER:atg.deployment.DistributedDeploymentException; SOURCE:atg.repository.Repos
    itoryException: Ids cannot be null
            at atg.deployment.repository.RepositoryWorkerThread.processMarkerForAddUpdatePhase(RepositoryWorkerThread.java:274)
            at atg.deployment.DeploymentWorkerThread.processMarkerPhase(DeploymentWorkerThread.java:562)
            at atg.deployment.DeploymentWorkerThread.run(DeploymentWorkerThread.java:335)
    message = Deployment Failed time = Wed Jul 24 09:28:31 PDT 2013  atg.deployment.DeploymentFailure@13738c4f
    CAUGHT AT:
    CONTAINER:atg.deployment.DistributedDeploymentException; SOURCE:atg.repository.RepositoryException: Ids cannot be null
            at atg.deployment.repository.RepositoryWorkerThread.processMarkerForAddUpdatePhase(RepositoryWorkerThread.java:274)
            at atg.deployment.DeploymentWorkerThread.processMarkerPhase(DeploymentWorkerThread.java:562)
            at atg.deployment.DeploymentWorkerThread.run(DeploymentWorkerThread.java:335)
    Caused by: atg.repository.RepositoryException: Ids cannot be null
            at atg.adapter.version.VersionRepository.getItem(VersionRepository.java:903)
            at atg.deployment.repository.RepositoryWorkerThread.getSourceItem(RepositoryWorkerThread.java:995)
            at atg.deployment.repository.RepositoryWorkerThread.deployItem(RepositoryWorkerThread.java:1024)
            at atg.deployment.repository.RepositoryWorkerThread.processMarkerForAddUpdatePhase(RepositoryWorkerThread.java:262)
            ... 2 more

    Hi,
    It looks like the mapping is either wrong or some conflicts between pub and target database. What is the id-column-name for this item? Can you also turn on the debugs for that repository while deploying and get the insert statement that is throwing the error? It would be helpful if you can also share the item definition.

  • Error while deploying the project to ESB and deleting the services in ESB

    Hi,
    I am tiring to deploy a project to ESB, but I am getting this exception.
    error code: 0 : 10
    summary: An unhandled exception has been thrown in the ESB system. The exception reported is: "javax.transaction.RollbackException: Timed out
    at com.evermind.server.ApplicationServerTransaction.checkForRollbackOnlyWhileInCommit(ApplicationServerTransaction.java:582)
    at com.evermind.server.ApplicationServerTransaction.doCommit(ApplicationServerTransaction.java:244)
    at com.evermind.server.ApplicationServerTransaction.commit(ApplicationServerTransaction.java:130)
    at com.evermind.server.ApplicationServerTransactionManager.commit(ApplicationServerTransactionManager.java:433)
    at oracle.tip.esb.console.XMLConsoleManagerImpl.commit(Unknown Source)
    at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.deploy(Unknown Source)
    at oracle.tip.esb.configuration.deployment.DeploymentServlet.doPost(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
    at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    Fix: -
    In the earlier thread
    Error while deploying the project to ESB
    I was told to do some corrections. I did that and also I have bounced the OPMN. It worked for me.
    But again I am getting the same error, and I did this for the second time. But it didn’t work now.
    And I also have one more problem. I am not able to delete the existing services in the ESB console. When I try to delete the services I am getting the same error.
    I even checked the LOGS. The last three error payloads I see are
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2007-04-03T13:15:30.846-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>tip</COMPONENT_ID>
    <MSG_TYPE TYPE="WARNING"></MSG_TYPE>
    <MSG_LEVEL>1</MSG_LEVEL>
    <HOST_ID>usmlrh37.arrow.com</HOST_ID>
    <HOST_NWADDR>192.168.226.25</HOST_NWADDR>
    <MODULE_ID>esb.server.service.impl.inadapter</MODULE_ID>
    <THREAD_ID>26</THREAD_ID>
    <USER_ID>soauser</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>192.168.226.25:62472:1175620406177:7</UNIQUE_ID><SEQ>0</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>JCA: ORABPEL-11207
    IO Failure in translator.
    IO failure because the Inbound XSD translator failed to DOM Parse InputStream .
    Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.
    </MSG_TEXT>
    <SUPPL_DETAIL><![CDATA[ORABPEL-11207
    IO Failure in translator.
    IO failure because the Inbound XSD translator failed to DOM Parse InputStream .
    Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.
         at oracle.tip.pc.services.translation.xlators.xsd.XSDTranslator.translateFromNative(XSDTranslator.java:136)
         at oracle.tip.adapter.mq.inbound.MessageProcessor.translateMessage(MessageProcessor.java:377)
         at oracle.tip.adapter.mq.inbound.MessageProcessor.processMessage(MessageProcessor.java:217)
         at oracle.tip.adapter.mq.inbound.MessageProcessor.run(MessageProcessor.java:165)
         at oracle.j2ee.connector.work.WorkWrapper.runTargetWork(WorkWrapper.java:242)
         at oracle.j2ee.connector.work.WorkWrapper.doWork(WorkWrapper.java:215)
         at oracle.j2ee.connector.work.WorkWrapper.run(WorkWrapper.java:190)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.io.UTFDataFormatException: Invalid UTF8 encoding.
         at oracle.xml.parser.v2.XMLUTF8Reader.checkUTF8Byte(XMLUTF8Reader.java:160)
         at oracle.xml.parser.v2.XMLUTF8Reader.readUTF8Char(XMLUTF8Reader.java:187)
         at oracle.xml.parser.v2.XMLUTF8Reader.fillBuffer(XMLUTF8Reader.java:120)
         at oracle.xml.parser.v2.XMLByteReader.saveBuffer(XMLByteReader.java:450)
         at oracle.xml.parser.v2.XMLReader.fillBuffer(XMLReader.java:2488)
         at oracle.xml.parser.v2.XMLReader.tryRead(XMLReader.java:1089)
         at oracle.xml.parser.v2.XMLReader.scanXMLDecl(XMLReader.java:3047)
         at oracle.xml.parser.v2.XMLReader.pushXMLReader(XMLReader.java:521)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:287)
         at oracle.tip.pc.services.translation.xlators.xsd.XSDTranslator.translateFromNative(XSDTranslator.java:134)
         ... 8 more
    ]]></SUPPL_DETAIL>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2007-04-03T13:15:30.850-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>tip</COMPONENT_ID>
    <MSG_TYPE TYPE="ERROR"></MSG_TYPE>
    <MSG_LEVEL>1</MSG_LEVEL>
    <HOST_ID>usmlrh37.arrow.com</HOST_ID>
    <HOST_NWADDR>192.168.226.25</HOST_NWADDR>
    <MODULE_ID>esb.monitor.manager</MODULE_ID>
    <THREAD_ID>29</THREAD_ID>
    <USER_ID>soauser</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>192.168.226.25:62472:1175620406325:10</UNIQUE_ID><SEQ>87</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>Activity monitor manager received an unexpected exception while processing the activity messages. Due to the error "ORA-01653: unable to extend table ORAESB.ESB_FAULTED_INSTANCE by 8 in tablespace USERS
    ", the activity message could not be stored.
    </MSG_TEXT>
    <SUPPL_DETAIL><![CDATA[oracle.tip.esb.monitor.MonitorException: Due to the error "ORA-01653: unable to extend table ORAESB.ESB_FAULTED_INSTANCE by 8 in tablespace USERS
    ", the activity message could not be stored.
         at oracle.tip.esb.monitor.manager.database.AbstractFaultPersister.persist(Unknown Source)
         at oracle.tip.esb.monitor.manager.database.DBActivityMessageStore.persistMessage(Unknown Source)
         at oracle.tip.esb.monitor.manager.database.DBActivityMessageStore.store(Unknown Source)
         at oracle.tip.esb.monitor.manager.ActivityMessageManager.handleMessage(Unknown Source)
         at oracle.tip.esb.server.dispatch.agent.ESBWork.process(Unknown Source)
         at oracle.tip.esb.server.dispatch.agent.ESBWork.run(Unknown Source)
         at oracle.j2ee.connector.work.WorkWrapper.runTargetWork(WorkWrapper.java:242)
         at oracle.j2ee.connector.work.WorkWrapper.doWork(WorkWrapper.java:215)
         at oracle.j2ee.connector.work.WorkWrapper.run(WorkWrapper.java:190)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.sql.SQLException: ORA-01653: unable to extend table ORAESB.ESB_FAULTED_INSTANCE by 8 in tablespace USERS
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:185)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:633)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1161)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3001)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3074)
         at oracle.oc4j.sql.proxy.PreparedStatementBCELProxy.executeUpdate(PreparedStatementBCELProxy.java:37)
         at oracle.tip.esb.monitor.manager.database.oracle.OracleFaultPersister.persist(Unknown Source)
         ... 11 more
    ]]></SUPPL_DETAIL>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2007-04-03T13:15:30.853-04:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>tip</COMPONENT_ID>
    <MSG_TYPE TYPE="ERROR"></MSG_TYPE>
    <MSG_LEVEL>1</MSG_LEVEL>
    <HOST_ID>usmlrh37.arrow.com</HOST_ID>
    <HOST_NWADDR>192.168.226.25</HOST_NWADDR>
    <MODULE_ID>esb.server.dispatch.agent</MODULE_ID>
    <THREAD_ID>29</THREAD_ID>
    <USER_ID>soauser</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>192.168.226.25:62472:1175620406325:10</UNIQUE_ID><SEQ>87</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>Failed to process deferred message</MSG_TEXT>
    <SUPPL_DETAIL>oracle.tip.esb.server.common.exceptions.BusinessEventRejectionException: Error occured while handling monitor message dequeued from monitor topic. Message text is "<activityMessages><activityMessage order='0' type='2'><flowId>ECA97010E20611DBBFEBA191573C68FA</flowId><subFlowId>1175620530577</subFlowId><source>379D02F0DD5F11DBBF92D52E11DE817E</source><sourceQName>Demo_Inbound_Queue_to_DB.Demo_Inbound_Queue_to_DB_From_Queue</sourceQName><timestamp>1175620530577</timestamp><operationGUID>379E8990DD5F11DBBF92D52E11DE817E</operationGUID><operationQName>Demo_Inbound_Queue_to_DB.Demo_Inbound_Queue_to_DB_From_Queue_RS.Dequeue</operationQName><errorMessage><![CDATA[java.util.MissingResourceException
    java.util.MissingResourceException
    java.util.MissingResourceException
    ]]></errorMessage><exception><![CDATA[ORABPEL-13004
    java.util.MissingResourceException
    java.util.MissingResourceException
    java.util.MissingResourceException
         at oracle.tip.adapter.mq.inbound.MessageProcessor.translateMessage(MessageProcessor.java:388)
         at oracle.tip.adapter.mq.inbound.MessageProcessor.processMessage(MessageProcessor.java:217)
         at oracle.tip.adapter.mq.inbound.MessageProcessor.run(MessageProcessor.java:165)
         at oracle.j2ee.connector.work.WorkWrapper.runTargetWork(WorkWrapper.java:242)
         at oracle.j2ee.connector.work.WorkWrapper.doWork(WorkWrapper.java:215)
         at oracle.j2ee.connector.work.WorkWrapper.run(WorkWrapper.java:190)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:814)
         at java.lang.Thread.run(Thread.java:595)
    ]]></exception><inPayload><![CDATA[ediExtract850Header           4085537732     8670SSD23962-29     008675989102007032220070322
    [b]Can any one please help me.
    Thanks
    Rao.

    Hi Bastiaan,
    Thanks for the reply. I have asked my DBA analyst to work on this. He has increased the table space. Now if I try to deploy the projects to ESB the following error is show.
    Error 1:
    error code: 1000 : 5
    summary: /rh37/u01/app/soa/10.1.3.1/SOA/integration/esb/oraesb/deploy/OAGISApp_OAGIS.zip (Read-only file system)
    Fix: Contact Oracle Support
    Error 2:
    Entity Deployment Failed
    error code: 0 : 10
    summary: An unhandled exception has been thrown in the ESB system. The exception reported is:
    "oracle.tip.esb.infra.exception.ESBRuntimeException: An unhandled exception has been thrown in the ESB system. The exception
    reported is: "java.lang.NullPointerException
         at oracle.tip.esb.console.CacheManager.updateService(Unknown Source)
         at oracle.tip.esb.console.CacheManager.replaceEntity(Unknown Source)
         at oracle.tip.esb.console.XMLConsoleManagerImpl.updateServiceInRepository(Unknown Source)
         at oracle.tip.esb.console.XMLConsoleManagerImpl.updateServiceFromElement(Unknown Source)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.createEntity(Unknown Source)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.createServices(Unknown Source)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.deploy(Unknown Source)
         at oracle.tip.esb.configuration.deployment.DeploymentServlet.doPost(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
         at oracle.tip.esb.console.XMLConsoleManagerImpl.updateServiceInRepository(Unknown Source)
         at oracle.tip.esb.console.XMLConsoleManagerImpl.updateServiceFromElement(Unknown Source)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.createEntity(Unknown Source)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.createServices(Unknown Source)
         at oracle.tip.esb.configuration.deployment.JDevDeploymentManager.deploy(Unknown Source)
         at oracle.tip.esb.configuration.deployment.DeploymentServlet.doPost(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:396)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:410)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.NullPointerException
         at oracle.tip.esb.console.CacheManager.updateService(Unknown Source)
         at oracle.tip.esb.console.CacheManager.replaceEntity(Unknown Source)
         ... 26 more
    Fix: -
    I tried to stop and start the OPMN. It didn't work. Can you please help me.
    Thanks
    Rao.
    Message was edited by:
    user552961

  • Error while deploying my project from jDeveloper to Weblogic Server 10.3

    I am trying to deploy my project from Oracle jDeveloper to remote Weblogic Server.
    I am getting an SQL Exception. See below log:
    [11:09:55 PM] ---- Deployment started. ---- [11:09:55 PM] Target platform is (Weblogic 10.3). [11:09:55 PM] Running dependency analysis... [11:09:55 PM] Building... [11:10:04 PM] Deploying profile... [11:10:04 PM] Updating revision id for the SOA Project 'bpm_poc_project.jpr' to '1.0'.. [11:10:04 PM] Wrote Archive Module to /xyz/home/abc/jdeveloper/mywork/bpm_poc_app/bpm_poc_project/deploy/sca_bpm_poc_project_rev1.0.jar [11:10:04 PM] Deploying sca_bpm_poc_project_rev1.0.jar to partition "default" on server AdminServer [http://localhost:7001] [11:10:04 PM] Processing sar=/xyz/home/akrishn2/jdeveloper/mywork/bpm_poc_app/bpm_poc_project/deploy/sca_bpm_poc_project_rev1.0.jar [11:10:04 PM] Adding sar file - /xyz/home/akrishn2/jdeveloper/mywork/bpm_poc_app/bpm_poc_project/deploy/sca_bpm_poc_project_rev1.0.jar [11:10:04 PM] Preparing to send HTTP request for deployment [11:10:04 PM] Creating HTTP connection to host:localhost, port:7001 [11:10:04 PM] Sending internal deployment descriptor [11:10:04 PM] Sending archive - sca_bpm_poc_project_rev1.0.jar [11:11:26 PM] Received HTTP response from the server, response code=500 [11:11:26 PM] Error deploying archive sca_bpm_poc_project_rev1.0.jar to partition "default" on server AdminServer [http://localhost:7001] [11:11:26 PM] HTTP error code returned [500] [11:11:26 PM] Error message from server: There was an error deploying the composite on AdminServer: javax.ejb.EJBException: EJB Exception: ; nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.1.2.v20101206-r8635): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: java.sql.SQLSyntaxErrorException: ORA-00904: "SUBTYPE": invalid identifier
    Error Code: 904 Call: SELECT PROCESSID, ORGANIZATIONALUNITID, HASGLOBALCREATIONTASKS, TARGETNAMESPACE, COMPOSITENAME, STATUS, SCALABEL, PROCESSNAME, LABEL, DOMAINNAME, COMPOSITEDN, PROCESSTYPE, CREATIONDATE, SUBTYPE, REVISION, UNDEPLOYDATE FROM BPM_CUBE_PROCESS WHERE (((((DOMAINNAME = ?) AND (COMPOSITENAME = ?)) AND (REVISION = ?)) AND (SCALABEL = ?)) AND (PROCESSTYPE = ?)) bind => [default, bpm_poc_project, 1.0, soa_347b99f8-fa8d-4671-a2f8-2b5446723ab2, BPMN] Query: ReadAllQuery(name="CubeProcess.findCubeProcessesInComposite" referenceClass=CubeProcess sql="SELECT PROCESSID, ORGANIZATIONALUNITID, HASGLOBALCREATIONTASKS, TARGETNAMESPACE, COMPOSITENAME, STATUS, SCALABEL, PROCESSNAME, LABEL, DOMAINNAME, COMPOSITEDN, PROCESSTYPE, CREATIONDATE, SUBTYPE, REVISION, UNDEPLOYDATE FROM BPM_CUBE_PROCESS WHERE (((((DOMAINNAME = ?) AND (COMPOSITENAME = ?)) AND (REVISION = ?)) AND (SCALABEL = ?)) AND (PROCESSTYPE = ?))"); nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.1.2.v20101206-r8635): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: java.sql.SQLSyntaxErrorException: ORA-00904: "SUBTYPE": invalid identifier
    Error Code: 904 Call: SELECT PROCESSID, ORGANIZATIONALUNITID, HASGLOBALCREATIONTASKS, TARGETNAMESPACE, COMPOSITENAME, STATUS, SCALABEL, PROCESSNAME, LABEL, DOMAINNAME, COMPOSITEDN, PROCESSTYPE, CREATIONDATE, SUBTYPE, REVISION, UNDEPLOYDATE FROM BPM_CUBE_PROCESS WHERE (((((DOMAINNAME = ?) AND (COMPOSITENAME = ?)) AND (REVISION = ?)) AND (SCALABEL = ?)) AND (PROCESSTYPE = ?)) bind => [default, bpm_poc_project, 1.0, soa_347b99f8-fa8d-4671-a2f8-2b5446723ab2, BPMN] Query: ReadAllQuery(name="CubeProcess.findCubeProcessesInComposite" referenceClass=CubeProcess sql="SELECT PROCESSID, ORGANIZATIONALUNITID, HASGLOBALCREATIONTASKS, TARGETNAMESPACE, COMPOSITENAME, STATUS, SCALABEL, PROCESSNAME, LABEL, DOMAINNAME, COMPOSITEDN, PROCESSTYPE, CREATIONDATE, SUBTYPE, REVISION, UNDEPLOYDATE FROM BPM_CUBE_PROCESS WHERE (((((DOMAINNAME = ?) AND (COMPOSITENAME = ?)) AND (REVISION = ?)) AND (SCALABEL = ?)) AND (PROCESSTYPE = ?))"): EJB Exception: ; nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.1.2.v20101206-r8635): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: java.sql.SQLSyntaxErrorException: ORA-00904: "SUBTYPE": invalid identifier
    Error Code: 904 Call: SELECT PROCESSID, ORGANIZATIONALUNITID, HASGLOBALCREATIONTASKS, TARGETNAMESPACE, COMPOSITENAME, STATUS, SCALABEL, PROCESSNAME, LABEL, DOMAINNAME, COMPOSITEDN, PROCESSTYPE, CREATIONDATE, SUBTYPE, REVISION, UNDEPLOYDATE FROM BPM_CUBE_PROCESS WHERE (((((DOMAINNAME = ?) AND (COMPOSITENAME = ?)) AND (REVISION = ?)) AND (SCALABEL = ?)) AND (PROCESSTYPE = ?)) bind => [default, bpm_poc_project, 1.0, soa_347b99f8-fa8d-4671-a2f8-2b5446723ab2, BPMN] Query: ReadAllQuery(name="CubeProcess.findCubeProcessesInComposite" referenceClass=CubeProcess sql="SELECT PROCESSID, ORGANIZATIONALUNITID, HASGLOBALCREATIONTASKS, TARGETNAMESPACE, COMPOSITENAME, STATUS, SCALABEL, PROCESSNAME, LABEL, DOMAINNAME, COMPOSITEDN, PROCESSTYPE, CREATIONDATE, SUBTYPE, REVISION, UNDEPLOYDATE FROM BPM_CUBE_PROCESS WHERE (((((DOMAINNAME = ?) AND (COMPOSITENAME = ?)) AND (REVISION = ?)) AND (SCALABEL = ?)) AND (PROCESSTYPE = ?))"); nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.1.2.v20101206-r8635): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: java.sql.SQLSyntaxErrorException: ORA-00904: "SUBTYPE": invalid identifier
    Error Code: 904 Call: SELECT PROCESSID, ORGANIZATIONALUNITID, HASGLOBALCREATIONTASKS, TARGETNAMESPACE, COMPOSITENAME, STATUS, SCALABEL, PROCESSNAME, LABEL, DOMAINNAME, COMPOSITEDN, PROCESSTYPE, CREATIONDATE, SUBTYPE, REVISION, UNDEPLOYDATE FROM BPM_CUBE_PROCESS WHERE (((((DOMAINNAME = ?) AND (COMPOSITENAME = ?)) AND (REVISION = ?)) AND (SCALABEL = ?)) AND (PROCESSTYPE = ?)) bind => [default, bpm_poc_project, 1.0, soa_347b99f8-fa8d-4671-a2f8-2b5446723ab2, BPMN] Query: ReadAllQuery(name="CubeProcess.findCubeProcessesInComposite" referenceClass=CubeProcess sql="SELECT PROCESSID, ORGANIZATIONALUNITID, HASGLOBALCREATIONTASKS, TARGETNAMESPACE, COMPOSITENAME, STATUS, SCALABEL, PROCESSNAME, LABEL, DOMAINNAME, COMPOSITEDN, PROCESSTYPE, CREATIONDATE, SUBTYPE, REVISION, UNDEPLOYDATE FROM BPM_CUBE_PROCESS WHERE (((((DOMAINNAME = ?) AND (COMPOSITENAME = ?)) AND (REVISION = ?)) AND (SCALABEL = ?)) AND (PROCESSTYPE = ?))").
    Can someone give some pointers ?
    Edited by: 853032 on Apr 18, 2011 11:22 PM

    If you can, the best way would be to to change the column name from SUBTYPE to something that isn't a SQL reserved key word.
    You might get around this particular problem by adding @Column(name = "\"SUBTYPE\"") on your attribute. This will force eclipselink to add quotation marks in the generated SLQ, but I think it will cause problems when it comes to some more complicated queries.
    In my opinion, the only safe way here is to not use column names that are in conflict with SLQ reserved key words.
    Pedja

  • Internal Server Error while deploying a project to a remote BPEL instance.

    Some background. We were trying to use the adapters going out through iWay to hit a Siebel instance. Originally, we were using a BPEL VM for development, and trying to hit adapters on the iWay box. We found out that we needed to have BPEL and adapters installed in the OC4J container; so we rebuilt our iWay box.
    So, now the iWay box has Oracle DB, Oracle App Server, BPEL, and adapters in the same OC4J container.
    When you do an appserver install of BPEL, it doesn't install JDev; so we are doing development on our BPEL VM; or on a standalone version on the laptop (both give the same error.)
    I can deploy the project locally to my laptop or the locally to the SOA(BPEL) VM, but when I try to deploy from either JDev to the BPEL server on iWay, we get:
    Beginning Deployment Process...
    Compiling C:\OraBPELPM_1\integration\jdev\jdev\mywork\AJ_Siebel\OracleCDHToSiebelAsyncCustomer\OracleCDHToSiebelAsyncCustomer.bpel
    Compiling...
    BPEL suitcase generated in: C:\OraBPELPM_1\integration\jdev\jdev\mywork\AJ_Siebel\OracleCDHToSiebelAsyncCustomer\output\bpel_OracleCDHToSiebelAsyncCustomer_1.0.jar
    [1:55:05 PM] Successful compilation: 0 errors, 0 warnings.
    Deploying to http://148.87.129.102:80 domain: default. Please wait....
    [1:55:15 PM] Deployment failed.
    Description of problem: Server error.Internal Server Error
    Suggested solution: Please report this error to the adminsitrator.
    I can hit the BPEL console on the http://148.87.129.102:80/BPELConsole link, so I know that's correct... (as well as the "Test Connection" works fine to that box.)
    Anyone seen this before? Ideas?

    Got it..
    I was using Fuego.Sql.DynamicSQL.close(Iterator)
    For a an executeUpdate query which returns an int.
    But I used it in a method and did not use that method inside my process or screenflow.
    But it did not give me any error/exception while compiling it in Studio.
    It gave me an exception while publishing in Enterprise.
    This is strange.
    It should have given me an error/exception while compiling itself rather than while publishing in Enterprise.

  • OSB Error in deploying a project with jca file adapter

    Hi,
    I am facing an issue where I am getting an error when deploying a service from Eclipse. I am using OSB/SOA 11.1.1.5 2 node cluster. I have an OSB service where I am writing to a file and am using file adapater. I created a composite with file adapter to write a file then imported .jac, .wsdl and composite into eclipse and generated a business service out of .jca file. When I deploy the project from eclipse I am getting the below error and am not able to deploy the project.
    Conflicts found during publish.
    Invalid JCA transport endpoint configuration, exception: javax.resource.ResourceException: Cannot locate Java class oracle.tip.adapter.file.outbound.FileInteractionSpec
    Cannot locate Java class oracle.tip.adapter.file.outbound.FileInteractionSpec
    I have FileAdapter deployed and pointed to OSB manage servers cluster. Here is a snippet of config.xml.
    <app-deployment>
        <name>FileAdapter</name>
        <target>SOA_Cluster,OSB_Cluster</target>
        <module-type>rar</module-type>
        <source-path>/app/oracle/fmw/Oracle_SOA1/soa/connectors/FileAdapter.rar</source-path>
        <deployment-order>321</deployment-order>
        <plan-dir xsi:nil="true"></plan-dir>
        <plan-path>/app/oracle/shared/SOA_Cluster/dp/FileAdapterPlan.xml</plan-path>
        <security-dd-model>DDOnly</security-dd-model>
        <staging-mode>nostage</staging-mode>
      </app-deployment>
    Also inside console -> deployments  -> FileAdapter -> Targets and OSB_Cluster is checked also.
    Here is the .jca file
    <adapter-config name="writeFile" adapter="File Adapter" wsdlLocation="writeFile.wsdl" xmlns="http://platform.integration.oracle/blocks/adapter/fw/metadata">
      <connection-factory location="eis/HAFileAdapter"/>
      <endpoint-interaction portType="Write_ptt" operation="Write">
        <interaction-spec className="oracle.tip.adapter.file.outbound.FileInteractionSpec">
          <property name="PhysicalDirectory" value="C:\ORACLE"/>
          <property name="Append" value="false"/>
          <property name="FileNamingConvention" value="a_%SEQ%.doc"/>
          <property name="NumberMessages" value="1"/>
        </interaction-spec>
      </endpoint-interaction>
    </adapter-config>
    Any idea what might be wrong.
    Thanks.

    I already have the fileAdapter JNDI is already configured in console. The error I am getting is during the deployment
    Conflicts found during publish.
    Invalid JCA transport endpoint configuration, exception: javax.resource.ResourceException: Cannot locate Java class oracle.tip.adapter.file.outbound.FileInteractionSpec
    Cannot locate Java class oracle.tip.adapter.file.outbound.FileInteractionSpec
    Thanks

  • Error in deploying BPEL project from Jdeveloper

    Hi all,
    I am using Jdeveloper 10.1.3.4.0.
    For the first time BPEL project deployed successfully, but when i am trying to deploy second time it's giving the below error.
    BUILD FAILED
    D:\jdevstudio10134\jdev\mywork\AIA_POC_Application\AIABPELProcess1\build.xml:77: A problem occured while connecting to server "172.16.122.234" using port "80": bpel_AIABPELProcess1_1.0.jar failed to deploy. Exception message is: Error deploying BPEL suitcase.
    An error occurred while attempting to deploy the BPEL suitcase file "D:\SOA10.1.3.5\10.1.3.1\OracleAS_1\bpel\domains\default\tmp\bpel_10514847.tmp"; the exception reported is: archive cannot rename D:\SOA10.1.3.5\10.1.3.1\OracleAS_1\bpel\domains\default\tmp\.bpel_AIABPELProcess1_1.0_a5bf50a13f9cba731b8f263f2431a17c.tmp
    pls help me.
    thanks
    mani

    Can you check these things :
    1) is this issue with only this project ? Try deploying some other project
    2) try deploying this project using ant (change values in build.properties and right click on project -> run ant or something like that, use default deploy target)
    3) try undeploying project from server and then redeploying it again
    also, why is it connecting to port 80? normally it is 8888 or 7777 right?
    regards,
    Ketan

  • Error deploying 2 processes in the same project BPM 11gR3 Project

    Hi I have a problem to deploy a project in OBPM 11gR3.
    I have 2 processes on the same project, and tried separately on different projects and working properly. But when I put in the same project I get the following error.
    [02:09:38 PM] Sending internal deployment descriptor
    [02:09:38 PM] Sending archive - sca_BPM_CGEO_PROJECT_rev1.0.jar
    [02:09:47 PM] Received HTTP response from the server, response code=500
    *[02:09:47 PM] Error deploying archive sca_BPM_CGEO_PROJECT_rev1.0.jar to partition "default" on server soa_server1 [auohscgeo20.oracleoutsourcing.com:40513]*
    [02:09:47 PM] HTTP error code returned [500]
    [02:09:47 PM] Error message from server:
    Error during deployment: Deployment Failed: Error occurred during deployment of component: BPMCGEOPROCESOGENERACIONCONTRATOVENTA to service engine: implementation.bpmn, for composite: BPM_CGEO_PROJECT: java.lang.NullPointerException.
    [02:09:47 PM] Check server log for more details.
    [02:09:47 PM] Error deploying archive sca_BPM_CGEO_PROJECT_rev1.0.jar to partition "default" on server soa_server1 [auohscgeo20.oracleoutsourcing.com:40513]
    [02:09:47 PM] #### Deployment incomplete. ####
    [02:09:47 PM] Error deploying archive file:/D:/Archivos/Casas GEO/SRC/GEO/BPM/BPM_CGEO_APPLICACION/BPM_CGEO_PROJECT/deploy/sca_BPM_CGEO_PROJECT_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)
    Edited by: Eduardo.Reyes on 28-mar-2011 18:01

    Hi Eduardo
    This may not help but I am getting a similar problem and I have a possible workaround.
    I'm not a BPM expert though so...
    I have got a Null Pointer Exception, three times successively attempting to redeploy a BPMN Process SAR to WLS via JDeveloper only after I've added a new process to the project and attempted to redeploy.
    [05:45:17 PM] HTTP error code returned [500]
    [05:45:17 PM] Error message from server:
    Error during deployment: Error occurred during deployment of component: Responder313Process to service engine: implementation.bpmn, for composite: nicolson-soasuite-bpmn-ipc: java.lang.NullPointerException.
    [05:45:17 PM] Check server log for more details.
    The only way I can stop this Exception is to Undeploy the existing Process via Enterprise Manager, Stop and Restart WLS. (Which is very tedious...).
    To explain, I'm working though the various uses of Send/Receive tasks as described in Modeling and Implementation Guide for Oracle Business Process Management 11g Release 1 (11.1.1.4.0) - 6.4 Communicating With Other Processes and Services.
    So I have about five scenarios, each with a simple Caller/Responding process and each with some very simple combination of Send/Receive tasks. When the deployment works, the process communications test fine via EM.
    Personally, this looks like a bug. I'm using version below on Win XP SP3.
    About
    Oracle JDeveloper 11g Release 1 11.1.1.3.0
    Studio Edition Version 11.1.1.3.0
    Build JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660
    Copyright © 1997, 2010 Oracle and/or its affiliates. All rights reserved.
    IDE Version: 11.1.1.3.37.56.60
    Product ID: oracle.jdeveloper
    Product Version: 11.1.1.3.37.56.60
    Version
    Component     Version
    =========     =======
    ADF Business Components     11.1.1.56.60
    BPMN Editor          11.1.1.3.0.6.84
    Java(TM) Platform     1.6.0_18
    Oracle IDE          11.1.1.3.37.56.60
    SOA Composite Editor     11.1.1.3.0.25.57
    Versioning Support     11.1.1.3.37.56.60
    Regards
    Jim Nicolson

  • BPM11G- Error deploying project due to integrity constraint on  BPM_CUBE_GL

    I have a 11.1.1.3 installation on XP where I have deployed other soa projects. I tried deploying a new bpm project from a tutorial but it always errors out with the following error. I checked the local database for all BPM_CUBE* tables. Only one table had a few entries that I cleaned out. No luck with deploying a bpm project. I checked the forums here as well, but there do not appear to be any earlier problems logged.
    Any ideas?
    03:53:43 PM] Sending internal deployment descriptor
    [03:53:43 PM] Sending archive - sca_Project1_rev1.0.jar
    [03:53:55 PM] Received HTTP response from the server, response code=500
    [03:53:55 PM] Error deploying archive sca_Project1_rev1.0.jar to partition "default" on server soa_server1 [192.168.1.115:8001]
    [03:53:55 PM] HTTP error code returned [500]
    [03:53:55 PM] Error message from server:
    Error during deployment: Deployment Failed: Error occurred during deployment of component: QuoteProcess to service engine: implementation.bpmn, for composite: Project1: javax.ejb.EJBException: BEA1-32C827E3058560994897: Local Exception Stack:
    Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
    Error Code: 1
    Call: INSERT INTO BPM_CUBE_GLOBALCREATETASK (ACTIVITYLABEL, ROLE, APPLICATIONCONTEXT, SYSTEMSTRING01, SYSTEMSTRING02, SYSTEMSTRING03, ACTIVITYNAME, PROCESSID) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
         bind => [Business Practices Review, Project1.BusinessPractices, OracleBPMProcessRolesApp, default/Project1!1.0*soa_22ea7615-677c-4e88-aaf3-dd24cfc61d16/BusinessPracticeReviewTask, null, null, activity1, 484]
    Query: InsertObjectQuery([email protected]facd1e)
         at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:324)
         at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:801)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:85)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:953)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1224)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3467)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1350)
         at weblogic.jdbc.wrapper.PreparedStatement.executeUpdate(PreparedStatement.java:172)
         at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:792)
         ... 102 more
    ; nested exception is:
         Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
    Error Code: 1
    Call: INSERT INTO BPM_CUBE_GLOBALCREATETASK (ACTIVITYLABEL, ROLE, APPLICATIONCONTEXT, SYSTEMSTRING01, SYSTEMSTRING02, SYSTEMSTRING03, ACTIVITYNAME, PROCESSID) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
         bind => [Business Practices Review, Project1.BusinessPractices, OracleBPMProcessRolesApp, default/Project1!1.0*soa_22ea7615-677c-4e88-aaf3-dd24cfc61d16/BusinessPracticeReviewTask, null, null, activity1, 484]
    Query: InsertObjectQuery([email protected]facd1e); nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
    Error Code: 1
    Call: INSERT INTO BPM_CUBE_GLOBALCREATETASK (ACTIVITYLABEL, ROLE, APPLICATIONCONTEXT, SYSTEMSTRING01, SYSTEMSTRING02, SYSTEMSTRING03, ACTIVITYNAME, PROCESSID) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
         bind => [Business Practices Review, Project1.BusinessPractices, OracleBPMProcessRolesApp, default/Project1!1.0*soa_22ea7615-677c-4e88-aaf3-dd24cfc61d16/BusinessPracticeReviewTask, null, null, activity1, 484]
    Query: InsertObjectQuery([email protected]facd1e): BEA1-32C827E3058560994897: Local Exception Stack:
    Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
    Error Code: 1
    Call: INSERT INTO BPM_CUBE_GLOBALCREATETASK (ACTIVITYLABEL, ROLE, APPLICATIONCONTEXT, SYSTEMSTRING01, SYSTEMSTRING02, SYSTEMSTRING03, ACTIVITYNAME, PROCESSID) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
         bind => [Business Practices Review, Project1.BusinessPractices, OracleBPMProcessRolesApp, default/Project1!1.0*soa_22ea7615-677c-4e88-aaf3-dd24cfc61d16/BusinessPracticeReviewTask, null, null, activity1, 484]
    Query: InsertObjectQuery([email protected]facd1e)
         at org.eclipse.persistence.exceptions.DatabaseException.sqlException(DatabaseException.java:324)
         at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:801)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:85)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:953)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1224)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3467)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.executeUpdate(OraclePreparedStatementWrapper.java:1350)
         at weblogic.jdbc.wrapper.PreparedStatement.executeUpdate(PreparedStatement.java:172)
         at org.eclipse.persistence.internal.databaseaccess.DatabaseAccessor.executeDirectNoSelect(DatabaseAccessor.java:792)
         ... 102 more
    ; nested exception is:
         Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
    Error Code: 1
    Call: INSERT INTO BPM_CUBE_GLOBALCREATETASK (ACTIVITYLABEL, ROLE, APPLICATIONCONTEXT, SYSTEMSTRING01, SYSTEMSTRING02, SYSTEMSTRING03, ACTIVITYNAME, PROCESSID) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
         bind => [Business Practices Review, Project1.BusinessPractices, OracleBPMProcessRolesApp, default/Project1!1.0*soa_22ea7615-677c-4e88-aaf3-dd24cfc61d16/BusinessPracticeReviewTask, null, null, activity1, 484]
    Query: InsertObjectQuery([email protected]facd1e); nested exception is: Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.0.2.v20100323-r6872): org.eclipse.persistence.exceptions.DatabaseException
    Internal Exception: java.sql.SQLIntegrityConstraintViolationException: ORA-00001: unique constraint (DEV_SOAINFRA.BPM_CUBE_GLOBALCREATETASK_PK) violated
    Error Code: 1
    Call: INSERT INTO BPM_CUBE_GLOBALCREATETASK (ACTIVITYLABEL, ROLE, APPLICATIONCONTEXT, SYSTEMSTRING01, SYSTEMSTRING02, SYSTEMSTRING03, ACTIVITYNAME, PROCESSID) VALUES (?, ?, ?, ?, ?, ?, ?, ?)
         bind => [Business Practices Review, Project1.BusinessPractices, OracleBPMProcessRolesApp, default/Project1!1.0*soa_22ea7615-677c-4e88-aaf3-dd24cfc61d16/BusinessPracticeReviewTask, null, null, activity1, 484]
    Query: InsertObjectQuery([email protected]facd1e).
    [03:53:55 PM] Check server log for more details.
    [03:53:55 PM] Error deploying archive sca_Project1_rev1.0.jar to partition "default" on server soa_server1 [192.168.1.115:8001]
    [03:53:55 PM] #### Deployment incomplete. ####
    [03:53:55 PM] Error deploying archive file:/C:/JDeveloper/mywork/SalesQuoteApp/Project1/deploy/sca_Project1_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)

    hi peoples,
    i'm pretty new with Oracle BPM and now i have the same problem with deploying my application.
    Does anyone know how to resolve this problem?
    tnx

  • Deployment error in CAF project with web service

    Hi,
    We are trying to deploy a CAF project in CE SP6 but we are getting warnings. The project gets deployed when no web services are created but when we create any web service and try to deploy we get the following deployment warning :
    [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5030] Clusterwide exception: server ID 22886750:com.sap.engine.services.deploy.container.DeploymentException:
         at com.sap.engine.services.webservices.server.deploy.WebServicesDeployManager.makeStartInitially(WebServicesDeployManager.java:693)
         at com.sap.engine.services.deploy.server.application.StartInitiallyTransaction.makeStartInitially(StartInitiallyTransaction.java:184)
         at com.sap.engine.services.deploy.server.application.StartInitiallyTransaction.prepare(StartInitiallyTransaction.java:145)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:420)
         at com.sap.engine.services.deploy.server.application.StartTransaction.doStartInitiallyGlobal(StartTransaction.java:449)
         at com.sap.engine.services.deploy.server.application.StartTransaction.doStartInitially(StartTransaction.java:437)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:178)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:420)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:445)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.super_MakeAllPhases(ParallelAdapter.java:337)
         at com.sap.engine.services.deploy.server.application.StartTransaction.makeAllPhasesImpl(StartTransaction.java:550)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:251)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesAndWait(ParallelAdapter.java:392)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:3389)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:3375)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:3278)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:3251)
         at com.sap.engine.services.dc.lcm.impl.J2EELCMProcessor.doStart(J2EELCMProcessor.java:99)
         at com.sap.engine.services.dc.lcm.impl.LifeCycleManagerImpl.start(LifeCycleManagerImpl.java:62)
         at com.sap.engine.services.dc.cm.deploy.impl.LifeCycleManagerStartVisitor.visit(LifeCycleManagerStartVisitor.java:34)
         at com.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:83)
         at com.sap.engine.services.dc.cm.deploy.impl.DefaultDeployPostProcessor.postProcessLCMDeplItem(DefaultDeployPostProcessor.java:80)
         at com.sap.engine.services.dc.cm.deploy.impl.DefaultDeployPostProcessor.postProcess(DefaultDeployPostProcessor.java:56)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.doPostProcessing(DeployerImpl.java:741)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.performDeploy(DeployerImpl.java:732)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.doDeploy(DeployerImpl.java:576)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.deploy(DeployerImpl.java:270)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImpl.deploy(DeployerImpl.java:192)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployerImplp4_Skel.dispatch(DeployerImplp4_Skel.java:875)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:351)
         at com.sap.engine.services.rmi_p4.server.ServerDispatchImpl.run(ServerDispatchImpl.java:70)
         at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:62)
         at com.sap.engine.services.rmi_p4.P4Message.execute(P4Message.java:37)
         at com.sap.engine.services.cross.fca.FCAConnectorImpl.executeRequest(FCAConnectorImpl.java:872)
         at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:53)
         at com.sap.engine.services.cross.fca.MessageReader.run(MessageReader.java:58)
         at com.sap.engine.core.thread.execution.Executable.run(Executable.java:108)
         at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:304)
    Can anyone please help?
    Edited by: Somnath Roy on Jul 30, 2008 2:20 PM

    Hi Roy,
                To best what i understand is that the clusterwide nested exception generally comes when you try to deploy a project or the method in the webservice which is already deployed. So please check if there is a redundant deployment due to which the error is being thrown.
    Regards
    Ashok

Maybe you are looking for