EJB CMP create Error

Hi
my web-application tries to insert a new element in the database:
for instance:
my-EJB-CMP-LocalInstance.create("ENGINE-TC", "tt*", "sss");
the application throws the following exception:
Caused by: com.sap.exception.standard.SAPIllegalArgumentException: The parameter "argument" has the value "ENGINE-TC                               tt*                                                         ", so it contains the character "*" which is not allowed
     at com.sap.engine.core.locking.AbstractLockingManagerImpl.checkForSpecialParameter(AbstractLockingManagerImpl.java:1034)
     at com.sap.engine.core.locking.AbstractLockingManagerImpl.checkArgument(AbstractLockingManagerImpl.java:1023)
     at com.sap.engine.core.locking.AbstractLockingManagerImpl.lock(AbstractLockingManagerImpl.java:420)
     at com.sap.engine.services.applocking.AbstractBaseLocking.lockInternal(AbstractBaseLocking.java:133)
     at com.sap.engine.services.applocking.TableLockingImpl.lock(TableLockingImpl.java:131)
     at com.sap.engine.services.applocking.TableLockingImpl.lock(TableLockingImpl.java:140)
     at com.sap.engine.services.ejb.entity.pm.lock.TableLockingSystem.write(TableLockingSystem.java:82)
     at com.sap.engine.services.ejb.entity.pm.UpdatablePersistent.create(UpdatablePersistent.java:242)
     at com.sap.sigsrv.profile.AttributeBean2_0Persistent.create(AttributeBean2_0Persistent.java:532)
     at com.sap.sigsrv.profile.AttributeBean2_0PM.ejbCreate(AttributeBean2_0PM.java:140)
     at com.sap.sigsrv.profile.AttributeLocalHomeImpl2_0.create(AttributeLocalHomeImpl2_0.java:342)
     ... 27 more
com.sap.exception.standard.SAPIllegalArgumentException: The parameter "argument" has the value "ENGINE-TC                               tt*                                                         ", so it contains the character "*" which is not allowed
     at com.sap.engine.core.locking.AbstractLockingManagerImpl.checkForSpecialParameter(AbstractLockingManagerImpl.java:1034)
     at com.sap.engine.core.locking.AbstractLockingManagerImpl.checkArgument(AbstractLockingManagerImpl.java:1023)
     at com.sap.engine.core.locking.AbstractLockingManagerImpl.lock(AbstractLockingManagerImpl.java:420)
     at com.sap.engine.services.applocking.AbstractBaseLocking.lockInternal(AbstractBaseLocking.java:133)
     at com.sap.engine.services.applocking.TableLockingImpl.lock(TableLockingImpl.java:131)
     at com.sap.engine.services.applocking.TableLockingImpl.lock(TableLockingImpl.java:140)
     at com.sap.engine.services.ejb.entity.pm.lock.TableLockingSystem.write(TableLockingSystem.java:82)
     at com.sap.engine.services.ejb.entity.pm.UpdatablePersistent.create(UpdatablePersistent.java:242)
the DB-filed where the value 'tt*' should be stored, is defined as primary key VARCHAR Field!
if I remove the primary key constrain from this field, then it works!
Can anybody tell me what can I do in this case?
I would like to insert a regular expression strings in this primary key String-field.
Is there an escape or quoting operation? some suggestions?
thank you

Most probably you have an error in resources setup. Please check the <resources> section of the instance server.xml
or via the admin ui.
Regards,
Marina

Similar Messages

  • EJB-CMP Deployment Error

    Exception:weblogic.management.ApplicationException: prepare failed for accounts Module: accounts Error: Exception preparing module: EJBModule(accounts,status=NEW) Unable to deploy EJB: AccountBean2 from accounts.jar: [EJB:011055]Error deploying the EJB 'AccountBean2(Application: accounts, EJBComponent: accounts)', the JNDI name 'Account' is already in use. You must set a different JNDI name in the weblogic-ejb-jar.xml deployment descriptor for this EJB before it can be deployed.

    hello stanveer,
    I hav checked auto-commtit but no luk., Do i hav to assign any permission in mysql for the
    database acccess..?
    Now i used
    "grant select,insert,delete,update on proj.* to root@localhost identified by 'passwoed' "
    in mysql database
    then pinged it with password field as 'password' its pinged successful..
    I hav used datasource classname = com.mysql.jdbc.jdbc2.optional.MysqlDataSource
    Is this having something to do with this problem
    thanku for helping..

  • EJB CMP remove create cache issue? DuplicateKeyException

    EJB CMP remove create cache issue? DuplicateKeyException
    Hi I have an EJB 2.1 application using CMP. Most things work fine. But if I in a transaction tries to remove a bean and create a new one with the same primary key I get a DuplicateKeyException:
    2007-11-16 09:25:31,963 ERROR [RMICallHandler-6] AdminGroupData_ConcreteSubClass147 - Error adding AccessRules:
    javax.ejb.DuplicateKeyException: Exception [EJB - 10007]: Exception creating bean of type [AccessRulesData]. Bean already exists.
    at oracle.toplink.internal.ejb.cmp.EJBExceptionFactory.duplicateKeyException(EJBExceptionFactory.java:195)
    I suspect that the remove call only removes from the cache (until commit), but that the create call checks the database or something?
    My code is simple like the following:
    AdminPreferencesDataLocal apdata1 = adminpreferenceshome.findByPrimaryKey(certificatefingerprint);
    adminpreferenceshome.remove(certificatefingerprint);
    adminpreferenceshome.create(certificatefingerprint,newadminpreference);
    Is there some configuration I can set in toplink-ejb-jar.xml to fix this?
    I use OC4j 10.1.3.3
    Cheers,
    Tomas

    The bean.remove() was executed but the sql DELETE was executed to the database as the result, oc4j manages all sql statements and they are optimized to commit to the database in batch at once when the transaction commit. Oc4j ejb container is smart and preventing you from creating the same entity cached in the transaction because the sql delete was not really committed to the database when the create is called.
    My guess is that the reason it works with IBM WAS was because it issued sql for each remove/create call right away instead of doing them in batch as oc4j, or your WAS remove then create were called in separate transactions.

  • SOS: javax.ejb.CreateException: Create failed because primary key is null

    Hello,
    I am desperately trying to get my application server to create a record through CMP 2. My app server is JRun 4.
    Here is the client:
    package com.parispano.tests;
    import java.util.Date;
    import java.util.Properties;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import com.parispano.account.entity.Account;
    import com.parispano.account.entity.AccountHome;
    public class ClientEJBDeuxTemp {
      public static void main(String[] args) {
        System.out.println("\nBegin account DemoClient...\n");
        try {
          // Create A Demo object, in the server
          // Note: the name of the class corresponds to the JNDI
          // property declared in the DeploymentDescriptor
          // From DeploymentDescriptor ...
          // beanHomeName demo.DemoHome
          Context ctx = getInitialContext();
          AccountHome ahome = (AccountHome) ctx.lookup("AccountEJBHome");
          //System.out.println("Creating Demo\n");
          Account account = ahome.create("toto","toto", "toto","toto","toto","toto","toto","toto","toto","toto","toto",new Date(),new Date());
        catch (Exception e) {
          System.out.println(":::::::::::::: Error :::::::::::::::::");
          e.printStackTrace();
        System.out.println("\nEnd DemoClient...\n");
      static String user     = "admin";
      static String password = "admin";
      static String url      = "ordi:2908";
       * Gets an initial context.
       * @return                  Context
       * @exception               java.lang.Exception if there is
       *                          an error in getting a Context
      static public Context getInitialContext() throws Exception {
        Properties p = new Properties();
        p.put(Context.INITIAL_CONTEXT_FACTORY, "jrun.naming.JRunContextFactory");
        p.put(Context.PROVIDER_URL, url);
        if (user != null) {
          System.out.println ("user: " + user);
          p.put(Context.SECURITY_PRINCIPAL, user);
          if (password == null)
            password = "";
          p.put(Context.SECURITY_CREDENTIALS, password);
        return new InitialContext(p);
    }and here is the exception I get:
    javax.ejb.CreateException: Create failed because primary key is null
    I don't understand why I get this as the primary key is "toto" and therefore is not null.
    Here is the DD:
    <?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>
        <display-name>Account EJB</display-name>
        <enterprise-beans>
          <entity>
            <display-name>Account EJB</display-name>
            <ejb-name>AccountEJB</ejb-name>
            <home>com.parispano.account.entity.AccountHome</home>
              <remote>com.parispano.account.entity.Account</remote>
            <local-home>com.parispano.account.entity.AccountLocalHome</local-home>
            <local>com.parispano.account.entity.AccountLocal</local>
            <ejb-class>com.parispano.account.entity.AccountEJB</ejb-class>
            <persistence-type>Container</persistence-type>
            <prim-key-class>java.lang.String</prim-key-class>
            <reentrant>False</reentrant>
            <cmp-version>2.x</cmp-version>
            <abstract-schema-name>account</abstract-schema-name>
            <cmp-field>
            <description>Login</description>
            <field-name>login</field-name>
            </cmp-field>
            <!-- -->
            <cmp-field>
              <description>Password</description>
              <field-name>password</field-name>
            </cmp-field>
            <cmp-field>
              <description>Surname</description>
              <field-name>surname</field-name>
            </cmp-field>
            <cmp-field>
              <description>First Name</description>
              <field-name>firstName</field-name>
            </cmp-field>
            <cmp-field>
              <description>Address One</description>
              <field-name>addressOne</field-name>
            </cmp-field>
            <cmp-field>
              <description>Address Two</description>
              <field-name>addressTwo</field-name>
            </cmp-field>
            <cmp-field>
              <description>Postcode</description>
              <field-name>postcode</field-name>
            </cmp-field>
            <cmp-field>
              <description>City</description>
              <field-name>city</field-name>
            </cmp-field>
            <cmp-field>
              <description>Country</description>
              <field-name>country</field-name>
            </cmp-field>
            <cmp-field>
              <description>Telephone</description>
              <field-name>telephone</field-name>
            </cmp-field>
            <cmp-field>
              <description>Email</description>
              <field-name>email</field-name>
            </cmp-field>
            <cmp-field>
              <description>Inscription Date</description>
              <field-name>inscriptionDate</field-name>
            </cmp-field>
            <cmp-field>
              <description>Last Visit Date</description>
              <field-name>lastVisitDate</field-name>
            </cmp-field>
              <primkey-field>login</primkey-field>
          </entity>
        </enterprise-beans>
      </ejb-jar>Can anyone tell me why I am getting this exception please?
    Thanks in advance,
    Julien Martin.

    Yes, I have set the PK. Actually this is happening when the number of columns are more than 63 columns. After I reduce the number of column, it is working fine.
    Is it the actual problem???
    fyi, I'm using jboss as the Application Server...

  • If DB Column java.sql.Types=CHAR = Workshop autogen EJB CMP Filed=Boolean

    Hi everybody<br>
    <p class="MsoNormal"><span lang="EN-US">When a user automatically
    creates/generates an Entity Bean via BEA Workshop EJB Project option: ‘<b>new
    Entity bean from database table</b>’ and DB Table Column is of type <b>CHAR</b>,
    Workshop creates a <b>@ejbgen:cmp-field</b> of Java type <b>Boolean</b>, NOT of
    <b>Character</b>!</span></p>
    <p class="MsoNormal"><span lang="EN-US">I completely agree that the developer
    must be acquainted with the Data Base and DB Tables as well and he can manually
    correct </span><span lang="EN-US" style="font-size: 10.0pt">SET & GET</span><span lang="EN-US">
    Boolean to Character in EJB source code view or he’ll receive an error if he
    tries to <b>set<i>FieldName</i></b><i>(String/Character) </i>in <b>ejb</b>
    methods.</span></p>
    <p class="MsoNormal"><span lang="EN-US">But suppose that a developer has
    urgently received an order to build an EJB Project for a thousand of DB Tables
    and he hasn’t been acquainted with all of them. He has created the EJBs via <b>
    ‘new -> Entity bean from database table’. </b>He has created some EJB Finders,
    for example a finder:  <b>ejbgen:finder Collection find<i>All</i>()</b>.
    (<i>Suppose he hasn’t used <b>group-name</b> finder property</i>)</span></p>
    <p class="MsoNormal"><span lang="EN-US">He has invoked <b>find<i>All</i>()</b>
    method and depends on the JDBC Driver used, he will receive an </span>
    <span lang="EN-US" style="font-size: 10.0pt">ERROR</span><span lang="EN-US">,
    printed within the Server start console <b>at least</b> OR the result after <b>
    get<i>FieldName</i></b>() will be '<b>false</b>', not an expected <i><b>char</b></i>
    symbol.</span></p>
    <p class="MsoNormal"><b><span lang="EN-US">Anxious conclusion: </span></b></p>
    <p class="MsoNormal"><span lang="EN-US">If<b>  </b>DB Column<b>  java.sql.Types
    = </b></span><span lang="EN-US" style="font-size: 10.0pt"><b>CHAR</b>    </span><span lang="EN-US">then</span><span lang="EN-US" style="font-size: 10.0pt">  
    </span><span lang="EN-US"><b>getJavaObjectType = Boolean </b> then corresponding
    EJB CMP Filed  will always be   <b>Boolean</b>  in BEA Workshop !</span></p>
    <p class="MsoNormal"><i><span lang="EN-US">Following description considers the
    </span><span lang="EN-US" style="font-size: 11.0pt">PROBLEM</span><span lang="EN-US">:</span></i></p>
    <p class="MsoNormal"><span lang="EN-US">Class<b>
    weblogic.jdbc.utils.schema.Column </b>from<b> weblogic.jar </b>and its method<b>
    String getJavaType() </b>has a <b>switch(getType())</b> with <b>case:</b></span></p>
    <p class="MsoNormal"><span lang="en-us"><b> if(this.getSize() == 1)<br>
        return "boolean"; <br>
    else<br>
        return "String";</b></span></p>
    <p class="MsoNormal"><span lang="en-us">and </span>
    <span lang="EN-US" style="font-size: 12.0pt; font-family: Times New Roman">
    another </span><span lang="en-us"> method <b>String getJavaObjectType() </b>
    {</span></p>
    <p class="MsoNormal"><b><span lang="en-us">String s = this.getJavaType();</span></b></p>
    <p class="MsoNormal"><b><span lang="en-us">...</span></b></p>
    <p class="MsoNormal"><b><span lang="en-us">    
    if(s.equals("boolean"))<br>
            return "Boolean";</span></b></p>
    <p class="MsoNormal"><span lang="en-us"><b>    
    if(s.equals("char"))<br>
            return "Character";</b></span></p>
    <p class="MsoNormal"><span lang="en-us"><b>... }<br>
    </b>but according to </span><span lang="EN-US"><b>switch(getType())</b> which
    has NOT  a<b> 'case' return char</b>, </span><span lang="en-us"><b>
    'Character' </b>will never be returned, so:</span></p>
    <p class="MsoNormal"><span lang="EN-US"><b>@ejbgen:cmp-field</b> of Java type <b>
    Character </b></span><span lang="en-us">will never be generated by Workshop.</span></p>
    <p class="MsoNormal" align="left"><span lang="EN-US">More often than not  I’ve
    ran into this little but disturbing problem, so I’ve corrected <b>
    weblogic.jdbc.utils.schema.Column.getJavaType switch case </b>as:</span></p>
    <p class="MsoNormal" style="text-indent:35.4pt"><b><span lang="EN-US">…</span></b></p>
    <p class="MsoNormal" style="text-indent:35.4pt"><b><span lang="EN-US">       
    case 1:     // '\001'  //</span><span lang="EN-US" style="font-size: 10.0pt">CHAR</span></b></p>
    <p class="MsoNormal" style="text-indent:35.4pt"><b><span lang="EN-US">
                if(this.getSize() == 1)</span></b></p>
    <p class="MsoNormal" style="text-indent:35.4pt"><b><span lang="EN-US">          
         return "char";  </span></b></p>
    <p class="MsoNormal" style="text-indent:35.4pt"><b><span lang="EN-US">…</span></b></p>
    <p class="MsoNormal" style="text-indent:35.4pt"><b><span lang="EN-US">private
    static final boolean </span><span lang="EN-US" style="font-size: 10.0pt">
    CHAR_TO_BOOLEAN</span><span lang="EN-US"> = false;     </span></b><span lang="EN-US">//as
    a field variable</span></p>
    <p class="MsoNormal" style="text-indent:35.4pt"><b><span lang="EN-US">…</span></b></p>
    <p class="MsoNormal" style="text-indent:35.4pt"> </p>
    <p class="MsoNormal" style="text-align:justify"><span lang="EN-US">Using this
    correction and precompiled class I’ve built and tested a lot of projects w/o
    problems so far.</span></p>
    <p>Best regards: George Moykin<p>
    P.S. I appologize to site Admins for posting the same topic in EJB forum, but it refers to EJBs too.

    Hi,<br>
    In your database, we have some columns of CHAR type and this is the decision of our DB architects. I understand the case ‘male’ or ‘female’, true or false, either; but only if I must choose between 2 variants. Our DB columns contain char symbols such as ‘:’, ‘;’,’-’ etc. and for some inner purposes our architects decided DB columns to be of type CHAR, not VARCHAR. In this case, the Workshop transformation ‘CHAR to BOOLEAN’ doesn’t do useful work. So, I’ve decided to modify some weblogic.jar classes (as described) and now I’m able to generate Entity EJB from DBMS Tables w/o manual intervention.<br>
    Best Regards

  • Getting EJB spec violation error - please help

    I'm getting following error while trying to deploy my stateless SB.
    17:13:30,399 WARN [verifier] EJB spec violation:
    Bean : UnifiedMsg
    Method : public abstract UnifiedMsg create() throws CreateException, RemoteExcep
    tion
    Section: 7.10.6
    Warning: The method return values in the home interface must be of valid types f
    or RMI/IIOP.
    17:13:30,399 ERROR [MainDeployer] could not create deployment: file:/C:/AddOnPkg
    /jboss-3.2.5/server/all/deploy/webmail_ejb_session_umm.jar
    org.jboss.deployment.DeploymentException: Verification of Enterprise Beans faile
    d, see above for error messages.
    at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:517)
    at org.jboss.deployment.MainDeployer.create(MainDeployer.java:790)
    at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:644)
    at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:608)
    at sun.reflect.GeneratedMethodAccessor18.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    I've double check the section 7.10.6 requiremnts and do not find anything wrong. Stuck at this from many days,PLEASE HELP
    SB home interface is as follow:
    import java.util.*;
    import javax.ejb.*;
    import java.rmi.*;
    public interface UnifiedMsgHome extends EJBHome {
    public UnifiedMsg create() throws CreateException, RemoteException;

    Hai,
    My dear friends, I am getting some problem. In my system only. mean. I am getting from the CVS and as our batch file i am deploying. I thing, this problem i am only getting in my team. By givein this error. i repleace the JBoss server from my backup softwares. Even it is giving same error. three of our team also check the bug, but not able to resolve. Let me know any external errors instemd of ejb method errors. because it is working in the other systems.
    the bug details:
    14:20:56,717 INFO [EARDeployer] Init J2EE application: file:/D:/jboss-4.0.2/server/default/deploy/matrix.ear
    14:21:02,530 WARN [verifier] EJB spec violation:
    Bean : AddressManagerSessionBean
    Section: 22.2
    Warning: The Bean Provider must specify the fully-qualified name of the Java class that implements the enterprise bean's busines
    Info : Class not found on 'uk.ses.matrix.address.bean.AddressManagerSessionBean': Unexpected error during load of: uk.ses.matr
    14:21:02,530 WARN [verifier] EJB spec violation:
    Bean : ADMCustomerSessionBean
    Section: 22.2
    Warning: The Bean Provider must specify the fully-qualified name of the Java class that implements the enterprise bean's busines
    Info : Class not found on 'uk.ses.matrix.address.bean.ADMCustomerSessionBean': Unexpected error during load of: uk.ses.matrix.
    14:21:02,530 WARN [verifier] EJB spec violation:
    Bean : ADMServicePointSessionBean
    Section: 22.2
    14:21:02,608 ERROR [MainDeployer] could not create deployment: file:/D:/jboss-4.0.2/server/default/tmp/deploy/tmp17389matrix.ear
    org.jboss.deployment.DeploymentException: Verification of Enterprise Beans failed, see above for error messages.
    at org.jboss.ejb.EJBDeployer.create(EJBDeployer.java:553)
    at org.jboss.deployment.MainDeployer.create(MainDeployer.java:918)
    at org.jboss.deployment.MainDeployer.create(MainDeployer.java:910)
    at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:774)
    at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:738)
    at sun.reflect.GeneratedMethodAccessor49.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    please give suggestions to solve this.

  • Reg. Field names in ejb-jar.xml (EJB CMP)

    Hi,
    I am using WAS 5.1 and EJB CMP 2.0.
    I got a error while dealing with the database i.e ORACLE 8.The Scenario in detail,
    I had a table X with filed names 'help' and 'sequence'. When i am generating Jar file using 'ejbdeploy', the name of the field names in Table.ddl changing automatically to 'help1' and 'sequence1'. Due to this i am not able to access data from database.
    Why field names are changing? Are they keywords ? con't we have field names with the above names? If they are keywords tell me the document which contains these details?
    Thanks in Advance.

    According to the ejb-jar.xml dtd ejb-name, ejb-class, persistence-type, prim-key-class, reentrant are the required elements for an entity bean.
    <!ELEMENT entity (description?, display-name?, small-icon?,
              large-icon?, ejb-name, home?, remote?, local-home?,
              local?, ejb-class, persistence-type, prim-key-class,
              reentrant, cmp-version?, abstract-schema-name?,
              cmp-field*, primkey-field?, env-entry*, ejb-ref*,
              ejb-local-ref*, security-role-ref*, security-identity?,
              resource-ref*, resource-env-ref*, query*)>

  • Wrong exception being thrown on CMP bean error

    In OC4J Release 2 I'm getting the wrong exception thrown from a CMP bean error.
    Situation:
    Servlet calls an update method on a stateless session bean with trans-attribute of Required. This update method finds 2 entity beans by primary key and updates both of them (all with trans-attribute of Supports). When an error is thrown in the second entity bean (by trying to set a value to something that breaks a constraint), I get the following error:
    com.evermind.server.rmi.OrionRemoteException: Transaction was rolled back: Error preparing bean instance: com.evermind.transaction.MarshallingXAException
    at TestSession_StatefulSessionBeanWrapper3.updatebothtests(TestSession_StatefulSessionBeanWrapper3.java:1164)
    at __jspPage1_insertEntityTest_jsp._jspService(__jspPage1_insertEntityTest_jsp.java:224)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at com.evermind.server.http.HttpApplication.serviceJSP(HttpApplication.java:5680)
    at com.evermind.server.http.JSPServlet.service(JSPServlet.java:31)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:667)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:702)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:250)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:62)
    Nested exception is:
    com.evermind.transaction.MarshallingXAException
    at com.evermind.server.ejb.EntityEJBObject.prepare(EntityEJBObject.java:70)
    at com.evermind.server.ApplicationServerTransactionSynchronization.prepareComponentsSuccess(ApplicationServerTransactionSynchronization.java:403)
    at com.evermind.server.ApplicationServerTransactionSynchronization.beforeCompletion(ApplicationServerTransactionSynchronization.java:565)
    at com.evermind.server.ApplicationServerTransaction.beforeCompletion(ApplicationServerTransaction.java:1063)
    at com.evermind.server.ApplicationServerTransaction.commit(ApplicationServerTransaction.java:552)
    at com.evermind.server.ApplicationServerTransaction.end(ApplicationServerTransaction.java:834)
    at TestSession_StatefulSessionBeanWrapper3.updatebothtests(TestSession_StatefulSessionBeanWrapper3.java:1160)
    at __jspPage1_insertEntityTest_jsp._jspService(__jspPage1_insertEntityTest_jsp.java:224)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at com.evermind.server.http.HttpApplication.serviceJSP(HttpApplication.java:5680)
    at com.evermind.server.http.JSPServlet.service(JSPServlet.java:31)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:667)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:702)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:250)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:62)
    Nested exception is:
    java.lang.InternalError: Werent current caller, server stacktrace (to disable this message, use -Dejb.assert=false at startup): java.lang.Throwable: Werent current caller
    at Test2_EntityBeanWrapper5.setEntityBean(Test2_EntityBeanWrapper5.java:1496)
    at com.evermind.server.ejb.EntityEJBHome.passivateAndRelease(EntityEJBHome.java:344)
    at com.evermind.server.ejb.EntityEJBObject.releaseContext(EntityEJBObject.java:378)
    at Test2_EntityBeanWrapper5.saveState(Test2_EntityBeanWrapper5.java:1442)
    at com.evermind.server.ejb.EntityEJBObject.prepare(EntityEJBObject.java:39)
    at com.evermind.server.ApplicationServerTransactionSynchronization.prepareComponentsSuccess(ApplicationServerTransactionSynchronization.java:403)
    at com.evermind.server.ApplicationServerTransactionSynchronization.beforeCompletion(ApplicationServerTransactionSynchronization.java:565)
    at com.evermind.server.ApplicationServerTransaction.beforeCompletion(ApplicationServerTransaction.java:1063)
    at com.evermind.server.ApplicationServerTransaction.commit(ApplicationServerTransaction.java:552)
    at com.evermind.server.ApplicationServerTransaction.end(ApplicationServerTransaction.java:834)
    at TestSession_StatefulSessionBeanWrapper3.updatebothtests(TestSession_StatefulSessionBeanWrapper3.java:1160)
    at __jspPage1_insertEntityTest_jsp._jspService(__jspPage1_insertEntityTest_jsp.java:224)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at com.evermind.server.http.HttpApplication.serviceJSP(HttpApplication.java:5680)
    at com.evermind.server.http.JSPServlet.service(JSPServlet.java:31)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:667)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:702)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:250)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:62) at Test2_EntityBeanWrapper5.setEntityBean(Test2_EntityBeanWrapper5.java:1496)
    at com.evermind.server.ejb.EntityEJBHome.passivateAndRelease(EntityEJBHome.java:344)
    at com.evermind.server.ejb.EntityEJBObject.releaseContext(EntityEJBObject.java:378)
    at Test2_EntityBeanWrapper5.saveState(Test2_EntityBeanWrapper5.java:1442)
    at com.evermind.server.ejb.EntityEJBObject.prepare(EntityEJBObject.java:39)
    at com.evermind.server.ApplicationServerTransactionSynchronization.prepareComponentsSuccess(ApplicationServerTransactionSynchronization.java:403)
    at com.evermind.server.ApplicationServerTransactionSynchronization.beforeCompletion(ApplicationServerTransactionSynchronization.java:565)
    at com.evermind.server.ApplicationServerTransaction.beforeCompletion(ApplicationServerTransaction.java:1063)
    at com.evermind.server.ApplicationServerTransaction.commit(ApplicationServerTransaction.java:552)
    at com.evermind.server.ApplicationServerTransaction.end(ApplicationServerTransaction.java:834)
    at TestSession_StatefulSessionBeanWrapper3.updatebothtests(TestSession_StatefulSessionBeanWrapper3.java:1160)
    at __jspPage1_insertEntityTest_jsp._jspService(__jspPage1_insertEntityTest_jsp.java:224)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at com.evermind.server.http.HttpApplication.serviceJSP(HttpApplication.java:5680)
    at com.evermind.server.http.JSPServlet.service(JSPServlet.java:31)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:667)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:702)
    at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:250)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:62)
    Why am I getting a MarshallingXAException instead of a SQLException? In the old OC4J, I got a SQLException wrapped in an OrionRemoteException, with the details of what constraint was broken, instead of this.
    I've also duplicated this by doing the entity bean updates directly from the servlet wrapped in a UserTransaction.
    Jeff.

    Tell me whether your transaction has been rolled back or not....If it has been rolled back, then those messages, printed on your server console are debug messages...just ignore them...
    After this exception, can u able to execute other applications in OC4J?
    --Venky                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • EJB on JBoss error

    Hi all;i have an EJB Message Driven that is tring to call another EJB, but i have this exception:
    exception
    12:39:31,187 INFO [STDOUT] Message Driven Bean got message org.jboss.mq.SpyObjectMessage {
    Header {
    jmsDestination : QUEUE.BBkEvtMgrQueue
    jmsDeliveryMode : 2
    jmsExpiration : 0
    jmsPriority : 4
    jmsMessageID : ID:13-10960223709261
    jmsTimeStamp : 1096022370926
    jmsCorrelationID: null
    jmsReplyTo : null
    jmsType : null
    jmsRedelivered : true
    jmsProperties : {JMS_JBOSS_REDELIVERY_COUNT=5}
    jmsPropReadWrite: false
    msgReadOnly : true
    producerClientId: ID:13
    12:39:31,187 ERROR [LogInterceptor] TransactionRolledbackException in method: public abstract de.danet.an.workflow.ejbs.WorkflowEngine de.danet.an.workflow.ejbs.WorkflowEngineHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException, causedBy:
    javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract de.danet.an.workflow.ejbs.WorkflowEngine de.danet.an.workflow.ejbs.WorkflowEngineHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
    at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invokeHome(StatelessSessionContainer.java:632)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invokeHome(CachedConnectionInterceptor.java:205)
    at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invokeHome(StatelessSessionInstanceInterceptor.java:51)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:88)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:315)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:128)
    at org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.java:94)
    at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:120)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:93)
    at org.jboss.ejb.StatelessSessionContainer.internalInvokeHome(StatelessSessionContainer.java:319)
    at org.jboss.ejb.Container.invoke(Container.java:743)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
    at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:97)
    at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:90)
    at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46)
    at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:53)
    at org.jboss.proxy.ejb.HomeInterceptor.invoke(HomeInterceptor.java:173)
    at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:85)
    at $Proxy161.create(Unknown Source)
    at de.danet.an.workflow.ejbs.client.StandardWorkflowServiceFactory.newWorkflowService(StandardWorkflowServiceFactory.java:206)
    at com.bbk.evtmgr.ejbs.BbkCmdRcvBean.onMessage(BbkCmdRcvBean.java:156)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:458)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:185)
    at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:62)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:84)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:315)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:148)
    at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:90)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
    at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:372)
    at org.jboss.ejb.Container.invoke(Container.java:723)
    at org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:914)
    at org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerInvoker.java:1208)
    at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:276)
    at org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:871)
    at org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:159)
    at org.jboss.mq.SpySession.run(SpySession.java:347)
    at org.jboss.jms.asf.StdServerSession.run0(StdServerSession.java:200)
    at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:180)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
    at java.lang.Thread.run(Thread.java:534)
    12:39:31,197 INFO [STDOUT] [StandardWorkflowServiceFactory,ERROR] Invalid invocation, check your deployment packaging, method=public abstract de.danet.an.workflow.ejbs.WorkflowEngine de.danet.an.workflow.ejbs.WorkflowEngineHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException; nested exception is:
    javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract de.danet.an.workflow.ejbs.WorkflowEngine de.danet.an.workflow.ejbs.WorkflowEngineHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
    javax.transaction.TransactionRolledbackException: Invalid invocation, check your deployment packaging, method=public abstract de.danet.an.workflow.ejbs.WorkflowEngine de.danet.an.workflow.ejbs.WorkflowEngineHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException; nested exception is:
    javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract de.danet.an.workflow.ejbs.WorkflowEngine de.danet.an.workflow.ejbs.WorkflowEngineHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:214)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:315)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:128)
    at org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.java:94)
    at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:120)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:93)
    at org.jboss.ejb.StatelessSessionContainer.internalInvokeHome(StatelessSessionContainer.java:319)
    at org.jboss.ejb.Container.invoke(Container.java:743)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
    at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
    at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:97)
    at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:90)
    at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46)
    at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:53)
    at org.jboss.proxy.ejb.HomeInterceptor.invoke(HomeInterceptor.java:173)
    at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:85)
    at $Proxy161.create(Unknown Source)
    at de.danet.an.workflow.ejbs.client.StandardWorkflowServiceFactory.newWorkflowService(StandardWorkflowServiceFactory.java:206)
    at com.bbk.evtmgr.ejbs.BbkCmdRcvBean.onMessage(BbkCmdRcvBean.java:156)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:458)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:185)
    at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:62)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:84)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:315)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:148)
    at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:90)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
    at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:372)
    at org.jboss.ejb.Container.invoke(Container.java:723)
    at org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:914)
    at org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerInvoker.java:1208)
    at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:276)
    at org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:871)
    at org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:159)
    at org.jboss.mq.SpySession.run(SpySession.java:347)
    at org.jboss.jms.asf.StdServerSession.run0(StdServerSession.java:200)
    at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:180)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract de.danet.an.workflow.ejbs.WorkflowEngine de.danet.an.workflow.ejbs.WorkflowEngineHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
    at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invokeHome(StatelessSessionContainer.java:632)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invokeHome(CachedConnectionInterceptor.java:205)
    at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invokeHome(StatelessSessionInstanceInterceptor.java:51)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:88)
    ... 51 more
    12:39:31,197 ERROR [BbkCmdRcvBean] com.bbk.evtmgr.ejbs.BbkCmdRcvBean
    de.danet.an.workflow.api.FactoryConfigurationError: Cannot create WorkflowEngineEJB: Invalid invocation, check your deployment packaging, method=public abstract de.danet.an.workflow.ejbs.WorkflowEngine de.danet.an.workflow.ejbs.WorkflowEngineHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException; nested exception is:
    javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract de.danet.an.workflow.ejbs.WorkflowEngine de.danet.an.workflow.ejbs.WorkflowEngineHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
    at de.danet.an.workflow.ejbs.client.StandardWorkflowServiceFactory.newWorkflowService(StandardWorkflowServiceFactory.java:220)
    at com.bbk.evtmgr.ejbs.BbkCmdRcvBean.onMessage(BbkCmdRcvBean.java:156)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.jboss.ejb.MessageDrivenContainer$ContainerInterceptor.invoke(MessageDrivenContainer.java:458)
    at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:185)
    at org.jboss.ejb.plugins.MessageDrivenInstanceInterceptor.invoke(MessageDrivenInstanceInterceptor.java:62)
    at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:84)
    at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:315)
    at org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:148)
    at org.jboss.ejb.plugins.RunAsSecurityInterceptor.invoke(RunAsSecurityInterceptor.java:90)
    at org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:191)
    at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invoke(ProxyFactoryFinderInterceptor.java:122)
    at org.jboss.ejb.MessageDrivenContainer.internalInvoke(MessageDrivenContainer.java:372)
    at org.jboss.ejb.Container.invoke(Container.java:723)
    at org.jboss.ejb.plugins.jms.JMSContainerInvoker.invoke(JMSContainerInvoker.java:914)
    at org.jboss.ejb.plugins.jms.JMSContainerInvoker$MessageListenerImpl.onMessage(JMSContainerInvoker.java:1208)
    at org.jboss.jms.asf.StdServerSession.onMessage(StdServerSession.java:276)
    at org.jboss.mq.SpyMessageConsumer.sessionConsumerProcessMessage(SpyMessageConsumer.java:871)
    at org.jboss.mq.SpyMessageConsumer.addMessage(SpyMessageConsumer.java:159)
    at org.jboss.mq.SpySession.run(SpySession.java:347)
    at org.jboss.jms.asf.StdServerSession.run0(StdServerSession.java:200)
    at org.jboss.jms.asf.StdServerSession.run(StdServerSession.java:180)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:748)
    at java.lang.Thread.run(Thread.java:534)
    12:39:31,197 INFO [STDOUT] Finishing onMessageOn JBoss forum i have received this response:
    There is a packaging conflict that is resulting in the type(s) being passed into the ejb container to be seen as incompatible. This can happen when two ejb deployments are interacting via call by reference and one is redeployed and invalidates the common type system.Now i'm a newbie in EJB technology and so i don't know ho to solve the problem.... can anybody help me?
    I post my ejb-jar.xml:
    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 >
    <![CDATA[No Description.]]>
    <display-name>Generated by XDoclet</display-name>
    <enterprise-beans>
    <!-- Session Beans -->
    <!--
    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 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 markup for those beans.
    -->
    <!-- Message Driven Beans -->
    <message-driven >
    <![CDATA[<!-- begin-user-doc --> You can insert your documentation for 'BbkCmdRcvBean'.]]>
    <ejb-name>BbkCmdRcvBean</ejb-name>
    <ejb-class>com.bbk.evtmgr.ejbs.BbkCmdRcvBean</ejb-class>
    <transaction-type>Container</transaction-type>
    <acknowledge-mode>Auto-acknowledge</acknowledge-mode>
    <message-driven-destination>
    <destination-type>javax.jms.Queue</destination-type>
    </message-driven-destination>
    <security-identity>
    <run-as>
    <role-name>StaffManagementRole_0</role-name>
    </run-as>
    </security-identity>
    </message-driven>
    <!--
    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 -->
    <method-permission >
    <![CDATA[description not supported yet by ejbdoclet]]>
    <role-name>StaffManagementRole_0</role-name>
    <![CDATA[description not supported yet by ejbdoclet]]>
    <ejb-name>BbkCmdRcvBean</ejb-name>
    <method-name>*</method-name>
    </method-permission>
    <!-- transactions -->
    <!-- finder transactions -->
    <container-transaction >
    <ejb-name>BbkCmdRcvBean</ejb-name>
    <method-name>*</method-name>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    </ejb-jar>and my jboss.xml:
    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">
    <security-domain>java:/jaas/danetworkflow</security-domain>
    <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 , and <message-driven></message-driven>
    markup for those beans.
    -->
    <message-driven>
    <ejb-name>BbkCmdRcvBean</ejb-name>
    <destination-jndi-name>queue/BBkEvtMgrQueue</destination-jndi-name>
    </message-driven>
    </enterprise-beans>
    <resource-managers>
    </resource-managers> Thanks

    Hello,
    I'm also having a similar exception, but, in a totally different situation. Mine is while instantiating an
    stateless session bean through its Home interface. Now the catch is this: the client is contained
    within a WAR which contains servlet code and from within this context I'm trying to create the EJB.
    The EJB is contained within a separate EAR.
    Could this be a strange packaging requirement, that needs explicit dependency information in the
    deployment descriptors of the deplyed archives?
    I'm using JBoss 3.2.5, default configuration. Thanks for any help!
    Here is the relevant stack trace in the client:
    [cactus] Testcase: testRestart(com.mycomp.myproj.scheduler.SchedulerLifecycleTest): Caused an ERROR
    [cactus] java.rmi.ServerException: EJBException:; nested exception is:
    [cactus] javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract com.mycomp.myproj.scheduler.ejb.S
    chedulerEjb com.mycomp.myproj.scheduler.ejb.SchedulerEjbHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
    [cactus] java.lang.RuntimeException: java.rmi.ServerException: EJBException:; nested exception is:
    [cactus] javax.ejb.EJBException: Invalid invocation, check your deployment packaging, method=public abstract com.mycomp.myproj.scheduler.ejb.S
    chedulerEjb com.mycomp.myproj.scheduler.ejb.SchedulerEjbHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
    [cactus] at com.mycomp.myproj.scheduler.BaseModuleTestCase$SchedulerEjbFacadeProxy.<init>(BaseModuleTestCase.java:77)
    [cactus] at com.mycomp.myproj.scheduler.BaseModuleTestCase.initScheduler(BaseModuleTestCase.java:475)
    [cactus] at com.mycomp.myproj.scheduler.BaseModuleTestCase.setUp(BaseModuleTestCase.java:481)
    [cactus] at com.mycomp.myproj.scheduler.SchedulerLifecycleTest.setUp(SchedulerLifecycleTest.java:38)
    [cactus] at org.apache.cactus.internal.AbstractCactusTestCase.runBareServer(AbstractCactusTestCase.java:153)
    [cactus] at (...)
    This is the one in JBoss server log:
    2004-10-18 21:02:54,086 ERROR [org.jboss.ejb.plugins.LogInterceptor] EJBException:
    javax.ejb.EJBException: Invalid invocation, check your deployment packaging,
    method=public abstract com.mycomp.myproj.scheduler.ejb.SchedulerEjb com.mycomp.myproj.scheduler.ejb.SchedulerEjbHome.create() throws javax.ejb.CreateException,java.rmi.RemoteException
         at org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invokeHome(StatelessSessionContainer.java:632)
         at org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invokeHome(CachedConnectionInterceptor.java:205)
         at org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invokeHome(StatelessSessionInstanceInterceptor.java:51)
         at org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:88)
         at org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:315)
         at org.jboss.ejb.plugins.TxInterceptorCMT.invokeHome(TxInterceptorCMT.java:128)
         at org.jboss.ejb.plugins.SecurityInterceptor.invokeHome(SecurityInterceptor.java:94)
         at org.jboss.ejb.plugins.LogInterceptor.invokeHome(LogInterceptor.java:120)
         at org.jboss.ejb.plugins.ProxyFactoryFinderInterceptor.invokeHome(ProxyFactoryFinderInterceptor.java:93)
         at org.jboss.ejb.StatelessSessionContainer.internalInvokeHome(StatelessSessionContainer.java:319)
         at org.jboss.ejb.Container.invoke(Container.java:743)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
         at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
         at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
         at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
         at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
         at org.jboss.invocation.local.LocalInvoker.invoke(LocalInvoker.java:97)
         at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:90)
         at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46)
         at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:53)
         at org.jboss.proxy.ejb.HomeInterceptor.invoke(HomeInterceptor.java:173)
         at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:85)
         at $Proxy49.create(Unknown Source)
         at com.mycomp.myproj.scheduler.BaseModuleTestCase$SchedulerEjbFacadeProxy.<init>(BaseModuleTestCase.java:75)
         at com.mycomp.myproj.scheduler.BaseModuleTestCase.initScheduler(BaseModuleTestCase.java:475)
         at com.mycomp.myproj.scheduler.BaseModuleTestCase.setUp(BaseModuleTestCase.java:481)
         at com.mycomp.myproj.scheduler.CreateScheduleTest.setUp(CreateScheduleTest.java:81)
         at junit.framework.TestCase.runBare(TestCase.java:125)
         at org.apache.cactus.internal.AbstractCactusTestCase.runBareServer(AbstractCactusTestCase.java:153)
         at org.apache.cactus.internal.server.AbstractWebTestCaller.doTest(AbstractWebTestCaller.java:119)

  • "Error in creating error file" message

    Tried to install Palm Desktop 6.2 that came with my new Centro and at the end the message "Error in creating error file" keeps popping up numerous times.
    What can be the reason?
    Post relates to: Centro (AT&T)

    I was also experiencing the "error in creating error file" message multiple times during installation on my XP Pro system. I googled the error message and found this post plus a reference to a problem with riched32.dll) in in another post. But that didn't help. After quite a bit of troubleshooting on my own, I found the problem. I had moved the "My Documents" folder under "D:\users" to simplify my backups. Apparently the Palm installer needs the "My Documents" folder on the C: drive. I temporarily put "My Documents" back into it's default location under "C:\Documents and Settings" and the Palm installer ran just fine with no error message. I then moved everything back under "D:\users" including the folder "Palm OS Desktop", that was created by the Palm installer and everything has been working fine since.
    Thought I'd share this with others, as it's not an obvious fix.
    Post relates to: Palm TX

  • Creation of logical index terminated. Join index create error.

    Hi to all,
    After running for a few weeks fine. See my earlier message Delete and recreate BWA index of a cube in process chain.
    Chains are "terminating" again. I get the following error messages:
    Creation of logical index '[Technical Cube_name]' terminated. Error text:     
    Join index create error;index=bwp_[technical cube_name],location     
    =nlscli63:30203 2433     
    Creation of BIA index for InfoCube '[Technical Cube_name]' terminated during activation
    A manual deletion by the program RSDDTREX_INDEX_DELETE and a recreation in RSDDV is necessarry to get the index active.
    Has anyone a clue on beforehand what is happening or same experiences, before i put in a SAP OSS message.
    Regards,
    René

    Hi
    Firstly please ensure that no error exists for the cube when you are
    trying to create the index. You can check that in RSRV. Also you need
    to check if no change run or loading is occuring.                   
    Please also check that you are not using the backup mode mutual
    as this can cause the problem, please refer to the SAP note 1383228.
    Best Regards,
    Des Gallagher

  • Even after resets get "The backup disk image "/Volumes/FreeAgent GoFlex Drive/MacBeth (2) 1.sparsebundle" could not be created (error 22)."

    HELP!  "The backup disk image “/Volumes/FreeAgent GoFlex Drive/MacBeth (2) 1.sparsebundle” could not be created (error 22)."
    TC estimates over 750GB for full backup.
    Late 2010 MBA is connected wirelessly to
    802.11n (1st gen) TC that is connected via ethernet hub built into house to motorola router using charter.com for internet.
    I have had same problem for over 150 days and multiple reboots, restarts in proper order, firmware updates, unplugs with 5min plus gaps, bypassing the tc and using external 500gb WD mybook via usb to time capsule, replacement of the WD mybook to new 2TB Free Agent GoFlex drive, etc, etc, etc!  Note: I originally named my MBA hard drive MacBeth, but at some point months ago, it said backup already existed and system automatically created MacBeth (2), worked for a while, then stopped again, despite trying nearly daily.
    I gave up and started using Carbon Copy Clone daily for just the 128gb on internal SSD of my late 2011 11" MacBook Air, but need to get past these time capsule errors to back up the external disk!  Due to lack of space in MBA, I had long ago transferred both itunes and iphoto and all imovie/fcpx files to a 1tb external disk (WD Passport) that I keep in my bag with MBA.  It is partitioned with 150gb for cloning the MBA, and over 750gb for media/itunes/iphoto/etc.
    Also, I have endured months of "your hard drive is full" messages and system lockups, applying the solution given to me by genious bar (deleting all aol.com outboxes/recovered messages/spam/trash under library/mail/V2/Mailboxes folders, empty trash, restart....watch recovered hard drive space mysteriously shrink next couple days to zero.....repeat)
    Due to lack of space, I had not been able to do javascript and other system updates.  Yesterday, I noticed even safari bookmark bar had mysteriously emptied (not disappeared, I can hide and show the space where the bar used to be - it is just blank area with no data except for eyelass-book-topsites icons), so I transferred a few large quicktime movie files recorded with isight camera to the external disk, and freed up 20 gbs for the first time!
    This got my hopes up yesterday because after I completed all system/software updates, suddenly the bookmark bar showed up and I was able to start the time capsule backup! It took overnight preparing for backup, but finally started and progressed to 12gb of the 100gb+ needed (i guess the update where it left off months ago for the estimated 750gb for the full backup?), then I put system to sleep and took it with me (thus leaving the wireless time capsule network as I do daily fully expecting it to continue when I returned home in the evening.)  But alas, upon return, back to the "Time Machine could not complete backup, The backup disk image ".....sparsebundle" could not be created (error 22)"  Ugh!  More reboots, unplugs, 5min gaps....still Ugh!
    So the problem continues...please help!  Here are my settings:
    About this mac:
    Mac OS X V. 10.7.5
    processor 1.6 ghz intel core 2 duo, memory 4 4g 1067 MHz DDR3
    software up to date!
    Airport Utility:
    V 6.2 (620.33)
    both internet globe and TC show green dots in graphic, however internet occasionally shows yellow then goes to green, but still gets error 22.  Suddenly TC showed explanation mark and says lost connection and asked if I wanted to 'forget', gave same errors, then mysteriously went back to green, but still got error 22!.
    Internet:
    connection: connected, displays router address, 2 dns server, and domain name: charter.com
    Time Capsule:
    shows network, ip address, serial number, version 7.6.3, status: (green dot) Setup over WAN,
    wireless clients: phones, macbooks (including this MBA), printers, wii
    If you need other settings to help me, just ask!  I have read a few of the other solutions in forums, but trying not to erase disks, especially since it worked for a minute yesterday!

    To step sideways.. why not just use CCC to backup the 750GB of the hard disk to the TC.
    You need to understand this is going to be a super slow process and each time you stop it.. it is going to give issues. CCC will at least do a more reliable job of it than TM.
    I would also say.. this is going to be tough without ethernet. You need to understand the backup speed over wireless can be 10GB per hour.. that makes 75hrs to backup the disk. The air needs to run non-stop doing that.. without you touching it.
    I would get another external drive.. plug that into the MBA and if you really want to use TM.. make a backup one to the other.. but CCC will again do a better job and work faster. It will be much faster than over wireless.
    I am trying to think of ways around the issue of just speed.. but plainly you have lots of other issues.. being the simple unreliablity of the TM to identify the TC.
    If you want to make this work.. give yourself a weekend.
    Load 5.6 utility into the MBA..
    http://support.apple.com/kb/DL1482
    Take the TC back to 7.5.2 firmware. It is a really old version and latest firmware does it no good at all.
    Wipe its hard disk using erase and start over.. give it new names for everything.
    So call it TC
    Set the wireless to 5ghz and name it TC5ghz
    Use WPA2 Personal security. Use a 10 character passkey non dictionary.
    At 5ghz you should get 2x the speed as at 2.4ghz but the air will need to be right next to the TC..
    (alternatively buy the USB to ethernet cord apple have available.. it is $30 in the apple store and do it over pseudoethernet. http://store.apple.com/au/product/MC704ZM/A/apple-usb-ethernet-adapter That is the wrong store but you get the idea. )
    WIth a fully clean system.. now do a full reset of TM.
    See A4 http://pondini.org/TM/Troubleshooting.html
    Direct the TM to back to the TC.. and make sure the external hard disk is not excluded.
    Of course the TC has to be 1TB version to fit that much data.. goes without saying right.
    Even over pseudo - ethernet this will take many hours.. and you basically have to leave it to work.. do not touch it.. make sure the MBA cannot sleep though.. turn off sleep.. beforehand.

  • The backup disk image "/Volumes/FW1000HD/MacBkPro.sparsebundle" could not be created (error 1).

    I added an 1TB external usb hard disk to my time capsule as the existing 1TB hard disk is nearly full (less than 12 GB left on time capslule hard disk).  Initially, I connected external hard disk to my MacBookPro (late 2009 Intel machine) and erased most of the data on that disk. I added the disk to time machine's backup disks thru the time machine window in system preferences. Now I supposedly have both hard disks, the one in the time capsule and the new usb hard disk, available for backup. Time Machine immediately backed up my system, which consists of my MacBookPro hard disk (about 96.8 GB) and another external usb hard disk which contains about 500 GB of data, on the new extenal hard disk.Time Machine did not attempt to create a new sparsebundle at that time on my new external backup disk.  This backup was done while the new backup hard disk and the data disk were both connected to the MacBookPro and the Time Capsule was directly connected by ethernet cable to the MacBookPro. I then disconnected the two hard disks from the MacBookPro and reconnected them both via usb to the Time Capsule. Now, hopefully, the external usb backup hard disk can be written to via wi-fi thru the usb connection thru the Time Capsule? I successfully use the data disk (which contains my full iTunes Library) from the Time Capsule all of the time.
    Time Machine has continued to backup small backups of a few MB to a few hundred MB to the  Time Capsule hard disk. Time Machine has attempted at least twice that I know of to set up a sparsebundle on the new external backup hard disk, but it has failed both times with the following message:
    The backup disk image “/Volumes/FW1000HD/MacBkPro.sparsebundle” could not be created (error 1).
    Before the two attempts that I witnessed to create the sparsebundle on the new backup drive, I got the following message:
    The identity of the backup disk “FW1000HD” has changed since the previous backup. 
    I did not change the identity of the FW1000HD, but it originally was connected directly to the MacBookPro when it was backed up. Could this be the problem? And if so, how do I fix this, so I can use this hard disk for back up from the wi-fi connection to Time Capsule?
    Gary Olson

    I'm not sure this is at the root of your problems, but Time Machine manages backups to a local disk differently than to a network disk.  The Time Machine backup written to the disk while it was connected locally can't be used for network backups.

  • Sparsebundle could not be created (error 45)

    I just bought my first ever Mac a little over 30 days ago and also purchased a 1TB Seagate FreeAgent GoFlex Home network storage system. I immediately installed the GoFlex software that included a full integration into Time Machine. This worked perfectly until about 4 days ago when all of a sudden it stopped backing up. I'm getting an error that reads: Time Machine could not complete the backup "...sparsebundle could not be created (error 45)".
    I can still access the drive outside of the TM program (although not the ATM folder), so the drive itself perfectly installed and connected. I tried rebooting computer and hard drive; that didn't work. I tried re-selecting the drive from within TM; that didn't work either. I'm not really sure what to do...and am pretty pi$$ed at all those "I'm a Mac vs. I'm a PC" commercials right now because this is the same kinda stuff that got me to leave the Windows based systems in the first place. UGH...so WHY is my $4,000 Mac supposed to be any better that an equivelent $2,500 PC?????? Any suggestions on a fix would be greatly appreciated.

    +I'm running 10.6.7, last I checked that was later then 10.5.6.+
    Try reading a little more carefully. The server has to be a Time Capsule or a Mac running 10.5.6 or later, not the client. Your NAS is neither, so your configuration is unsupported, and predictably, it doesn't work.
    +Mac lends their name and brand to the Seagate product, so I must therefore assume your comments are are ill-informed.+
    Apple has nothing to do with the Seagate product. Seagate, not Apple, claims that it's compatible with Time Machine, and Seagate, not Apple, is responsible for that claim. If you think the claim is misleading, you have a point, and if you can't get satisfaction from Seagate I suggest you consult a lawyer.
    For the benefit of anyone finding this topic, the Seagate NAS is *not safe to use with Time Machine*.

  • Crawler create error

    crawler create error
    help me~~
    ======================================================
    2315     portal.doostg01.Administrator     8-1-2007     15:22:06.539     Debug     OpenKernel.OpenHttp.Network     .NET #293     
    com.plumtree.openkernel.impl.openhttp.core.network.PTSocketSelector     Check read count 0.
    2316     portal.doostg01.Administrator     8-1-2007     15:22:06.539     Debug     OpenKernel.OpenHttp.Core     .NET #7749     
    com.plumtree.openkernel.impl.openhttp.core.PTRequestWaiter     WaitForRequests() - [http://doostg01.corp.doosan.com:8080/DSDBCWS/services/SciProviderSoapBinding] - [-1] ms
    2317     portal.doostg01.Administrator     8-1-2007     15:22:06.539     Warning     WebService     .NET #7749     
    com.plumtree.server.impl.webservice.PTWebService     SOAP call failed, an internal error occured on the remote server.
    Attempting to parse the SOAP fault for detailed error info. Web Service='???? Infospace Bulletins ?? CWS',
    SOAP Action='urn:plumtree-com:XUIService.GetPageContent', URL='http://doostg01.corp.doosan.com:8080/DSDBCWS/services/SciProviderSoapBinding'
    2318     portal.doostg01.Administrator     8-1-2007     15:22:06.539     Debug     OpenKernel.OpenHttp.Network     .NET #293     
    com.plumtree.openkernel.impl.openhttp.core.network.PTSocketSelector     Check connect count 0.
    2319     portal.doostg01.Administrator     8-1-2007     15:22:06.539     Debug     OpenKernel.OpenHttp.Network     .NET #293     
    com.plumtree.openkernel.impl.openhttp.core.network.PTSocketSelector     Check write count 0.
    2320     portal.doostg01.Administrator     8-1-2007     15:22:06.539     Warning     WebService     .NET #7749     
    com.plumtree.server.impl.soap.SOAPEnvelope     Error in function SOAPEnvelope.Restore (arrayText == System.Byte[]):
    SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    com.plumtree.server.impl.soap.OpenSoapException: SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    com.plumtree.server.impl.soap.OpenSoapException: SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    at com.plumtree.server.impl.soap.SOAPParser.LoadInternal() in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPParser.cs:line 628
    at com.plumtree.server.impl.soap.SOAPParser.LoadBinary(Byte[] pXML) in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPParser.cs:line 546
    at com.plumtree.server.impl.soap.SOAPEnvelope.Restore(Byte[] arrayText) in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPEnvelope.cs:line 58
    at com.plumtree.server.impl.webservice.PTWebService.Invoke(ISOAPEnvelope pEnv, String sURL, String sAction, IOKHttpSession pHttpSession, Int32 nTimeoutInMS) in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\webservice\PTWebService.cs:line 1137
    at com.plumtree.server.impl.webservice.XUIService.GetContent(Int32 nPageNumber, IXPPropertyBag pPBagSettings, Object vsaXSLParameters) in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\webservice\XUIService.cs:line 359
    at com.plumtree.portalpages.admin.editors.xui.XUIHelperModel.GetHTMLForXUIPage(Int32 _nXUIPageID) in e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\admin\editors\xui\XUIHelperModel.cs:line 162
    at com.plumtree.portalpages.admin.editors.xui.XUIView.Display(Int32 _nXUIPageID) in e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\admin\editors\xui\XUIView.cs:line 96
    at com.plumtree.portalpages.ext.providers.soap.crawler.MainDP.PageDisplay() in e:\buildroot\Release\portalui\6.0.x\ptwebui\provUISOAP\dotnet\prod\src\com\plumtree\portalpages\ext\providers\soap\crawler\MainDP.cs:line 58
    at com.plumtree.uiinfrastructure.form.AFormDP.DisplayForm() in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\form\AFormDP.cs:line 717
    at com.plumtree.uiinfrastructure.form.AFormDP.Display(IWebData pageData) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\form\AFormDP.cs:line 487
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleDisplayPage(Redirect myRedirect, RequestData tempData) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 1700
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleRequest(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 515
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.DoService(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 167
    at com.plumtree.uiinfrastructure.web.XPPage.Service(HttpRequest httpRequest, HttpResponse httpResponse, HttpSessionState httpSession, HttpApplicationState httpApplication) in e:\buildroot\Release\httpmemorymanagement\2.0.x\dotNET\src\com\plumtree\uiinfrastructure\web\XPPage.cs:line 82
    at com.plumtree.portaluiinfrastructure.activityspace.PlumHandler.ProcessRequest(HttpContext context) in e:\buildroot\Release\portalui\6.0.x\ptwebui\portal\dotnet\prod\src\web\PlumHandler.cs:line 37
    at System.Web.CallHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    at System.Web.HttpApplication.ResumeSteps(Exception error)
    at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)
    at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
    at System.Web.HttpRuntime.ProcessRequest(HttpWorkerRequest wr)
    at System.Web.Hosting.ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)
    2321     portal.doostg01.Administrator     8-1-2007     15:22:06.539     
    Warning     XUI     .NET #7749     com.plumtree.server.impl.webservice.XUIServiceManager     
    Error in function XUIService.GetContent (nPageNumber == 1, pPBagSettings ==
    <?xml version="1.0" encoding="ucs-2"?><PTBAG V="1.1" xml:space="preserve" />,
    vsaXSLParameters == [ ['gp_sRelativeImageServerBaseURL'],
    ['http://doostg01.corp.doosan.com/imageserver/'] ]):
    Error in function SOAPEnvelope.Restore (arrayText == System.Byte[]):
    SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    com.plumtree.server.impl.soap.OpenSoapException:
    Error in function SOAPEnvelope.Restore (arrayText == System.Byte[]): SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    com.plumtree.server.impl.soap.OpenSoapException:
    Error in function SOAPEnvelope.Restore (arrayText == System.Byte[]): SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    at com.plumtree.openfoundation.util.XPException.GetInstance(String strErrorMsg, Exception e)
    at com.plumtree.server.impl.soap.SOAPEnvelope.Restore(Byte[] arrayText) in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPEnvelope.cs:line 66
    at com.plumtree.server.impl.webservice.PTWebService.Invoke(ISOAPEnvelope pEnv, String sURL, String sAction,
    IOKHttpSession pHttpSession, Int32 nTimeoutInMS) in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\webservice\PTWebService.cs:line 1137
    at com.plumtree.server.impl.webservice.XUIService.GetContent(Int32 nPageNumber, IXPPropertyBag pPBagSettings, Object vsaXSLParameters) in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\webservice\XUIService.cs:line 359
    at com.plumtree.portalpages.admin.editors.xui.XUIHelperModel.GetHTMLForXUIPage(Int32 _nXUIPageID) in e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\admin\editors\xui\XUIHelperModel.cs:line 162
    at com.plumtree.portalpages.admin.editors.xui.XUIView.Display(Int32 _nXUIPageID) in e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\admin\editors\xui\XUIView.cs:line 96
    at com.plumtree.portalpages.ext.providers.soap.crawler.MainDP.PageDisplay() in e:\buildroot\Release\portalui\6.0.x\ptwebui\provUISOAP\dotnet\prod\src\com\plumtree\portalpages\ext\providers\soap\crawler\MainDP.cs:line 58
    at com.plumtree.uiinfrastructure.form.AFormDP.DisplayForm() in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\form\AFormDP.cs:line 717
    at com.plumtree.uiinfrastructure.form.AFormDP.Display(IWebData pageData) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\form\AFormDP.cs:line 487
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleDisplayPage(Redirect myRedirect, RequestData tempData) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 1700
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleRequest(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 515
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.DoService(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 167
    at com.plumtree.uiinfrastructure.web.XPPage.Service(HttpRequest httpRequest, HttpResponse httpResponse, HttpSessionState httpSession, HttpApplicationState httpApplication) in e:\buildroot\Release\httpmemorymanagement\2.0.x\dotNET\src\com\plumtree\uiinfrastructure\web\XPPage.cs:line 82
    at com.plumtree.portaluiinfrastructure.activityspace.PlumHandler.ProcessRequest(HttpContext context) in e:\buildroot\Release\portalui\6.0.x\ptwebui\portal\dotnet\prod\src\web\PlumHandler.cs:line 37
    at System.Web.CallHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    at System.Web.HttpApplication.ResumeSteps(Exception error)
    at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)
    at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
    at System.Web.HttpRuntime.ProcessRequest(HttpWorkerRequest wr)
    at System.Web.Hosting.ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)
    Caused by: com.plumtree.server.impl.soap.OpenSoapException:
    SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    at com.plumtree.server.impl.soap.SOAPParser.LoadInternal() in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPParser.cs:line 628
    at com.plumtree.server.impl.soap.SOAPParser.LoadBinary(Byte[] pXML) in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPParser.cs:line 546
    at com.plumtree.server.impl.soap.SOAPEnvelope.Restore(Byte[] arrayText) in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPEnvelope.cs:line 58
    ... 19 more
    2322     portal.doostg01.Administrator     8-1-2007     15:22:06.539     
    Error     Portal_Admin     .NET #7749     
    com.plumtree.portalpages.admin.editors.xui.XUIView     
    XUIView::Display The following error occured when trying to display the HTML: Error in function XUIService.GetContent (nPageNumber == 1, pPBagSettings == <?xml version="1.0" encoding="ucs-2"?><PTBAG V="1.1" xml:space="preserve" />, vsaXSLParameters == [ ['gp_sRelativeImageServerBaseURL'], ['http://doostg01.corp.doosan.com/imageserver/'] ]): Error in function SOAPEnvelope.Restore (arrayText == System.Byte[]): SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    com.plumtree.server.impl.soap.OpenSoapException:
    Error in function XUIService.GetContent (nPageNumber == 1, pPBagSettings ==
    <?xml version="1.0" encoding="ucs-2"?><PTBAG V="1.1" xml:space="preserve" />,
    vsaXSLParameters == [ ['gp_sRelativeImageServerBaseURL'], ['http://doostg01.corp.doosan.com/imageserver/'] ]):
    Error in function SOAPEnvelope.Restore (arrayText == System.Byte[]): SOAP fault:
    faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    com.plumtree.server.impl.soap.OpenSoapException: Error in function XUIService.GetContent
    (nPageNumber == 1, pPBagSettings ==
    <?xml version="1.0" encoding="ucs-2"?>
    <PTBAG V="1.1" xml:space="preserve" />, vsaXSLParameters == [ ['gp_sRelativeImageServerBaseURL'],
    ['http://doostg01.corp.doosan.com/imageserver/'] ]):
    Error in function SOAPEnvelope.Restore (arrayText == System.Byte[]):
    SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    at com.plumtree.openfoundation.util.XPException.GetInstance(String strErrorMsg, Exception e)
    at com.plumtree.server.impl.webservice.XUIService.GetContent(Int32 nPageNumber, IXPPropertyBag pPBagSettings, Object vsaXSLParameters) in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\webservice\XUIService.cs:line 382
    at com.plumtree.portalpages.admin.editors.xui.XUIHelperModel.GetHTMLForXUIPage(Int32 _nXUIPageID) in e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\admin\editors\xui\XUIHelperModel.cs:line 162
    at com.plumtree.portalpages.admin.editors.xui.XUIView.Display(Int32 _nXUIPageID) in e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\admin\editors\xui\XUIView.cs:line 96
    at com.plumtree.portalpages.ext.providers.soap.crawler.MainDP.PageDisplay() in e:\buildroot\Release\portalui\6.0.x\ptwebui\provUISOAP\dotnet\prod\src\com\plumtree\portalpages\ext\providers\soap\crawler\MainDP.cs:line 58
    at com.plumtree.uiinfrastructure.form.AFormDP.DisplayForm() in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\form\AFormDP.cs:line 717
    at com.plumtree.uiinfrastructure.form.AFormDP.Display(IWebData pageData) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\form\AFormDP.cs:line 487
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleDisplayPage(Redirect myRedirect, RequestData tempData) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 1700
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleRequest(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 515
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.DoService(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 167
    at com.plumtree.uiinfrastructure.web.XPPage.Service(HttpRequest httpRequest, HttpResponse httpResponse, HttpSessionState httpSession, HttpApplicationState httpApplication) in e:\buildroot\Release\httpmemorymanagement\2.0.x\dotNET\src\com\plumtree\uiinfrastructure\web\XPPage.cs:line 82
    at com.plumtree.portaluiinfrastructure.activityspace.PlumHandler.ProcessRequest(HttpContext context) in e:\buildroot\Release\portalui\6.0.x\ptwebui\portal\dotnet\prod\src\web\PlumHandler.cs:line 37
    at System.Web.CallHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    at System.Web.HttpApplication.ResumeSteps(Exception error)
    at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)
    at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
    at System.Web.HttpRuntime.ProcessRequest(HttpWorkerRequest wr)
    at System.Web.Hosting.ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)
    Caused by: com.plumtree.server.impl.soap.OpenSoapException:
    Error in function SOAPEnvelope.Restore (arrayText == System.Byte[]):
    SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    at com.plumtree.openfoundation.util.XPException.GetInstance(String strErrorMsg, Exception e)
    at com.plumtree.server.impl.soap.SOAPEnvelope.Restore(Byte[] arrayText) in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPEnvelope.cs:line 66
    at com.plumtree.server.impl.webservice.PTWebService.Invoke(ISOAPEnvelope pEnv, String sURL, String sAction, IOKHttpSession pHttpSession, Int32 nTimeoutInMS) in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\webservice\PTWebService.cs:line 1137
    at com.plumtree.server.impl.webservice.XUIService.GetContent(Int32 nPageNumber, IXPPropertyBag pPBagSettings, Object vsaXSLParameters) in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\webservice\XUIService.cs:line 359
    ... 17 more
    Caused by: com.plumtree.server.impl.soap.OpenSoapException:
    SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    at com.plumtree.server.impl.soap.SOAPParser.LoadInternal() in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPParser.cs:line 628
    at com.plumtree.server.impl.soap.SOAPParser.LoadBinary(Byte[] pXML) in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPParser.cs:line 546
    at com.plumtree.server.impl.soap.SOAPEnvelope.Restore(Byte[] arrayText) in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPEnvelope.cs:line 58
    ... 19 more
    2323     portal.doostg01.Administrator     8-1-2007     15:22:06.539     Debug     UI_Infrastructure     
    .NET #7749     com.plumtree.uiinfrastructure.statichelpers.PersonalSettingsHelper     Entering GetPersonalSettingValue() - sSettingsName: strLanguage
    2324     portal.doostg01.Administrator     8-1-2007     15:22:06.539     Debug     UI_Infrastructure     
    .NET #7749     com.plumtree.uiinfrastructure.statichelpers.PersonalSettingsHelper     GetPersonalSettingValue() - oVal: ko
    2325     portal.doostg01.Administrator     8-1-2007     15:22:06.554     Error     UI_Infrastructure     
    .NET #7749     com.plumtree.uiinfrastructure.form.AFormDP     Display: The following error occured when trying to display the HTML:
    com.plumtree.openfoundation.util.XPException: HTML? ??? ? ????.
    com.plumtree.openfoundation.util.XPException: HTML? ??? ? ????.
    at com.plumtree.portalpages.admin.editors.xui.XUIView.Display(Int32 _nXUIPageID) in
    e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\admin\editors\xui\XUIView.cs:line 106
    at com.plumtree.portalpages.ext.providers.soap.crawler.MainDP.PageDisplay() in e:\buildroot\Release\portalui\6.0.x\ptwebui\provUISOAP\dotnet\prod\src\com\plumtree\portalpages\ext\providers\soap\crawler\MainDP.cs:line 58
    at com.plumtree.uiinfrastructure.form.AFormDP.DisplayForm() in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\form\AFormDP.cs:line 717
    at com.plumtree.uiinfrastructure.form.AFormDP.Display(IWebData pageData) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\form\AFormDP.cs:line 487
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleDisplayPage(Redirect myRedirect, RequestData tempData) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 1700
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleRequest(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 515
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.DoService(IXPRequest request, IXPResponse response, ISessionManager session, IApplication application) in e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 167
    at com.plumtree.uiinfrastructure.web.XPPage.Service(HttpRequest httpRequest, HttpResponse httpResponse, HttpSessionState httpSession, HttpApplicationState httpApplication) in e:\buildroot\Release\httpmemorymanagement\2.0.x\dotNET\src\com\plumtree\uiinfrastructure\web\XPPage.cs:line 82
    at com.plumtree.portaluiinfrastructure.activityspace.PlumHandler.ProcessRequest(HttpContext context) in e:\buildroot\Release\portalui\6.0.x\ptwebui\portal\dotnet\prod\src\web\PlumHandler.cs:line 37
    at System.Web.CallHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    at System.Web.HttpApplication.ResumeSteps(Exception error)
    at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)
    at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
    at System.Web.HttpRuntime.ProcessRequest(HttpWorkerRequest wr)
    at System.Web.Hosting.ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)
    Caused by: com.plumtree.server.impl.soap.OpenSoapException:
    Error in function XUIService.GetContent (nPageNumber == 1, pPBagSettings ==
    <?xml version="1.0" encoding="ucs-2"?><PTBAG V="1.1" xml:space="preserve" />,
    vsaXSLParameters == [ ['gp_sRelativeImageServerBaseURL'], ['http://doostg01.corp.doosan.com/imageserver/'] ]):
    Error in function SOAPEnvelope.Restore (arrayText == System.Byte[]): SOAP fault:
    faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    at com.plumtree.openfoundation.util.XPException.GetInstance(String strErrorMsg, Exception e)
    at com.plumtree.server.impl.webservice.XUIService.GetContent(Int32 nPageNumber, IXPPropertyBag pPBagSettings,
    Object vsaXSLParameters) in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\webservice\XUIService.cs:line 382
    at com.plumtree.portalpages.admin.editors.xui.XUIHelperModel.GetHTMLForXUIPage(Int32 _nXUIPageID)
    in e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\admin\editors\xui\XUIHelperModel.cs:line 162
    at com.plumtree.portalpages.admin.editors.xui.XUIView.Display(Int32 _nXUIPageID)
    in e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\admin\editors\xui\XUIView.cs:line 96
    ... 15 more
    Caused by: com.plumtree.server.impl.soap.OpenSoapException:
    Error in function SOAPEnvelope.Restore (arrayText == System.Byte[]):
    SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    at com.plumtree.openfoundation.util.XPException.GetInstance(String strErrorMsg, Exception e)
    at com.plumtree.server.impl.soap.SOAPEnvelope.Restore(Byte[] arrayText) in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPEnvelope.cs:line 66
    at com.plumtree.server.impl.webservice.PTWebService.Invoke(ISOAPEnvelope pEnv, String sURL, String sAction,
    IOKHttpSession pHttpSession, Int32 nTimeoutInMS) in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\webservice\PTWebService.cs:line 1137
    at com.plumtree.server.impl.webservice.XUIService.GetContent(Int32 nPageNumber,
    IXPPropertyBag pPBagSettings, Object vsaXSLParameters) in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\webservice\XUIService.cs:line 359
    ... 17 more
    Caused by: com.plumtree.server.impl.soap.OpenSoapException: SOAP fault:
    faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    at com.plumtree.server.impl.soap.SOAPParser.LoadInternal() in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPParser.cs:line 628
    at com.plumtree.server.impl.soap.SOAPParser.LoadBinary(Byte[] pXML) in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPParser.cs:line 546
    at com.plumtree.server.impl.soap.SOAPEnvelope.Restore(Byte[] arrayText) in
    e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\soap\SOAPEnvelope.cs:line 58
    ... 19 more
    2326     portal.doostg01.Administrator     8-1-2007     15:22:06.554     
    Error     UI_Infrastructure     .NET #7749     com.plumtree.uiinfrastructure.interpreter.Interpreter     Unable to process request.
    com.plumtree.openfoundation.util.XPException: HTML? ??? ? ????.
    com.plumtree.openfoundation.util.XPException: HTML? ??? ? ????.
    at com.plumtree.portalpages.admin.editors.xui.XUIView.Display(Int32 _nXUIPageID) in
    e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\admin\editors\xui\XUIView.cs:line 106
    at com.plumtree.portalpages.ext.providers.soap.crawler.MainDP.PageDisplay() in
    e:\buildroot\Release\portalui\6.0.x\ptwebui\provUISOAP\dotnet\prod\src\com\plumtree\portalpages\ext\providers\soap\crawler\MainDP.cs:line 58
    at com.plumtree.uiinfrastructure.form.AFormDP.DisplayForm() in
    e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\form\AFormDP.cs:line 717
    at com.plumtree.uiinfrastructure.form.AFormDP.Display(IWebData pageData) in
    e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\form\AFormDP.cs:line 487
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleDisplayPage(Redirect myRedirect, RequestData tempData) in
    e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 1700
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.HandleRequest
    (IXPRequest request, IXPResponse response, ISessionManager session, IApplication application) in
    e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 515
    at com.plumtree.uiinfrastructure.interpreter.Interpreter.DoService
    (IXPRequest request, IXPResponse response, ISessionManager session, IApplication application) in
    e:\buildroot\Release\uiinfrastructure\6.0.x\dotnet\prod\src\com\plumtree\uiinfrastructure\interpreter\Interpreter.cs:line 167
    at com.plumtree.uiinfrastructure.web.XPPage.Service(HttpRequest httpRequest, HttpResponse httpResponse,
    HttpSessionState httpSession, HttpApplicationState httpApplication) in
    e:\buildroot\Release\httpmemorymanagement\2.0.x\dotNET\src\com\plumtree\uiinfrastructure\web\XPPage.cs:line 82
    at com.plumtree.portaluiinfrastructure.activityspace.PlumHandler.ProcessRequest(HttpContext context) in
    e:\buildroot\Release\portalui\6.0.x\ptwebui\portal\dotnet\prod\src\web\PlumHandler.cs:line 37
    at System.Web.CallHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
    at System.Web.HttpApplication.ResumeSteps(Exception error)
    at System.Web.HttpApplication.System.Web.IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData)
    at System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr)
    at System.Web.HttpRuntime.ProcessRequest(HttpWorkerRequest wr)
    at System.Web.Hosting.ISAPIRuntime.ProcessRequest(IntPtr ecb, Int32 iWRType)
    Caused by: com.plumtree.server.impl.soap.OpenSoapException:
    Error in function XUIService.GetContent (nPageNumber == 1, pPBagSettings ==
    <?xml version="1.0" encoding="ucs-2"?><PTBAG V="1.1" xml:space="preserve" />,
    vsaXSLParameters == [ ['gp_sRelativeImageServerBaseURL'], ['http://doostg01.corp.doosan.com/imageserver/'] ]):
    Error in function SOAPEnvelope.Restore (arrayText == System.Byte[]): SOAP fault: faultcode='soapenv:Server.userException' faultstring='java.rmi.RemoteException'
    at com.plumtree.openfoundation.util.XPException.GetInstance(String strErrorMsg, Exception e)
    at com.plumtree.server.impl.webservice.XUIService.GetContent(Int32 nPageNumber, IXPPropertyBag pPBagSettings, Object vsaXSLParameters) in e:\buildroot\Release\portalserver\6.0.x\portalobjects\build\x86\src\dotnet\com\plumtree\server\impl\webservice\XUIService.cs:line 382
    at com.plumtree.portalpages.admin.editors.xui.XUIHelperModel.GetHTMLForXUIPage(Int32 _nXUIPageID) in e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\admin\editors\xui\XUIHelperModel.cs:line 162
    at com.plumtree.portalpages.admin.editors.xui.XUIView.Display(Int32 _nXUIPageID) in e:\buildroot\Release\portalui\6.0.x\ptwebui\portalpages\dotnet\prod\src\com\plumtree\portalpages\admin\editors\xui\XUIView.cs:line 96
    ..

    Just a wild guess: this is SR1 aka SP9 of KMC without any patches. If that's the case then please install SP9 patch3.

Maybe you are looking for