Error in jboss while deploying

12:49:57,181 INFO [MainDeployer] Starting deployment of package: file:/C:/jboss-3.2.1_tomcat-4.1.24/server/all/deploy/MyBank.jar
12:49:57,692 WARN [verifier] EJB spec violation:
Bean : MySession
Section: 22.2
Warning: The Bean Provider must specify the fully-qualified name of the Java class that implements the enterprise bean's business methods in the <ejb-class> element.
Info : Class not found: au.com.tusc.MySessionSession

Here are the files u needed
========================================
MySessionHome
* Generated by XDoclet - Do not edit!
package au.com.tusc;
* Home interface for MySession.
* @lomboz generated
public interface MySessionHome
extends javax.ejb.EJBHome
public static final String COMP_NAME="java:comp/env/ejb/MySession";
public static final String JNDI_NAME="MySessionBean";
public au.com.tusc.MySession create()
throws javax.ejb.CreateException,java.rmi.RemoteException;
=========================================
MySession
* Generated by XDoclet - Do not edit!
package au.com.tusc;
* Remote interface for MySession.
* @lomboz generated
public interface MySession
extends javax.ejb.EJBObject
public java.lang.String learnJ2EE( java.lang.String msg )
throws java.rmi.RemoteException;
=========================================
MySessionLocalHome
* Generated by XDoclet - Do not edit!
package au.com.tusc;
* Local home interface for MySession.
* @lomboz generated
public interface MySessionLocalHome
extends javax.ejb.EJBLocalHome
public static final String COMP_NAME="java:comp/env/ejb/MySessionLocal";
public static final String JNDI_NAME="MySessionLocal";
public au.com.tusc.MySessionLocal create()
throws javax.ejb.CreateException;
=========================================
MySessionLocal
* Generated by XDoclet - Do not edit!
package au.com.tusc;
* Local interface for MySession.
* @lomboz generated
public interface MySessionLocal
extends javax.ejb.EJBLocalObject
public java.lang.String learnJ2EE( java.lang.String msg ) ;
=========================================
MySessionSession
* Generated by XDoclet - Do not edit!
package au.com.tusc;
* Session layer for MySession.
* @lomboz generated
public class MySessionSession
extends au.com.tusc.MySessionBean
implements javax.ejb.SessionBean
public void ejbActivate()
public void ejbPassivate()
public void setSessionContext(javax.ejb.SessionContext ctx)
public void unsetSessionContext()
public void ejbRemove()
public void ejbCreate() throws javax.ejb.CreateException
=========================================
MySessionUtil
* Generated file - Do not edit!
package au.com.tusc;
* Utility class for MySession.
* @lomboz generated
public class MySessionUtil
/** Cached remote home (EJBHome). Uses lazy loading to obtain its value (loaded by getHome() methods). */
private static au.com.tusc.MySessionHome cachedRemoteHome = null;
/** Cached local home (EJBLocalHome). Uses lazy loading to obtain its value (loaded by getLocalHome() methods). */
private static au.com.tusc.MySessionLocalHome cachedLocalHome = null;
// Home interface lookup methods
* Obtain remote home interface from default initial context
* @return Home interface for MySession. Lookup using COMP_NAME
public static au.com.tusc.MySessionHome getHome() throws javax.naming.NamingException
if (cachedRemoteHome == null) {
// Obtain initial context
javax.naming.InitialContext initialContext = new javax.naming.InitialContext();
try {
java.lang.Object objRef = initialContext.lookup(au.com.tusc.MySessionHome.COMP_NAME);
cachedRemoteHome = (au.com.tusc.MySessionHome) javax.rmi.PortableRemoteObject.narrow(objRef, au.com.tusc.MySessionHome.class);
} finally {
initialContext.close();
return cachedRemoteHome;
* Obtain remote home interface from parameterised initial context
* @param environment Parameters to use for creating initial context
* @return Home interface for MySession. Lookup using COMP_NAME
public static au.com.tusc.MySessionHome getHome( java.util.Hashtable environment ) throws javax.naming.NamingException
// Obtain initial context
javax.naming.InitialContext initialContext = new javax.naming.InitialContext(environment);
try {
java.lang.Object objRef = initialContext.lookup(au.com.tusc.MySessionHome.COMP_NAME);
return (au.com.tusc.MySessionHome) javax.rmi.PortableRemoteObject.narrow(objRef, au.com.tusc.MySessionHome.class);
} finally {
initialContext.close();
* Obtain local home interface from default initial context
* @return Local home interface for MySession. Lookup using COMP_NAME
public static au.com.tusc.MySessionLocalHome getLocalHome() throws javax.naming.NamingException
// Local homes shouldn't be narrowed, as there is no RMI involved.
if (cachedLocalHome == null) {
// Obtain initial context
javax.naming.InitialContext initialContext = new javax.naming.InitialContext();
try {
cachedLocalHome = (au.com.tusc.MySessionLocalHome) initialContext.lookup(au.com.tusc.MySessionLocalHome.COMP_NAME);
} finally {
initialContext.close();
return cachedLocalHome;
/** Cached per JVM server IP. */
private static String hexServerIP = null;
// initialise the secure random instance
private static final java.security.SecureRandom seeder = new java.security.SecureRandom();
* A 32 byte GUID generator (Globally Unique ID). These artificial keys SHOULD <strong>NOT </strong> be seen by the user,
* not even touched by the DBA but with very rare exceptions, just manipulated by the database and the programs.
* Usage: Add an id field (type java.lang.String) to your EJB, and add setId(XXXUtil.generateGUID(this)); to the ejbCreate method.
public static final String generateGUID(Object o) {
StringBuffer tmpBuffer = new StringBuffer(16);
if (hexServerIP == null) {
java.net.InetAddress localInetAddress = null;
try {
// get the inet address
localInetAddress = java.net.InetAddress.getLocalHost();
catch (java.net.UnknownHostException uhe) {
System.err.println("MySessionUtil: Could not get the local IP address using InetAddress.getLocalHost()!");
// todo: find better way to get around this...
uhe.printStackTrace();
return null;
byte serverIP[] = localInetAddress.getAddress();
hexServerIP = hexFormat(getInt(serverIP), 8);
String hashcode = hexFormat(System.identityHashCode(o), 8);
tmpBuffer.append(hexServerIP);
tmpBuffer.append(hashcode);
long timeNow = System.currentTimeMillis();
int timeLow = (int)timeNow & 0xFFFFFFFF;
int node = seeder.nextInt();
StringBuffer guid = new StringBuffer(32);
guid.append(hexFormat(timeLow, 8));
guid.append(tmpBuffer.toString());
guid.append(hexFormat(node, 8));
return guid.toString();
private static int getInt(byte bytes[]) {
int i = 0;
int j = 24;
for (int k = 0; j >= 0; k++) {
int l = bytes[k] & 0xff;
i += l << j;
j -= 8;
return i;
private static String hexFormat(int i, int j) {
String s = Integer.toHexString(i);
return padHex(s, j) + s;
private static String padHex(String s, int i) {
StringBuffer tmpBuffer = new StringBuffer();
if (s.length() < i) {
for (int j = 0; j < i - s.length(); j++) {
tmpBuffer.append('0');
return tmpBuffer.toString();
=========================================
ejb-jar.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
<ejb-jar >
<description><![CDATA[No Description.]]></description>
<display-name>Generated by XDoclet</display-name>
<enterprise-beans>
<!-- Session Beans -->
<session >
<description><![CDATA[]]></description>
<ejb-name>MySession</ejb-name>
<home>au.com.tusc.MySessionHome</home>
<remote>au.com.tusc.MySession</remote>
<local-home>au.com.tusc.MySessionLocalHome</local-home>
<local>au.com.tusc.MySessionLocal</local>
<ejb-class>au.com.tusc.MySessionSession</ejb-class>
<session-type>Stateless</session-type>
<transaction-type>Container</transaction-type>
</session>
<!--
To add session beans that you have deployment descriptor info for, add
a file to your XDoclet merge directory called session-beans.xml that contains
the <session></session> markup for those beans.
-->
<!-- Entity Beans -->
<!--
To add entity beans that you have deployment descriptor info for, add
a file to your XDoclet merge directory called entity-beans.xml that contains
the <entity></entity> markup for those beans.
-->
<!-- Message Driven Beans -->
<!--
To add message driven beans that you have deployment descriptor info for, add
a file to your XDoclet merge directory called message-driven-beans.xml that contains
the <message-driven></message-driven> markup for those beans.
-->
</enterprise-beans>
<!-- Relationships -->
<!-- Assembly Descriptor -->
<assembly-descriptor >
<!--
To add additional assembly descriptor info here, add a file to your
XDoclet merge directory called assembly-descriptor.xml that contains
the <assembly-descriptor></assembly-descriptor> markup.
-->
<!-- finder permissions -->
<!-- transactions -->
<!-- finder transactions -->
</assembly-descriptor>
</ejb-jar>
=========================================
jboss.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE jboss PUBLIC "-//JBoss//DTD JBOSS 3.0//EN" "http://www.jboss.org/j2ee/dtd/jboss_3_0.dtd">
<jboss>
<unauthenticated-principal>nobody</unauthenticated-principal>
<enterprise-beans>
<!--
To add beans that you have deployment descriptor info for, add
a file to your XDoclet merge directory called jboss-beans.xml that contains
the <session></session>, <entity></entity> and <message-driven></message-driven>
markup for those beans.
-->
<session>
<ejb-name>MySession</ejb-name>
<jndi-name>MySessionBean</jndi-name>
<local-jndi-name>MySessionLocal</local-jndi-name>
</session>
</enterprise-beans>
<resource-managers>
</resource-managers>
</jboss>
=========================================

Similar Messages

  • Error code 1603 While deploying symantec Endpoint protection through MDT Task sequence as Install a single Application

    Hi ,
    Am getting Error code 1603 (fatal error during installation) while deploying the SEP through MDT task sequence . am not getting such issue regularly but some time am getting and need to be fixed.
    Shailendra
    Shailendra Dev

    Hi,
    I am Chetan Savade from Symantec Technical Support Team.
    Logs can provide more detail info, as said earlier by MrBrooks provide SEP_Inst.log from the affected machine.
    Adding Windows defender related articles if they can help you:
    Keeping Windows Defender Enabled when Deploying and Installing Symantec Endpoint Protection Client package.
    http://www.symantec.com/docs/TECH168501
    Windows Defender startup type registry value is Manual instead of Disabled after installing Symantec Endpoint Protection
    http://www.symantec.com/docs/TECH206793
    How to prepare a Symantec Endpoint Protection 12.1.x client for cloning
    http://www.symantec.com/docs/HOWTO54706
    Best Regards,
    Chetan

  • Error in SDM while deploying EAR file

    Hi all,
    We are getting an error in SDM tool while deploying EAR file.
    ===========================================================================
    Deployment started Fri Nov 28 14:11:01 CET 2008
    ===========================================================================
    Starting Deployment of syn_EAP
    The SDM will now start SAP Web AS Java instance processes in order to perform online deployment. After that the deployment will proceed.
    It could take some time, so please be patient.
    Aborted: development component 'syn_EAP'/'sap.com'/'localhost'/'2008.11.27.20.49.50'/'0':
    SDM could not start the J2EE cluster on the host iwdfvm2160! The online deployment is terminated. There is no clutser control instance running on host iwdfvm2160 which is described in SecureStorage . The instances, returned by MessageServer [MS host: iwdfvm2160; MS port: 3900], are :|Name:JM_T1227866087502_0_FCP11895            |Host:rp2399                          |State:5|HostAddress:10.34.38.76||Name:JM_T1227714760203_0_tx300-s3            |Host:tx300-s3                        |State:5|HostAddress:null||Name:JC_tx300-s3_ERP_10                      |Host:tx300-s3                        |State:5|HostAddress:10.34.33.45|Please check if there is an appropriate running cluster instances.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).STARTUP_CLUSTER)
    Deployment of syn_EAP finished with Error (Duration 11782 ms)
    Can anyone help me regarding this issue?
    Thanks,
    Kalyan.

    Hi Prateek,
    thanks 4 reply.
    I did what you said but no luck.Its giving same error.
    Any other suggestions plz??
    Thanks,
    Kalyan.

  • Error -: AIP-18510 while deploying a configuration in B2B

    Hi All,
    I am getting the following error while deploying a configuration in B2B.
    Could someone please let me know why is this occurring since from the error there does not seem to be any set-up issue. It looks like some Internal Error.
    If somebody has faced the same similar, please let me know what do we need to do to fix it.
    Thanks In Advance,
    Dibya

    Hi Ramesh,
    This issue is resolved. I just restarted the B2B server and then I deployed the configuration. It went through fine. I am not sure why the B2B Server is behaving inconsistently.
    I am surprised as to how a simple restart can solve the issue.
    Please let me know if you have any inputs on this.
    Thanks
    Dibya

  • Error in Jboss while creating User

    Hey,
    I am getting below errors in Jboss when trying to create user (manually or recon)
    Insufficient method permissions, principal=null, ejbName=tcLookupOperations, method=create, interface=LOCALHOME, requiredRoles=[User], principalRoles=[]
    [DATABASE] Trying to get the connection count : 4
    ERROR [DATABASE] Class/Method: DirectDB/getConnection encounter some problems: Error while retrieving database connection.Please check for the follwoing
    Database srever is running.
    Datasource configuration settings are correct.
    ERROR [AUDITOR] Class/Method: AuditEngine/finishTransaction encounter some problems: {1}
    java.lang.NullPointerException
    [SERVER] Class/Method: tcDataObj/save Error :Wrong SQL operation for save
    ERROR [DATABASE] Class/Method: tcDataBase/rollbackTransaction encounter some problems: Rollback Executed From
    java.lang.Exception: Rollback Executed From
    Error occurred while running adapter null, Reason: , Exception: com.thortech.xl.dataobj.util.tcAdapterTaskException
    Data validation failed. The Event Handler could not be run.
    Data will not be saved.
    Its not same for all the users few users are getting created few are not when running the recon..
    Is this any think to do with permissions or database connection
    any think to do with ejb-deployer.xml, user.properties, role.properties files ??
    not getting why we are getting this error only for few user creations.
    Thanks..

    Insufficient permissions error is usually seen in web-logic. By the way what's the difference between the data that you are supplying while creation of there users. Say:
    - Organization under which you are trying to create these users. May be permission issues on Organizations.
    - User who is trying to create other users manualy (is it xelsysadm)
    Just check the logs and see the differences between data (precisely User-Type, Employee-Type and Organization)
    Thanks
    Sunny

  • Error 66 occurred while deploying on PXI-7830R

    Hi guys,
    i´m using a PXI 1031 Chassi with a NI PXI-7830R board.
    When i want to deploy the system definition file in VeriStand 2013 this error appears:
    The VeriStand Gateway encountered an error while deploying the System Definition file.
    Details:
    Error 66 occurred at Project Window.lvlibroject Window.vi >> Project Window.lvlib:Command Loop.vi >> NI_VS Workspace ExecutionAPI.lvlib:NI VeriStand - Connect to System.vi
    Possible reason(s):
    LabVIEW:  Der Übertragungspartner hat die Netzwerkverbindung beendet. Wenn Sie die Funktion "VI-Referenz öffnen" auf eine VI-Server-Verbindung mit einem anderen Computer anwenden, überprüfen Sie unter Werkzeuge>>Optionen>>VI-Server, ob dem Computer Zugriff gewährt wird.
    =========================
    NI VeriStand:  ??? in Server TCP Interface.lvlib:TCP Send Loop.vi:3000002->Server TCP Interface.lvlib:TCP Connection Manager.vi:7430001
    In english: LabVIEW: The transfer partner has completed the network connection. If you select "Open VI Reference" function applied to a VI Server connection to another computer, check under Tools >> Options >> VI Server, whether the computer is granted access.
    What i have done:
    I created in LabVIEW 2013 a new "NI VeriStand FPGA Project" and modified the Vi as needed, built the bitfile and modified the .fpgaconfig, like it is described in this tutorial https://decibel.ni.com/content/docs/DOC-13815#Release_Version_History . After that i loaded the .fpgaconfig into the VeriStand system definition. Until here no errors....now i want to deploy it and the error appesared i mentioned above.....
    I don´t have any idea what i could do now.
    If you need any files for more understanding please tell me what you need.
    yannick

    I think so....maybe you have a look at the files. I changed the .fpgaconfig to an .txt, so don´t be confused ;-)
    As i mentioned in my problem on top i followed the steps from those links i attached and customized the vi as i needed.
    Attachments:
    Custom Personality FPGA.vi ‏31 KB
    fpgaconfig.txt ‏8 KB

  • Error in jboss while runing my application

    as part of my application i'm using some user name called xxx but while running my program Jboss throws an exception like
    javax.jms.JMSSecurityException: User: xxx is NOT authenticated
    Plz help me how to create users in jboss and how to give permissions to that users...... any help is appriciated... thanks in advance..........

    But i'm not understand that Jboss documents properly.... see my file ones again....
    But i added my user as part of jbossmq-state.xml file ( i.e in C:\jboss-4.2.2.GA\docs\examples\jms\conf\jbossmq-state.xml file) even though it shows the same error i.e authentication is required.... plz tell me wer i can modify exactly (in which file) and tell me the name of the file with path if possible.......thankQ....
    <User>
    <Name>xxx</Name>
    <Password>xxx</Password>
    </User>
    <Roles>
    <Role name="guest">
    <UserName>j2ee</UserName>
    <UserName>guest</UserName>
    <UserName>john</UserName>
    <UserName>xxx</UserName>
    </Role>

  • Getting ERROR in SDM while deploying

    Hi All,
    I have downloaded CRM Business Package for 4.0 file
    BPCRM40602_3-10002661.ZIP from SDN.
    I am trying to delpoy this using SDM.
    I rename the file to BPCRM40602_3-10002661.sca and deployed but i am getting ERROR saying Manifest attributes are missing or badly formatted value...
    Can you tell the reason for this.
    and Can i get .SCA file or .EPA file for CRM BP for 4.0 in SDN or Service Marlet Place?
    Points will be given ....
    Thanks
    Sandeep

    Indeed that ZIP file is not going to work. It does not contain a Manifest.mf for a start.  Manifest file will contain the version of the business package, the vendor and plenty of other information. 
    Possibly you cant use the SDM to deploy this business package.    How about uploading it directly through the portal?

  • PUB01015 Error - Location Locked - While Deploying modules in parallel

    Hi
    I wrote a TCL script to deploy the OWB Objects to environments.
    I am calling the script 30 times for deploying 30 modules in a batch file in parallel.
    (I am using the 'start' dos command to start them in parallel.)
    I am getting the following error for some of the modules.
    ====
    Failed to Connect to the OWB Repository and start Control Center .. : PUB01015:
    Object EDSDEV12_STAGE_LOCATION is already locked by OS user 'sai.durga' using ma
    chine 'CRPDB002'!
    ====
    The number of modules being locked each time I try is not consistent.
    Sometimes only 2 will be success full and sometimes 17 will be successfull and the rest will give the above error.
    Is there any setting where this is being defined that only a particular number of objects can be deployed ?
    Or is there an API (?) using which I can unlock them and try ?
    Or is it related to commit ? I am calling the commit at the end of the script for each module.
    Appreciate any help on this.
    Thanks and Regards
    Sameer

    use OMBSAVE and OMBCOMMIT frequently in the TCL script.
    During the process of deployment
    is any one doing some other activity like "debug"
    on the same location ?
    According to my experience it comes when some user is using Degug and at the same time some other user is
    trying to deploy some mapping on the same location.
    Edited by: Nawneet on Mar 20, 2009 12:24 AM

  • Error in package while deploying in jDev 11g

    Hi,
    I am following tutorial at http://static.springsource.org/docs/Spring-MVC-step-by-step/part1.html . I am using jDev 11g as IDE and its integrated weblogic as server.
    I did made index.jsp and web.xml as said in the tutorial. In the step *"1.8. Create the Controller"* where HelloController.java is created, I am getting following error.
    Project: C:\JDeveloper\mywork\springapp\NewProj\NewProj.jpr
    C:\JDeveloper\mywork\springapp\NewProj\src\springapp\web\HelloController.java
    Error(3,43): package org.springframework.web.servlet.mvc does not exist
    Error(4,39): package org.springframework.web.servlet does not exist
    Error(11,34): package org.apache.commons.logging does not exist
    Error(12,34): package org.apache.commons.logging does not exist
    Error(16,41): cannot find symbol
    Error(18,21): cannot find class Log
    Error(20,12): cannot find class ModelAndView
    Error(18,34): cannot find variable LogFactory
    Error(25,20): cannot find class ModelAndView
    But I hv included the jar files in library by Tools-> Manage Libraries. Also Deploy by Default is checked.
    Kindly check the link below to see the screen shots of included libraries and error.
    https://docs.google.com/open?id=0B1QmVEE-TXMpYTc1NTE2NDItYWQ5NC00NGZkLWJjMTAtMTJiZmNkMTE4Zjg5
    https://docs.google.com/open?id=0B1QmVEE-TXMpODAyMWM3YjItMTZjMC00NGMzLTkyN2MtMDMxNDE4ZGM5YWQ1
    https://docs.google.com/open?id=0B1QmVEE-TXMpZDIyZjYyM2YtYzZkMy00NzJmLTliMDQtMjQzYWE5NTllODE2
    Please guide me.

    Hi,
    Try as follows
    paste relevant libraries to
    "*C:\Documents and Settings\YourLogin\Application Data\JDeveloper\system11.1.1.3.37.xx.xx\DefaultDomain\lib*" path
    and restart the server.
    [This is the domain library directory and is usually located at $DOMAIN_DIR/lib.
    The jars located in this directory will be picked up and added dynamically to the end of the server classpath at server startup. The jars will be ordered lexically in the classpath. The domain library directory is one mechanism that can be used for adding application libraries to the server classpath.
    -Suresh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Error While Deploying .sda File in SDM

    Hi,
    We have developed some GP Applications. To transport the GP Application to production system we have builded .sda file from the development portal and deployed it in SDM. But its throwing an error while deploying.
    Production system details:
    OS : AIX (ppc64) 5.3
    EP : NW2004s SP 9
    Oracle : 10.2
    <b>We tried giving R/W permission to the .sda files after copying it in production. But still it throws the same error.</b>
    The error we got while deploying in SDM is :
    Deployment started Wed Mar 21 20:44:49 GMT+05:30 2007
    ===========================================================================
    Starting Deployment of
    com/sap/caf/eu/gp/fnd/tsp/contentD86B5900D79E11DBB0E4000D60ECF782
    Aborted: development
    component 'com/sap/caf/eu/gp/fnd/tsp/contentD86B5900D79E11DBB0E4000D60ECF782'/'sap.com'/'LOCAL'/'20070321165517'/'1':Caught exception during
    application deployment from SAP J2EE Engine's deploy
    service:java.rmi.RemoteException: Cannot deploy application
    sap.com/comsapcafeugpfndtsp~contentD86B5900D79E11DBB0E4000D60ECF782.. Reason: <--Localization failed:
    ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle',
    ID='/usr/sap/PEP/JC02/j2ee/cluster/server0/./temp/cafeugp~model/trareader1174490093196/xlfWork/caf.eu.gp.devobj/1B319881BE5E11DBBC21000D60ECF782/1B319881BE5E11DBBC21000D60ECF782.xlf (A file or directory in the
    path name does not exist.)', Arguments: []--> : Can't find resource for
    bundle java.util.PropertyResourceBundle,
    key /usr/sap/PEP/JC02/j2ee/cluster/server0/./temp/cafeugp~model/trareader1174490093196/xlfWork/caf.eu.gp.devobj/1B319881BE5E11DBBC21000D60ECF782/1B319881BE5E11DBBC21000D60ECF782.xlf (A file or directory in the
    path name does not exist.); nested exception is:
    com.sap.engine.services.deploy.container.DeploymentException: <-
    -Localization failed:
    ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle',
    ID='/usr/sap/PEP/JC02/j2ee/cluster/server0/./temp/cafeugp~model/trareader1174490093196/xlfWork/caf.eu.gp.devobj/1B319881BE5E11DBBC21000D60ECF782/1B319881BE5E11DBBC21000D60ECF782.xlf (A file or directory in the
    path name does not exist.)', Arguments: []--> : Can't find resource for
    bundle java.util.PropertyResourceBundle,
    key /usr/sap/PEP/JC02/j2ee/cluster/server0/./temp/cafeugp~model/trareader1174490093196/xlfWork/caf.eu.gp.devobj/1B319881BE5E11DBBC21000D60ECF782/1B319881BE5E11DBBC21000D60ECF782.xlf (A file or directory in the
    path name does not exist.) (message ID:
    com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of
    com/sap/caf/eu/gp/fnd/tsp/contentD86B5900D79E11DBB0E4000D60ECF782
    finished with Error (Duration 8944 ms)
    <b>Please guide me on how to solve this error.</b>
    Kind Regards,
    Nirmal

    Hi Dipankar,
    I can't tell you the cause why you are facing this problem.
    But I can suggest you a way that you can once again check the availability of plugins in your NWDS.
    Contents of  "gp_TopLevelDCs.zip" are
    <b>1) sap.com caf eu gp api wd.dcref
    2) sap.com caf eu gp api.dcref</b>
    And
    Location to Extract gp_TopLevelDcs.zip=>
    <b>C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\SCs\sap.com\CAF\_comp\TopLevelDCs</b>
    Contents of "gp_api_nw04s.zip" are-->
    <b>1) api(folder)</b>
    Location to Extract gp_api_nw04s.zip=>
    <b>C:\Program Files\SAP\IDE\IDE70\eclipse\plugins\com.sap.tc.ap_2.0.0\comp\CAF\DCs\sap.com\caf\eu\gp</b>
    <b>I'm using NWDS 7.0.06</b>
    Just check if  this info can help you out.
    Do make a reply if you stiil face the problem.
    Regards,
    Piyush

  • Error while deploying Java EAR including flex

    I am developing Flex + Java in RAD 6.0, codes run correctly.
    But when I want to deploy the ear file of the whole application.
    Error is raised while deploying the flex folder under
    WEB-INF. Following the detailed information:
    Anyone know how to solve this error? Thank you.
    om.ibm.wtp.common.wft.util.WFTWrappedException: Error
    exporting EAR file.
    com.ibm.etools.j2ee.commonarchivecore.exception.SaveFailureException:
    WEB-INF/flex/.#remoting-config.xml.1.3
    !Stack_trace_of_nested_exce!
    org.eclipse.core.internal.resources.ResourceException:
    Resource /centrakDemo/WebContent/WEB-INF/flex does not exist.
    at
    org.eclipse.core.internal.resources.Resource.checkExists(Unknown
    Source)
    at
    org.eclipse.core.internal.resources.Resource.checkAccessible(Unknown
    Source)
    at
    org.eclipse.core.internal.resources.File.getContents(Unknown
    Source)
    at org.eclipse.core.internal.resources

    what is the actual filename of the remoting-config file?
    Is is exactly ".#remoting-config.xml.1.3"? I'm not sure the #
    is a legitimate filename character. Looks to me like you're
    intending to exclude this file and are 'commenting it out'. Try
    removing the file completely, or rename it to something that's
    legit. You should be able to find the source for
    org.eclipse.core.internal.resources.Resource.checkExists on google
    if that doesn't work, and see what it's doing.
    Tim

  • Error while deploying EAR file on OC4J 10.1.3.3

    Hi all,
    I am facing following error on OC4J while deploying EAR file
    Error occurred during initialization of VM
    Could not reserve enough space for object heap
    07/12/31 17:47:21 oracle.oc4j.admin.internal.DeployerException: Error compiling :C:\exp\warid1link\oc4j\j2ee\home\applications\CustomerServ
    ices SMS API\customerservicesapi: Syntax error in source or compilation failed in: C:\exp\warid1link\oc4j\j2ee\home\application-deployments\
    CustomerServices SMS API\customerservicesapi\com\warid\sms\runtime\CSSMSAPI_Service_SerializerRegistry.java
    07/12/31 17:47:21 at com.evermind.server.http.WrapperClassGenerator.generateWebServiceArts(WrapperClassGenerator.java:104)
    07/12/31 17:47:21 at com.evermind.server.http.HttpApplication.generateWebServiceArtifacts(HttpApplication.java:8469)
    07/12/31 17:47:21 at com.evermind.server.http.HttpApplication.populateLoaderWithWebServicesDeploymentCache(HttpApplication.java:5701)
    07/12/31 17:47:21 at com.evermind.server.http.HttpApplication.populateLoader(HttpApplication.java:5629)
    07/12/31 17:47:21 at com.evermind.server.http.HttpApplication.initClassLoader(HttpApplication.java:5568)
    07/12/31 17:47:21 at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:731)
    07/12/31 17:47:21 at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:414)
    07/12/31 17:47:21 at com.evermind.server.Application.getHttpApplication(Application.java:570)
    07/12/31 17:47:21 at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.jav
    a:1987)
    07/12/31 17:47:21 at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.<init>(HttpSite.java:1906)
    07/12/31 17:47:21 at com.evermind.server.http.HttpSite.addHttpApplication(HttpSite.java:1603)
    07/12/31 17:47:21 at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:238)
    07/12/31 17:47:21 at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:99)
    07/12/31 17:47:21 at oracle.oc4j.admin.internal.ApplicationDeployer.bindWebApp(ApplicationDeployer.java:547)
    07/12/31 17:47:21 at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:202)
    07/12/31 17:47:21 at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    07/12/31 17:47:21 at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    07/12/31 17:47:21 at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    07/12/31 17:47:21 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    07/12/31 17:47:21 at java.lang.Thread.run(Thread.java:534)
    2007-12-31 17:47:21.625 NOTIFICATION Application Deployer for CustomerServices SMS API FAILED.
    2007-12-31 17:47:21.625 NOTIFICATION Application UnDeployer for CustomerServices SMS API STARTS.
    2007-12-31 17:47:21.640 NOTIFICATION Removing all web binding(s) for application CustomerServices SMS API from all web site(s)
    07/12/31 17:47:21 SEVERE: ProgressObjectImpl.reportError Error compiling :C:\exp\warid1link\oc4j\j2ee\home\applications\CustomerServices SM
    S API\customerservicesapi: Syntax error in source or compilation failed in: C:\exp\warid1link\oc4j\j2ee\home\application-deployments\Custome
    rServices SMS API\customerservicesapi\com\warid\sms\runtime\CSSMSAPI_Service_SerializerRegistry.java
    oracle.oc4j.admin.jmx.shared.exceptions.InternalException: Error compiling :C:\exp\warid1link\oc4j\j2ee\home\applications\CustomerServices
    SMS API\customerservicesapi: Syntax error in source or compilation failed in: C:\exp\warid1link\oc4j\j2ee\home\application-deployments\Custo
    merServices SMS API\customerservicesapi\com\warid\sms\runtime\CSSMSAPI_Service_SerializerRegistry.java
    at oracle.oc4j.admin.jmx.shared.deploy.NotificationUserData.<init>(NotificationUserData.java:107)
    at oracle.oc4j.admin.internal.Notifier.reportError(Notifier.java:429)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:123)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: oracle.oc4j.admin.internal.DeployerException: Error compiling :C:\exp\warid1link\oc4j\j2ee\home\applications\CustomerServices SM
    S API\customerservicesapi: Syntax error in source or compilation failed in: C:\exp\warid1link\oc4j\j2ee\home\application-deployments\Custome
    rServices SMS API\customerservicesapi\com\warid\sms\runtime\CSSMSAPI_Service_SerializerRegistry.java
    at com.evermind.server.http.WrapperClassGenerator.generateWebServiceArts(WrapperClassGenerator.java:104)
    at com.evermind.server.http.HttpApplication.generateWebServiceArtifacts(HttpApplication.java:8469)
    at com.evermind.server.http.HttpApplication.populateLoaderWithWebServicesDeploymentCache(HttpApplication.java:5701)
    at com.evermind.server.http.HttpApplication.populateLoader(HttpApplication.java:5629)
    at com.evermind.server.http.HttpApplication.initClassLoader(HttpApplication.java:5568)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:731)
    at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:414)
    at com.evermind.server.Application.getHttpApplication(Application.java:570)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1987)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.<init>(HttpSite.java:1906)
    at com.evermind.server.http.HttpSite.addHttpApplication(HttpSite.java:1603)
    at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:238)
    at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:99)
    at oracle.oc4j.admin.internal.ApplicationDeployer.bindWebApp(ApplicationDeployer.java:547)
    at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:202)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    ... 4 more
    2007-12-31 17:47:28.109 NOTIFICATION Application UnDeployer for CustomerServices SMS API COMPLETES.
    07/12/31 17:47:28 WARNING: DeployerRunnable.run Error compiling :C:\exp\warid1link\oc4j\j2ee\home\applications\CustomerServices SMS API\cus
    tomerservicesapi: Syntax error in source or compilation failed in: C:\exp\warid1link\oc4j\j2ee\home\application-deployments\CustomerServices
    SMS API\customerservicesapi\com\warid\sms\runtime\CSSMSAPI_Service_SerializerRegistry.java
    oracle.oc4j.admin.internal.DeployerException: Error compiling :C:\exp\warid1link\oc4j\j2ee\home\applications\CustomerServices SMS API\custo
    merservicesapi: Syntax error in source or compilation failed in: C:\exp\warid1link\oc4j\j2ee\home\application-deployments\CustomerServices S
    MS API\customerservicesapi\com\warid\sms\runtime\CSSMSAPI_Service_SerializerRegistry.java
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:126)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    at java.lang.Thread.run(Thread.java:534)
    2007-12-31 18:21:46.234 WARNING Caught exception: java.lang.reflect.InvocationTargetException.
    Regards,
    Imran Raza Khan

    Looks strange, but do you have blanks in your path names? Don't do that. Cause pain only.
    --olaf                                                                                                                                                                                                   

  • Exception while deploying webservice to weblogic 10.3.6

    Hi
    i am facing following exception while deploying ear file to weblogic.
    the same ear files was working in weblogic 9.2
    bundle of thanks for your help
    <Error> <Deployer> <BEA-149265> <Failure occ
    urred in the execution of deployment request with ID '1370278887285' for task '1
    '. Error is: 'weblogic.management.DeploymentException: Error encountered during
    prepare phase of deploying WebService module 'SubscriptionService.war'. Error en
    countered while deploying WebService module 'SubscriptionService.war'. port com
    ponent 'SubscriptionServicePortImpl' - wsdl port:{http://com.irondata.subscriptio
    n/service}SubscriptionServicePortImplPort is not found in wsdl.'
    weblogic.management.DeploymentException: Error encountered during prepare phase
    of deploying WebService module 'SubscriptionService.war'. Error encountered whil
    e deploying WebService module 'SubscriptionService.war'. port component 'Subscr
    iptionServicePortImpl' - wsdl port:{http://com.irondata.subscription/service}Subs
    criptionServicePortImplPort is not found in wsdl.
    at weblogic.wsee.deploy.WSEEModule.prepare(WSEEModule.java:149)
    at weblogic.wsee.deploy.AppDeploymentExtensionFactory.prepare(AppDeploym
    entExtensionFactory.java:79)
    at weblogic.wsee.deploy.AppDeploymentExtensionFactory.access$100(AppDepl
    oymentExtensionFactory.java:15)
    at weblogic.wsee.deploy.AppDeploymentExtensionFactory$1.prepare(AppDeplo
    ymentExtensionFactory.java:219)
    at weblogic.application.internal.flow.AppDeploymentExtensionFlow.prepare
    (AppDeploymentExtensionFlow.java:23)
    Truncated. see log file for complete stacktrace
    Caused By: weblogic.wsee.ws.WsException: Error encountered while deploying WebSe
    rvice module 'SubscriptionService.war'. port component 'SubscriptionServicePort
    Impl' - wsdl port:{http://com.irondata.subscription/service}SubscriptionServicePo
    rtImplPort is not found in wsdl.
    at weblogic.wsee.deploy.WSEEModule.verifyWsdd(WSEEModule.java:256)
    at weblogic.wsee.deploy.WSEEModule.prepare(WSEEModule.java:121)
    at weblogic.wsee.deploy.AppDeploymentExtensionFactory.prepare(AppDeploym
    entExtensionFactory.java:79)
    at weblogic.wsee.deploy.AppDeploymentExtensionFactory.access$100(AppDepl
    oymentExtensionFactory.java:15)
    at weblogic.wsee.deploy.AppDeploymentExtensionFactory$1.prepare(AppDeplo
    ymentExtensionFactory.java:219)
    Truncated. see log file for complete stacktrace

    The following exception occurs when there is a mismatch with the portName in the impl class with the port name in WSDL.
    weblogic.wsee.ws.WsException: Error encountered while deploying WebService module 'SubscriptionService.war'. port component 'SubscriptionServicePort
    Impl' - wsdl port:{http://com.irondata.subscription/service}SubscriptionServicePortImplPort is not found in wsdl.
    I found the Defect in the Oracle knowledge base logged for the issue. Patch id is 8182891 and fix is available for WLS 9.2.2.0 version.
    Please download and apply the patch and let us know if it helps you.
    Thanks,
    Vijaya

  • Problem while deploying WD application thru SDM

    Hi friends ,facing problem while deploying webdynpro application on SDM.It takes much time deployment but for the past 1 or 2 day its not working properly ..i..e error is coming while deploying WD application................................................"Cannot login to the SAP J2EE Engine using user and password as provided in the Filesystem Secure Store. Enter valid login information in the Filesystem Secure Store using the SAP J2EE Engine Config Tool. For more information, see SAP note 701654.."
    If how know how to resolve this then waiting for ur response..
    Thanx in advance
    Hanif

    Hi Hanif,
    The SDM password should be reset if it is not the same as mentioned in your Filesystem Secure Store or vice versa.
    If you have changed your administrator password, kindly do change the same in secure store as well via the config tool.
    Use the Config Tool to change the entry in secure storage as follows:
    1. Start the Config Tool.
               (Go to  <drive>:\usr\sap\<SID>\<instance>\j2ee\configtool --> configtool.bat.)
    2. Select the secure store node.
               The configuration for the secure storage in the file system appears.
    3. Select the admin/password/<SID> entry.
    4. Enter the administrator user's new password in the "Value" field and choose "Add".
    5. Choose "File" --> "Apply" to save the data.
              Note: Contrary to the message that appears, you do not need to restart the server or cluster for this change to take effect.
    6. Finally restart SDM server.
    Regards,
    Anagha

Maybe you are looking for