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.

Similar Messages

  • 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 deploying composite with  Human Workflow

    SOA 11.1.1.4
    I have included Human Workflow and generated task flow in my composite/bpel process.
    When I deploy the bpel project, I get below error.
    [Error deploying archive sca_ProjectName_rev1.0.jar to partition "default" on server soa_server1
    Deployment incomplete.
    Error deploying archive
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    could you please check in log file what error thrown during deployment. paste logs here in thread.
    Also, try to deploy only BPEL composite; you can deploy the task-form separately.

  • 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

  • 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

  • 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

  • Error deploying composite on SOA Suite 11g: premature EOF encountered

    I am getting the following error when trying to deploy a SOA composite from Jdev 11.1.1.2.0 (on XP) to SOA suite 11.1.1.2.0 (on linux):
    [10:36:43 AM] Error sending deployment request to server soa_server1 [xxx.xxx.x.xx:8001]
    java.io.EOFException: Premature EOF encountered
    More information:
    [10:35:34 AM] >>>> Warning: Unable to determine the target platform from the Profile. Using default...
    [10:35:34 AM] ---- Deployment started. ----
    [10:35:34 AM] Target platform is (Weblogic 10.3).
    [10:35:34 AM] Running dependency analysis...
    [10:35:34 AM] Building...
    [10:35:43 AM] Deploying profile...
    [10:35:43 AM] Updating revision id for the SOA Project 'validationForCC.jpr' to '1.0'..
    [10:35:43 AM] Wrote Archive Module to D:\po\CreditCardValidation\validationForCC\deploy\sca_validationForCC_rev1.0.jar
    [10:35:43 AM] Deploying sca_validationForCC_rev1.0.jar to soa_server1 [xxx.xxx.x.xx:8001]
    [10:35:43 AM] Processing sar=/D:/po/CreditCardValidation/validationForCC/deploy/sca_validationForCC_rev1.0.jar
    [10:35:43 AM] Adding sar file - D:\po\CreditCardValidation\validationForCC\deploy\sca_validationForCC_rev1.0.jar
    [10:35:43 AM] Preparing to send HTTP request for deployment
    [10:35:43 AM] Creating HTTP connection to host:xxx.xxx.x.xx, port:8001
    [10:35:43 AM] Sending internal deployment descriptor
    [10:35:43 AM] Sending archive - sca_validationForCC_rev1.0.jar
    [10:36:43 AM] Error sending deployment request to server soa_server1 [xxx.xxx.x.xx:8001]
    java.io.EOFException: Premature EOF encountered
    [10:36:43 AM] Error sending deployment request to server soa_server1 [xxx.xxx.x.xx:8001]
    java.io.EOFException: Premature EOF encountered
    [10:36:43 AM] #### Deployment incomplete. ####
    [10:36:43 AM] Error deploying archive file:/D:/po/CreditCardValidation/validationForCC/deploy/sca_validationForCC_rev1.0.jar
    (oracle.tip.tools.ide.fabric.deploy.common.SOARemoteDeployer)
    Who can help me solve this problem? The error always comes after exactly 1 minute.
    _[10:35:43 AM]_ Sending archive - sca_validationForCC_rev1.0.jar
    _[10:36:43 AM]_ Error sending deployment request to server soa_server1 [xxx.xxx.x.xx:8001]

    Problem is solved.
    The problem was caused by configuration of my computer.
    JDeveloper deployment needed to contact my application server by ip-adress and by alias.
    I could only ping to my application server by ip-adress.

  • Updating projects with activities linked to other projects.

    Im kind of new at this. I am working on a project with several contracts. i am thinking of setting up each contract as a separate project in an EPS and linking the milestones in all the projects to create a master schedule. On a weekly basis i recieve schedule updates from the contractors. What im wondering is if there is a way i can copy the new schedule in with all the updates without having to re-link all the activities everytime I get an updated schedule? also is this the best way to create a master schedule?

    *794503,*
    It sounds like your sub projects (contracts) are in sort of a design on the go mode?
    To make things a little more manageable I would suggest that you establish a set of standard start and finish milestones for each project in order for you to be able to ensure that your master project major milestones (hopefully integrated with your cost or earned value milestones) remain logically tied to those designated sub project milestones.
    With that said, I would just paste the new edition of each contract's schedule into their respective projects. I would make an export (.XER) backup before pasting any new data. It's better to be safe than sorry!
    Be mindful of the fact that you probably need to make sure that the logic ties gets pasted by not clicking the box (Relationships / Only between copied activities) on the "Copy Act. Options" dialog box. Otherwise, you'll have to manually tie all of the logic again. A royal pain in the "A" double "S"!!
    **Use a copy of the latest project/contract schedule update and as a baseline. Format your bars to also display that baseline schedule on row #2. Also insert a schedule variance column to display date changes between your original vs. newly updated schedule. For analysis of changes.....maybe build a new layout and filter to only display those act's that have major date changes (sched. variances)?
    **Another tool to use after the fact would be *"Claim Digger"* in order to analyze the details of what changes were made with each new schedule update.
    There is no way to eliminate all of the manual work. :(    Some manual verification will always have to be performed.
    It would be very smart to get a good grip on how you'll handle these changes early in the project before the situation gets out of hand.
    For every "schedule change" made to your schedule the chance of a scheduling error increases. So there you go.
    Good luck and let me know how it turns out.

  • [EJB:011055]Error deploying the EJB with error that JNDI name already inuse

    Hi,
    I have written a trivial application consisting of 4 stateless beans and 1 MDB. The ear is developed from some code generator tool and works fine if I directly deploy on weblogic server 812.
    But in order to learn Weblogic Workshop I created new Application and EJB project. Then I imported the EJB jar and provided other source files.
    From Weblogic Workshop I could generate the ear successfully. But while trying to deploy the ear I get the following exception :
    <16/03/2005 10:02:38 PM GMT+05:30> <Error> <Deployer> <BEA-149201> <Failed to complete the deployment task with ID 1 for the application hsbc.
    weblogic.management.ApplicationException:
    Exception:weblogic.management.ApplicationException: prepare failed for MCAppBEAN.jar
    Module: MCAppBEAN.jar Error: Exception preparing module: EJBModule(MCAppBEAN.jar,status=NEW)
    Unable to deploy EJB: StatelessBean from MCAppBEAN.jar:
    <b>[EJB:011055]Error deploying the EJB 'StatelessBean(Application: hsbc, EJBComponent: MCAppBEAN.jar)', the JNDI name 'StatelessBeanHSBC' is already in use. You mu
    st set a different JNDI name in the weblogic-ejb-jar.xml deployment descriptor for this EJB before it can be deployed.</b> at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.createContainer(SlaveDeployer.java:2556)
    at weblogic.management.deploy.slave.SlaveDeployer$ActivateTask.prepare(SlaveDeployer.java:2474)
    at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:798)
    at weblogic.management.deploy.slave.SlaveDeployer.prepareDelta(SlaveDeployer.java:507)
    at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:465)
    at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:25)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    --------------- nested within: ------------------
    <b>Can someone tell where have I made the mistake?</b>
    thanks in advance.

    Try to undeploy and un target the applcation via WLS console and they try to deploy it again. Or just try to redeploy it.

  • Getting compilation error while invoking an existing partner link.

    Hi,
    I am very new to BPEL.This may be a very basic issue..
    Found few links on the forum related to this..but didn't understand how people solved their problems..
    Created a sample project to add two numbers and return the result.[Ex : 2+ 3 = 5]
    Trying to invoke that service by adding it as a partner link in other project.
    Getting compile time error immediately after adding it..
    Error:
    [Error ORABPEL-10902]: compilation failed
    [Description]: in "bpel.xml", XML parsing failed because "undefined part element.
    In WSDL at "http://PC-XYZ-IN:8888/orabpel/default/BPELProcess/BPELProcess?wsdl", message part element "{http://xmlns.oracle.com/BPELProcess}BPELProcessProcessResponse" is not defined in any of the schemas.
    Please make sure the spelling of the element QName is correct and the WSDL import is complete.
    [Potential fix]: n/a.
    (ii) how can i pass two variables to calling service using invoke option.
    Since in invoke option i could see only one input variable is allowed.
    Thanks in advance for the help.

    the wsdl is refered correctly,I used the wizard for this..
    http://PC-MSIDDHAR-IN:8888/orabpel/default/BPELProcess/BPELProcess?wsdl
    For second part of the question.
    Caller ----> Invoke Code ---> Partner Link for Service
    Partner Link for Service expects 2 variables...
    Caller i have added 2 variables as u suggested already ...
    The question is how can i assign caller variables to partner link variables..[If they are more than 1)
    Thx
    Message was edited by:
            msiddhar
    Message was edited by:
            msiddhar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • InDesign-error exporting to pdf with art linked to a Read only server

    My question is about an error exporting a PDF from InDesign ("Cannot export pdf"). The InDesign file has links to art (a .psd file) from a secure file server where I have Read permission only--not Read/Write. The error only happens when I have linked art from this server.
    To export a pdf, is it necessary to have Write permissions to the server that has linked art? To export to PDF of course I am not changing the linked file! My InDesign file only links to it. So why doesn't it work if I have Read permission?
    Can anyone help?
    Can it really be that Read only permission is not enough for linking to art and making a pdf?

    I wouldn't think it would be a problem. Are you sure you have write permission where you want to save the PDF?

  • Partner Link https (SSL) wsdl url

    I'm getting an error in the "Create Partner Link" dialogue when specifying an https-based wsdl url. The non-ssl wsdl url works fine, but I need it to work for ssl (https). The specific errror reads:
    Error:Failed to read wsdl file at "https://serverstuff/webservice.cfc?wsdl", caused by: javax.net.ssl.SSLHandshakeException. :sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    What do I need to do to get the https wsdl to validate? I'm using jDev 10.1.3.2. When I deploy the BPEL, will I need to do anything on the app server? I've seen a lot of similar questions on this forum with no definitive answers. Also, the BPEL dev guide does not address SSL.

    Hi dharmendra,
    Yeah I copied server certificate into the relevant folders. Do i copy the .cer file into that folder or place it another folder and copy the same to <ORACLE_SOA_HOME>/jdk/jre/lib/security folder?
    My Jdev_JRE_HOME and ORACLE_SOA_HOME are pointing to the same jdk.
    What do you mean by by importing the certificate to Oracle BPEL and Jdeveloper? Is it importing into 'cacert'? Yeah I did that too.
    Actually in the blog the step for generating the SSL based axis webservice is just not quite informative,since following the steps I am not able to actually properly generate axis 2 SSL enabled webservice.That's Y i couldn't generate the server certificate properly. Can you give some more detailed steps for generating the SSL service?
    Thanks.

  • 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

  • Deploying a project with CR8.5 on a pc already running an app using CR7

    Post Author: Eamon Jurdzis
    CA Forum: Older Products
    I have just created a project utilising CR8.5 and its ready to deploy with all the relevant runtime files included in the setup package.The target machine(s) already have an application which was created utilising CR7.If I install my project on one of those machines, how will this affect the operation of the exisiting program which utilises CR7 reports?In other words, are there compatibility issues in the runtime files between version 7 and version 8.5 of crystal reports?

    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 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   

Maybe you are looking for