Problem in deploying SAR file in clustered environment

Hi All,
I need to deploy a BPM Project (BPM 11g) to two nodes of a Weblogic cluster.
However when I am trying from Jdeveloper it is showing both WLS_BPM1 and WLS_BPM2 as checked in deployment wizard. But after deplyment it shows that
it has only deployed in WLS_BPM1.
When I am deploying the SAR in the second node from Enterprise Manager it is showing
Deploying on partition "default" of "/Farm_bpm_domain/bpm_domain/SOA_Cluster" ...
Deploying on "/Farm_bpm_domain/bpm_domain/SOA_Cluster" failed!
There was an error deploying the composite on WLS_BPM1: Composite with same revision ID already exists: default/TestProcess!1.0. Please set the overwrite flag or use different revision ID. Abort deployment..
Deploying on partition "default" of "/Farm_bpm_domain/bpm_domain/SOA_Cluster" ...
Deploying on "/Farm_bpm_domain/bpm_domain/SOA_Cluster" failed!
There was an error deploying the composite on WLS_BPM2: Composite with same revision ID already exists: default/TestProcess!1.0. Please set the overwrite flag or use different revision ID. Abort deployment..
I created an SAR with a different revision. Now I tried to deploy it in WLS_BPM2 in EM but it got deployed in BPM1.
Can you please share any document on deploying BPM Projects to clustered weblogic

There was an error deploying the composite on WLS_BPM2: Composite with same revision ID already exists: default/TestProcess!1.0.
Please set the overwrite flag or use different revision ID. Abort deployment..Did you click "Overwrite any existing composites with same revision ID" checkbox in Jdeveloper dialog while deploying ?

Similar Messages

  • Problem with uploading a file in Clustered Environment

    Hi,
    I have a problem with uploading a file in a clustered environment. I have an iview component which facilitates an upload action of an xml config file. The problem is that the upload of the modified XML file is reflected only in the central instance of the cluster and not in the dialog instances. The dialog instances hold the old config file.
    Is there any solution to upload the file to all the nodes in the cluster.
    Thanks
    Kiran

    Hi,
    This is a known problem with clustered environment. Remember that your portal component runs on just on dialog instance and it doesn't automatically have access to the other nodes.  However, there are some ways to get around this
    1. Use KM to store files. KM is a common repository for all application servers and therefore you needn't worry more
    2. Use an external batch oriented product (suresync/robocopy) to synch folders on the different DIs. You basically use your existing portal component, but there is a batch job which makes sure the upload folder is identical on all DIs (however, there is a slight delay depending on how often you run the batch job)
    3. Store the files on a shared disk directly from the portal component.
    Cheers
    Dagfinn

  • Problem in deploying war file

    Hi,
    I have a problem in deploying a war file in Weblogic 7. I have deployed successfully
    a jar file containing an ejb. I would like to deploy a war file which web.xml
    has an <ejb-ref> element referencing a session bean contained in the jar previously
    deployed.
    I have the following error:
    Module Name: PSSC-web, Error: weblogic.j2ee.DeploymentException: Could not setup
    environment - with nested exception:
    [weblogic.deployment.EnvironmentException: ejb-ref ejb/PSSCLdapUserEJB requires
    an ejb-link or jndi-name]
    at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1093)
    at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1074)
    at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1110)
    at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:730)
    at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
    >
    My configuration files are:
    weblogic-ejb-jar.xml
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>ejb/PSSCLdapUserEJB</ejb-name>
    <jndi-name>PSSCLdapUserEJB</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    ejb-jar.xml
    <ejb-jar>
    <display-name>Ldap User</display-name>
    <enterprise-beans>
    <session>
    <ejb-name>ejb/PSSCLdapUserEJB</ejb-name>
    <home>pssc.utils.ejb.PSSCLdapUserEJHome</home>
    <remote>pssc.utils.ejb.PSSCLdapUserEJ</remote>
    <ejb-class>pssc.utils.ejb.PSSCLdapUserEJBean</ejb-class>
    <session-type>Stateful</session-type>
    <transaction-type>Container</transaction-type>
    </session>
    </enterprise-beans>
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name>ejb/PSSCLdapUserEJB</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    <ejb-client-jar>LDAPUSER</ejb-client-jar>
    </ejb-jar>
    web.xml
    <web-app>
    <ejb-ref>
    <ejb-ref-name>ejb/PSSCLdapUserEJB</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <home>pssc.utils.ejb.PSSCLdapUserEJHome</home>
    <remote>pssc.utils.ejb.PSSCLdapUserEJ</remote>
    </ejb-ref>
    </web-app>
    weblogic.xml
    <weblogic-web-app>
         <ejb-reference-description>
         <ejb-ref-name>
         ejb/PSSCLdapUserEJB
         </ejb-ref-name>
         <jndi-name>
         PSSCLdapUserEJB
         </jndi-name>
         </ejb-reference-description>
    </weblogic-web-app>
    Configuration files seems correct to me, but the deployment of the war is not
    working..
    Does someone have an idea of what is the problem?
    Thanks in advance,
    Giuseppe

    Hi,
    I have a problem in deploying a war file in Weblogic 7. I have deployed successfully
    a jar file containing an ejb. I would like to deploy a war file which web.xml
    has an <ejb-ref> element referencing a session bean contained in the jar previously
    deployed.
    I have the following error:
    Module Name: PSSC-web, Error: weblogic.j2ee.DeploymentException: Could not setup
    environment - with nested exception:
    [weblogic.deployment.EnvironmentException: ejb-ref ejb/PSSCLdapUserEJB requires
    an ejb-link or jndi-name]
    at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1093)
    at weblogic.j2ee.J2EEApplicationContainer.activate(J2EEApplicationContainer.java:1074)
    at weblogic.management.deploy.slave.SlaveDeployer.processPrepareTask(SlaveDeployer.java:1110)
    at weblogic.management.deploy.slave.SlaveDeployer.prepareUpdate(SlaveDeployer.java:730)
    at weblogic.drs.internal.SlaveCallbackHandler$1.execute(SlaveCallbackHandler.java:24)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:213)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:189)
    >
    My configuration files are:
    weblogic-ejb-jar.xml
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>ejb/PSSCLdapUserEJB</ejb-name>
    <jndi-name>PSSCLdapUserEJB</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    ejb-jar.xml
    <ejb-jar>
    <display-name>Ldap User</display-name>
    <enterprise-beans>
    <session>
    <ejb-name>ejb/PSSCLdapUserEJB</ejb-name>
    <home>pssc.utils.ejb.PSSCLdapUserEJHome</home>
    <remote>pssc.utils.ejb.PSSCLdapUserEJ</remote>
    <ejb-class>pssc.utils.ejb.PSSCLdapUserEJBean</ejb-class>
    <session-type>Stateful</session-type>
    <transaction-type>Container</transaction-type>
    </session>
    </enterprise-beans>
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name>ejb/PSSCLdapUserEJB</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    <ejb-client-jar>LDAPUSER</ejb-client-jar>
    </ejb-jar>
    web.xml
    <web-app>
    <ejb-ref>
    <ejb-ref-name>ejb/PSSCLdapUserEJB</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <home>pssc.utils.ejb.PSSCLdapUserEJHome</home>
    <remote>pssc.utils.ejb.PSSCLdapUserEJ</remote>
    </ejb-ref>
    </web-app>
    weblogic.xml
    <weblogic-web-app>
         <ejb-reference-description>
         <ejb-ref-name>
         ejb/PSSCLdapUserEJB
         </ejb-ref-name>
         <jndi-name>
         PSSCLdapUserEJB
         </jndi-name>
         </ejb-reference-description>
    </weblogic-web-app>
    Configuration files seems correct to me, but the deployment of the war is not
    working..
    Does someone have an idea of what is the problem?
    Thanks in advance,
    Giuseppe

  • [b]problem with deploy .war file

    Hi
    I am trying to deploy a war file. I have Oracle 9iAS (release 2) in Sun Solaris server.
    I am using the enterprise manager gui to try to deploy a .war file as follows.
    My .war file has the structure: folder META-INF, folder WEB-INF, and other folders. THe folder
    WEB-INF has the file web.xml and the folder classes.
    I connect to enterprise manager at port 1810 and go to the OC4J home page and under
    deployed applications, I choose under applications "Deploy WAR file". It takes me to the next page
    where I enter the war file (pippo.war)
    Application Name: pippo
    Map to URL: /pippo
    THe only choice I have then is to click the Deploy button. I then get the response
    "Failed to deploy web application "pippo". Jar file: /var/tmp/jar29056.tmp is missing its standard xml descriptor located at WEB-INF/web.xml"
    In that path there is not that file, there are 2 folders, one with the file .war and one with the file .ear
    I have no idea what this error message means.
    The documentation for deploying servlets in 9ias using enterprise manager makes no mention of this.
    Thanks,
    Marcella

    Marcella,
    Are you using Oracle9iAS 9.0.3 ?
    Does this happen with any war file ?
    Are you able to deploy a ear file without problems ?
    Can you please test if you can deploy your war in a
    OC4J standalone environment ? steps from the general faq available at http://otn.oracle.com/tech/java/oc4j
    How can I deploy a WAR file to OC4J standalone ?
    The command line deployment tool (admin.jar) requires an EAR file as it's deployment archive. To deploy a WAR file using this, you must package the WAR file within a EAR file.
    You can manually deploy a WAR file to OC4J However following are the steps involved in deploying a WAR file in OC4J.
    1. Copy the file to D:\oc4j\j2ee\home\applications where d:\oc4j is the location OC4J is installed in.
    copy mywar.war D:\oc4j\j2ee\home\applications
    2. Open the application.xml file in D:\oc4j\j2ee\home\config directory
    and add the following after the <web-module id="defaultWebApp" path="../default-web-app" />
    line:
    <web-module id="mywar" path="../applications/mywar.war" />
    3. Open the default-web-site.xml file in D:\oc4j\j2ee\home\config directory and add the following after the <default-web-app application="default" name="defaultWebApp" /> line:
    <web-app application="default" name="mywar" root="/mywar" />
    In Oracle9iAS Release 2; deployment of applications is done either using EM or via the DCM commands.
    thanks,
    -Prasad

  • NWDI setup, problem while deploying .sca files on SAP PI 7.1 server

    Hi
    I have a SAP PI 7.1 server. I want to setup DTR on it.
    From service market place i downloaded the required .sca files
    Location:
    Support Packages and Patches --> Browse our Download Catalog --> SAP NetWeaver and complementary products --> SAP NETWEAVER PI --> SAP NETWEAVER PI 7.1 --> Entry by Component --> Development Infrastructure --> SAP NetWeaver and complementary products --> SAP NETWEAVER PI --> SAP NETWEAVER PI 7.1 --> Entry by Component --> Development Infrastructure
    - DICBS25P_1-10003500.SCA
    - DICMS25P_1-10003499.SCA
    - DIDTR25P_1-10003501.SCA
    When i try to deploy these files using JSPM (option:- Business Packages)
    It is not able to deploy CMS and CBS files and its giving error.
    Error for DICMS25P_1-10003499.SCA
    Archive
    <server>\sapmnt\trans\EPS\in\DICMS25P_1-10003499.SCA for component sap.com/DI_CMS was admitted for deployment Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICMS25P_1-10003499.SCA --> tcctsappl.sda for component sap.com/tcctsappl is rejected because it depends on missing components Detailed message: 1. Unresolved dependencies: sap.com/tcctstransport_api not found in the admitted batch items and the repository Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICMS25P_1-10003499.SCA --> tcSLCMStsawebui.sda for component sap.com/tcSLCMStsawebui is rejected because deployment of other component it depends on is rejected Detailed message: 1. Unresolved dependency problem in chain of dependent item 'sap.com_tcSLCMSWebUI'. Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICMS25P_1-10003499.SCA --> tcSLCMSWebUI.sda for component sap.com/tcSLCMSWebUI is rejected because deployment of other component it depends on is rejected Detailed message: 1. Unresolved dependency problem in chain of dependent item 'sap.com_tcSLdiindex'. Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICMS25P_1-10003499.SCA --> tcSLdiindex.sda for component sap.com/tcSL~diindex is rejected because deployment of other component it depends on is rejected
    Error for DICBS25P_1-10003500.SCA
    Details message(s): Archive
    <server>\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA for component sap.com/DI_CBS was admitted for deployment Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA --> tc.CBS.Appl.sda for component sap.com/tc.CBS.Appl is rejected because deployment of other component it depends on is rejected Detailed message: 1. Unresolved dependency problem in chain of dependent item 'sap.com_tc.CBS.WebUI'. Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA --> tc.CBS.WebUI.sda for component sap.com/tc.CBS.WebUI is rejected because deployment of other component it depends on is rejected Detailed message: 1. Unresolved dependency problem in chain of dependent item 'sap.com_tcdicbsjlinwd'. Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA --> tcdicbsjlinwd.sda for component sap.com/tcdicbs~jlinwd is rejected because deployment of other component it depends on is rejected Detailed message: 1. Unresolved dependency problem in chain of dependent item 'sap.com_tc.CBS.Service'. Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA --> tc.CBS.CommonPart.sda for component sap.com/tc.CBS.CommonPart is rejected because it depends on missing components Detailed message: 1. Unresolved dependencies: sap.com/tc.CBS.DBDefs not allowed between software types: primary-library --> JDDSCHEMA Deployment of archive
    <server>\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA --> tc.CBS.Service.sda for component sap.com/tc.CBS.Service is rejected because deployment of other component it depends on is rejected Detailed message: 1. Unresolved dependency problem in chain of dependent item 'sap.com_tc.CBS.CommonPart'. See Deploy Controller log F:\usr\sap\PS2\DVEBMGS00\j2ee\JSPM\log\log_2011_11_21_16_44_12\deploy_2011-11-21_17-06-01.log for details.
    Please Help.
    Regards
    Osman Jabri
    Edited by: Osman Jabri on Nov 21, 2011 12:40 PM

    Deploy status is 'Admitted'
    Deployment Items -
         1. Client path '
    hydhtc130380d\sapmnt\trans\EPS\in\DICBS25P_1-10003500.SCA'
         Sdu info :name 'DI_CBS', vendor 'sap.com', location 'MAIN_APL70P25_D', version '1000.7.00.25.1.20110905193551'
              Deploy status is 'Admitted'
              Time statistics:
              Contained DCs:
              1.1:name 'tc.CBS.Appl', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10937350', software type ('J2EE', sub type ''), dependencies :[( name 'tc.CBS.API', vendor 'sap.com') , ( name 'tc.CBS.CommonPart', vendor 'sap.com') , ( name 'com.sap.tc.Logging', vendor 'sap.com') , ( name 'com.sap.security.api.sda', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tc.CBS.WebUI'.'.
              1.2:name 'tc.CBS.WebUI', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2930415', software type ('J2EE', sub type ''), dependencies :[( name 'tc.CBS.CommonPart', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tcdicbs~jlinwd'.'.
              1.3:name 'tcdicbs~jlinwd', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2930416', software type ('J2EE', sub type ''), dependencies :[( name 'tc.CBS.CommonPart', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tc.CBS.Service'.'.
              1.4:name 'tc.CBS.CommonPart', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10927802', software type ('primary-library', sub type ''), dependencies :[( name 'tc.CBS.API', vendor 'sap.com') , ( name 'tc.CBS.DBDefs', vendor 'sap.com') , ( name 'com.sap.tc.Logging', vendor 'sap.com') , ( name 'com.sap.security.api.sda', vendor 'sap.com') , ( name 'tcdtr.clientvfs-adl', vendor 'sap.com') , ( name 'opensql', vendor 'sap.com') , ( name 'com.sap.guid', vendor 'sap.com') , ( name 'sapxmltoolkit', vendor 'sap.com') , ( name 'tcCBSComponentLibrary', vendor 'sap.com') ]          
                        Deploy status is 'PrerequisiteViolated'
                        Description:'1. Unresolved dependencies:
    sap.com/tc.CBS.DBDefs     not allowed between software types: primary-library --> JDDSCHEMA'.
              1.5:name 'tc.CBS.Service', vendor 'sap.com', location 'MAIN_APL70P25_C', version '10522285', software type ('primary-service', sub type ''), dependencies :[( name 'tc.CBS.API', vendor 'sap.com') , ( name 'tc.CBS.CommonPart', vendor 'sap.com') , ( name 'com.sap.tc.Logging', vendor 'sap.com') , ( name 'tcdtr.clientvfs-adl', vendor 'sap.com') , ( name 'opensql', vendor 'sap.com') , ( name 'com.sap.guid', vendor 'sap.com') , ( name 'sapxmltoolkit', vendor 'sap.com') , ( name 'tcCBSComponentLibrary', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tc.CBS.CommonPart'.'.
              1.6:name 'tc.CBS.DBDefs', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2929767', software type ('JDDSCHEMA', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
         2. Client path '
    hydhtc130380d\sapmnt\trans\EPS\in\DICMS25P_1-10003499.SCA'
         Sdu info :name 'DI_CMS', vendor 'sap.com', location 'MAIN_APL70P25_D', version '1000.7.00.25.1.20110905193601'
              Deploy status is 'Admitted'
              Time statistics:
              Contained DCs:
              2.1:name 'tcctsappl', vendor 'sap.com', location 'MAIN_APL70P25_C', version '10521775', software type ('J2EE', sub type ''), dependencies :[( name 'tcctstransport_api', vendor 'sap.com') ]          
                        Deploy status is 'PrerequisiteViolated'
                        Description:'1. Unresolved dependencies:
    sap.com/tcctstransport_api     not found in the admitted batch items and the repository'.
              2.2:name 'tcSLCMStsawebui', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2930427', software type ('J2EE', sub type ''), dependencies :[( name 'tcSLCMSPCS', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tcSLCMS~WebUI'.'.
              2.3:name 'tcSLCMScversproxy', vendor 'sap.com', location 'MAIN_APL70VAL_C', version '1496430', software type ('J2EE', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              2.4:name 'tcSLCMSconfigdbschema', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2929860', software type ('JDDSCHEMA', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              2.5:name 'tcSLCMSPCSDBSchema', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2929768', software type ('JDDSCHEMA', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              2.6:name 'tcSLCMSWebUI', vendor 'sap.com', location 'MAIN_APL70P23_D', version '7714571', software type ('J2EE', sub type ''), dependencies :[( name 'tcSLCMSPCS', vendor 'sap.com') , ( name 'tcSLCMSIDEClient', vendor 'sap.com') , ( name 'tccom.sap.tmw.clients~_ctsa_client', vendor 'sap.com') , ( name 'tc.httpclient', vendor 'sap.com') , ( name 'applocking', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tcSLdiindex'.'.
              2.7:name 'tcSLCMSTCSEar', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10947857', software type ('J2EE', sub type ''), dependencies :[( name 'tc.CBS.API', vendor 'sap.com') , ( name 'com.sap.util.monitor.jarm', vendor 'sap.com') , ( name 'tc.httpclient', vendor 'sap.com') , ( name 'com.sap.tc.Logging', vendor 'sap.com') , ( name 'tcsecsecurestorageservice', vendor 'sap.com') , ( name 'tcdtr.clientvfs-adl', vendor 'sap.com') , ( name 'tcjmx', vendor 'sap.com') , ( name 'tcSLCMSUtil', vendor 'sap.com') , ( name 'com.sap.util.monitor.grmg', vendor 'sap.com') , ( name 'tcCBSComponentLibrary', vendor 'sap.com') ]          
                        Deploy status is 'Admitted'
              2.8:name 'tcSLCMS~cleanuptool', vendor 'sap.com', location 'MAIN_APL70VAL_C', version '1552404', software type ('FS', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              2.9:name 'tcSLdiindex', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10947869', software type ('J2EE', sub type ''), dependencies :[( name 'tcSLCMSPCS', vendor 'sap.com') , ( name 'tcSLCMSIDEClient', vendor 'sap.com') , ( name 'tcSLCMS~Util', vendor 'sap.com') , ( name 'security.class', vendor 'sap.com') ]          
                        Deploy status is 'Skipped'
                        Description:'1. Unresolved dependency problem in chain of dependent item 'sap.com_tcSLCMS~PCS'.'.
              2.10:name 'tcSLCMSPCS', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10947869', software type ('J2EE', sub type ''), dependencies :[( name 'tc.CBS.API', vendor 'sap.com') , ( name 'tcSLCMSIDEClient', vendor 'sap.com') , ( name 'com.sap.security.api.sda', vendor 'sap.com') , ( name 'com.sap.lcr.api.cimclient', vendor 'sap.com') , ( name 'tcsecsecurestorageservice', vendor 'sap.com') , ( name 'tcdiscmtransport_api', vendor 'sap.com') , ( name 'com.sap.aii.ibtransportclient', vendor 'sap.com') , ( name 'applocking', vendor 'sap.com') , ( name 'tcdtr.clientvfs-adl', vendor 'sap.com') , ( name 'tcjmx', vendor 'sap.com') , ( name 'tcSLCMSUtil', vendor 'sap.com') , ( name 'security.class', vendor 'sap.com') , ( name 'tcCBSComponentLibrary', vendor 'sap.com') , ( name 'com.sap.util.monitor.jarm', vendor 'sap.com') , ( name 'tccom.sap.tmw.clients_ctsa_client', vendor 'sap.com') , ( name 'tcSLCMScversproxy', vendor 'sap.com') , ( name 'com.sap.aii.util.xml', vendor 'sap.com') , ( name 'tcSLCMS~TCSEar', vendor 'sap.com') , ( name 'com.sap.aii.util.misc', vendor 'sap.com') , ( name 'com.sap.guid', vendor 'sap.com') , ( name 'keystore', vendor 'sap.com') , ( name 'sapxmltoolkit', vendor 'sap.com') , ( name 'com.sap.exception', vendor 'sap.com') , ( name 'com.sap.util.monitor.grmg', vendor 'sap.com') ]          
                        Deploy status is 'PrerequisiteViolated'
                        Description:'1. Unresolved dependencies:
    sap.com/tccom.sap.tmw.clients_ctsa_client     not found in the admitted batch items and the repository'.
         3. Client path '
    hydhtc130380d\sapmnt\trans\EPS\in\DIDTR25P_1-10003501.SCA'
         Sdu info :name 'DI_DTR', vendor 'sap.com', location 'MAIN_APL70P25_D', version '1000.7.00.25.1.20110908142653'
              Deploy status is 'Admitted'
              Time statistics:
              Contained DCs:
              3.1:name 'tcjdiheartbeat~enterpriseapp', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10937328', software type ('J2EE', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              3.2:name 'tcdtrconsole~sda', vendor 'sap.com', location 'MAIN_APL70VAL_C', version '1586999', software type ('FS', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              3.3:name 'tcdtrdbschema', vendor 'sap.com', location 'MAIN_APL70P20_C', version '2929861', software type ('JDDSCHEMA', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
              3.4:name 'tcdtrenterpriseapp', vendor 'sap.com', location 'MAIN_APL70P25_D', version '10937327', software type ('J2EE', sub type ''), dependencies :[none]          
                        Deploy status is 'Admitted'
    Nov 21, 2011 5:06:19 PM  [Info  ]:+++ Validation finished with status 'Success' +++[ deployerId=4 ]
    Nov 21, 2011 5:06:19 PM  [Path  ]:+++++ End  V A L I D A T E action +++++[ deployerId=4 ]. Total time:[#16: 18.367 sec]

  • "\n" problem while downloading the file in unix environment

    Hi folks,
    I have some problem in uploading and downloading the file in unix environment..
    This is my sample code i am using.
    File userDataFile = new File("xyz".csv");
    out = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(userDataFile),"UNICODE"));
    out.write("Name"+"\t");
    out.write("Age"+"\t");
    out.write("Dob"+"\t");
    out.write("Contact"+"\n");
    for(int i=0;i<retList.size;i++){
    out.write("xyz"+"\t");
    out.write("22"+"\t");
    out.write("300399"+"\t");
    out.write("xyzzz"+"\n");
    as per this i wrote code for generating the reports. Its contains some 7k records.
    Its works in Windows environment.
    Some times in Windows environment if the contents size is 7000 records means
    i got only the headers..
    I am not getting any real records.
    I am not sure.. my client is using may be an unix environment..
    Please give the solutions for this..
    Very thanks in advance.

    Hi Jothi,
    This is not an answer to your question. It is a question for you instead. I have tried to reach you on several forums regarding the HAP_DOCUMENT documentation you have.
    Again, I am really sorry to contact you through a differente forum, but I really need the HAP_DOCUMENT documentation for my project.
    Please send me a message to [email protected]
    Thanks again.
    JULIAN CASTRO

  • Deploy Sar file on WL Sipserver 2.2

    Hi,
    Have anyone done sar file deployment on WL SipServer2.2? It would be good to know the deployment steps.
    Cheers :)-
    Jowsaki

    With WLSS 2.2, you can deploy a sip application as a war file. If you have an existing sip application as .sar, you could rename it to .war and deploy it on wlss 2.2.
    We have recently added support for deploying .sar archives also. So, if you really want this, feel free to contact BEA support at [email protected]
    thanks,
    Mihir

  • Upload file in clustered environment- Very Urgent

    Hi,
    My requirement is to upload a file onto the WebServer and also list out the file names on the front end and provide a funcionality to delete them from the server.
    Environment Details:
    -Product: WebSphere Portal
    -Type - Clustered Enviroment with 2 nodes
    -Framework: JSF
    The problem I am facing here is:
    1) I login to the application using a common URL: Say abc.com/wps/portal
    2) I dont know which node I am logged into, it can be either Primary(X1) or Secondary(X2).
    3) I click on the browse button and select a file and click on the Upload button. The file is uploaded successfully on say primary node X1.
    4) I can at that time read the name of the file and display it on screen and also select and delete it. But if I log off and login again and say I am now redirected to secondary node, I am not able to read the name of the file I uploaded as it is stored on the primary node.
    Can some body provide me a solutions to this.
    What I can think of is , While uploading the file, I will check if I am on the primary node or secondary node and Upload the file only on one node rather than uploading them on both. Say uploading only on primary node X1, Now if I am logged into primary I can just mention the directory name and upload it.
    But I f am on the secondary node I need to upload the file on the primary node using URL connection.
    Can some body tell me the feasibility of this approach ?? Also how do I upload a file on a remote machine(Logged into the secondary but putting the file onto the primary node.) ???
    Please help me this very very urgent.
    Thanks.

    Hi!
    I would simply use a network share which is accessible from both nodes as storage. This way you don't have to care to which server the file is uploaded too, because both share the same filesystem.
    If you are on windows, simply share a folder and access it from both nodes. In Linux I'd suggest using samba & mount, on solaris use share & mount.
    Another approach would be to use a database as storage.
    hth Chris

  • Error while deploying SAR files through SDM

    HI,
    When i am trying to apply patchesthrough SDM i am getting the following error:
    System: ECC 6.0
    ERROR:
    Starting Deployment of tc/bizc/ws/ear
    Aborted: development component 'tc/bizc/ws/ear'/'sap.com'/'MAIN_APL70VAL_C'/'963770':
    Error: Caught the following error or exception: "java.lang.NoClassDefFoundError"
    Additional error message is:
    com/sap/engine/deploy/manager/DeployManagerException
    IF some knows the answer for the problem. Please help, points will be rewarded.
    Regards,
    Magham.

    Hi Megha,
    1.Please check in the composit note whether any other SCA or SDA needs to be deployed before the selected one.
    2. Try to deploy it after restarting the J2ee-engine.
    3. Download the file again from sapmarket place and try with new one.
    If the problem persists then please copy the full exception trace in the post.
    Regards,
    Satyendra

  • Problem in deploying war file in weblogic application server 10

    Hi
              Thank you for reading my post.
              We are trying to deploy our application into weblogic but problem is that weblogic return an error like following one when we try to deploy the application.
              I should tell you that the following log was shown in a not well formatted way and i format it manually.
                        [HTTP:101216]Servlet: "com.wira.webservices.int.Wsti" failed to preload on startup in Web application: "wira.war". class:
              com.wira.webservices.int.jaxws.RequestResponse could not be found at
              com.sun.xml.ws.model.RuntimeModeler.getClass(RuntimeModeler.java:272) at
              com.sun.xml.ws.model.RuntimeModeler.processDocWrappedMethod(RuntimeModeler.java:566) at
              com.sun.xml.ws.model.RuntimeModeler.processMethod(RuntimeModeler.java:513) at
              com.sun.xml.ws.model.RuntimeModeler.processClass(RuntimeModeler.java:358) at
              com.sun.xml.ws.model.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:245) at
              com.sun.xml.ws.server.EndpointFactory.createSEIModel(EndpointFactory.java:229) at
              com.sun.xml.ws.server.EndpointFactory.createEndpoint(EndpointFactory.java:161) at
              com.sun.xml.ws.api.server.WSEndpoint.create(WSEndpoint.java:291) at
              com.sun.xml.ws.api.server.WSEndpoint.create(WSEndpoint.java:315) at
              weblogic.wsee.jaxws.JAXWSServlet.registerEndpoint(JAXWSServlet.java:125) at
              weblogic.wsee.jaxws.JAXWSServlet.init(JAXWSServlet.java:64) at
              javax.servlet.GenericServlet.init(GenericServlet.java:241) at
              weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:282) at
              weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321) at
              weblogic.security.service.SecurityManager.runAs(Lweblogic.security.acl.internal.AuthenticatedSubject;Lweblogic.security.acl.internal.AuthenticatedSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(Unknown Source) at
              weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:63) at
              weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58) at
              weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48) at
              weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:504) at
              weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1830) at
              weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1807) at
              weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1727) at
              weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:2890) at
              weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:948) at
               weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:353) at
              weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204) at
              weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26) at
              weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:60) at
              weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200) at
              weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:117) at
              weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:204) at
              weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
                        I should say you that we do not have a package and class like: com.wira.webservices.bpel.jaxws.RequestResponse and it looks like WLS is mistaken about this.
              Indeed this application works fine on Sun java application server 9 (java ee 5 certified). Can you please tell me why does it happens?
              here is source code of Wsti class
                        @WebService()
              public class Wsti {
                  @WebMethod(operationName="requestResponse")
                  public String requestResponse(@WebParam(name="request") String request) {
                      return ReflectionManager.call(WstiImp.class, request);
                                            for reflection we used standard JDK reflection stuff.
              and that call method call a method identified in request from WstiImp class.
              Thanks

    Following are the steps involved in deploying a WAR file in Oc4j.
    1. Copy the file to D:\oc4j\j2ee\home\applications where d:\oc4j is the location OC4J is installed in.
    copy mywar.war D:\oc4j\j2ee\home\applications
    2. Open the application.xml file in D:\oc4j\j2ee\home\config directory
    and add the following after the <web-module id="defaultWebApp" path="../default-web-app" />
    line:
    <web-module id="mywar" path="../applications/mywar.war" />
    3. Open the default-web-site.xml file in D:\oc4j\j2ee\home\config
    directory and add the following after the <default-web-app application="default" name="defaultWebApp" /> line:
    <web-app application="default" name="mywar" root="/mywar" />
    Hope this helps
    -Debu Panda
    Oracle

  • Problems while deploying ear file

    Hi all,
    When I am trying to deploy the webdynpro application after packaging it as an ea file it is giving the following exception:
    <b>Deployment exception : Server los-angeles did not accept login request as admin on port 58818. Details: ERROR: Could not establish connection to server los-angeles at port 58818: Connection timed out: connect
    Inner exception was :
    Server los-angeles did not accept login request as admin on port 58818. Details: ERROR: Could not establish connection to server los-angeles at port 58818: Connection timed out: connect</b>
    Please let me know what might be the reason for this and how to solve this issue.
    Thanks,
    Surendra.

    Hi,
    Check whether u have give the right host and message server port, by logging on to,
    http://<Host>:<Port>/sap/monitoring/SystemInfo
    with the admin uid/pwd.
    you can see the Message Server port (say 3601, 3602..), you have to give it as the server port in the J2ee Engine.
    Also check the status of J2EE engine in the NWDS.
    Kind Regards
    Mukesh

  • Performance problem after deploying bundle files

    Hello,
    I undeployed and made some changes on a km.resource.bundle PAR to update
    some properties labels values. After deploying it again KM performance decreased
    significantly and became very slow, we had to remove the PAR and restart portal
    to restore its normal functioning.
    Could you help me diagnose this?
    some more info:
    1 - The only changes I did was on the *.properties files.
    2 - I had an error when generating the PAR again, which was solved adding the
    external jar bc.crt_api.jar as reference.
    3 - On SAP note 817876 the example project comes with this JAR into /lib folder,
    my project just referenced it so my /lib folder is empty.
    regards,
    Rafael

    Hi BP, thanks for the quick reply, I will try restarting it next time and check
    if that solves the performance issue.
    I was wondering if it was caused because of the bc.crt_api.jar library. Does it
    have to be into the project structure or do I only need it for local reference? My guess
    was that the application running on portal was accessing the lib into my machine
    and thus causing the slowdown.
    kind regards,
    Rafael

  • I have formatting problems when deploying Help files using RoboHelp 8

    When i deploy the Help files. The formatting of the Numbering/bullets are affected and it is parts of the help files that i have not changed. Is there something else that i need to do to fix it?

    More information needed to help you.
    What sort of help are you generating?
    Are you saying it is OK in Design Editor and not in a brower, if you are generating WebHelp? If yes, what browser and is it the same in all browsers?
    There are some pages on Lists on my site.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Problem in deploying WAR file into OC4J

    I have tried deploying a .war file into oc4j (orion) application server using - Deploying Upon OC4J Server Startup option
    I have placed the intelliview.war into /applications directory
    modified server.xml & web-site.xml
    server.xml added
    <application name="intelliview" path="../applications/iviewserver.war" auto-start="true" />
    web-site.xml added
    <web-app application="intelliview" name="iviewserver" root="/iviewserver" />
    Here is the error message,
    Error instantiating application at file ....applications/intelliview.war
    Unable to read/find assembly info (META-INF/application.xml)
    Any idea?
    Thanks

    Following are the steps involved in deploying a WAR file in Oc4j.
    1. Copy the file to D:\oc4j\j2ee\home\applications where d:\oc4j is the location OC4J is installed in.
    copy mywar.war D:\oc4j\j2ee\home\applications
    2. Open the application.xml file in D:\oc4j\j2ee\home\config directory
    and add the following after the <web-module id="defaultWebApp" path="../default-web-app" />
    line:
    <web-module id="mywar" path="../applications/mywar.war" />
    3. Open the default-web-site.xml file in D:\oc4j\j2ee\home\config
    directory and add the following after the <default-web-app application="default" name="defaultWebApp" /> line:
    <web-app application="default" name="mywar" root="/mywar" />
    Hope this helps
    -Debu Panda
    Oracle

  • Problem in Deploying war file in oc4j

    I have developed an application using struts and packaged in war file. It runs ok in tomcat server. I want to deploy it in embedded oc4j server of E-Business Suite. Please give me directions................

    AFAIK, EBS 11.5.10 doesn't come with OC4J. It uses Apache Jserv which is Servlet 2.0 and with a special JSP engine. This doesn't support J2EE WAR files. It might support Struts but I'd not bet on that.
    Having said that, you need to get an OC4J standalone version installed (minimum) and started by the standard EBS startup scripts.
    Once this is done and if your WAR is self-contained, ie contains all the libraries, it is quite easy. Just deploy it using the command-line tools (all versions) or the web admin interface of OC4J (from 10.1.3).
    Only thing you have to change is the URL in the OAF page to point to the right server...
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for