A RunTime exception in JMS

          I am using weblogic server 6.0 service pack 2.
          The problem is in runtime exception in JMS.
          Here is an exception I am getting:
          java.lang.RuntimeException: Client possibly malfunctioning as RuntimeException thrown
          from the onMessage routine of the client
          at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1938)
          at weblogic.jms.client.JMSSession.run(JMSSession.java:881)
          at weblogic.jms.backend.BEServerSession.execute(BEServerSession.java:83)
          at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
          at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          This occurs in the line
          >bsender = bsession.createSender(bqueue);
          of the class, in the onMessage method.
          What is the reason for the exception? What can be done to fix it? I just need to
          process several messages in parallel.
          I have a startup class RateQuoteJMSResponse, that calls JMS.
          This happens only when I have a message listeners pool. When I did not use the pool,
          it worked OK. But I want to allow processing messages in parallel, and as I understand,
          there is no other option except using ServerSessionPool.
          When I tried to do that just with QueueReceiver, it worked OK:
                    qreceiver = qsession.createReceiver (queue);
                    qreceiver.setMessageListener (this);
                    qcon.start();
          However, that way messages were not processed in parallel.
          Here is my code:
          package com.bbb.object.jms;
          import java.io.*;
          import java.util.*;
          import javax.jts.*;
          import javax.naming.*;
          import javax.jms.*;
          import com.bbb.object.*;
          import com.bbb.object.RateQuote.*;
          import org.apache.crimson.tree.*;
          import org.w3c.dom.*;
          import weblogic.jms.extensions.JMSHelper;
          import weblogic.jms.ServerSessionPoolFactory;
          public class RateQuoteJMSResponse implements MessageListener
               private final static String JNDI_FACTORY="weblogic.jndi.WLInitialContextFactory";
               private final static String JMS_FACTORY="weblogic.closs.jms.QueueConnectionFactory";
               private final static String SESSION_POOL_FACTORY="weblogic.jms.ServerSessionPoolFactory:ClossJMSServer";
               private final static int ALL_OCCUPIED = -1;
               private static REServer servers [];
               private static REServersThrottle throttle;
               private QueueConnectionFactory qconFactory;
               private QueueConnection qcon;
               private QueueSession qsession;
               private QueueSession bsession;
               //private QueueReceiver qreceiver;
               private QueueSender bsender = null;
               private Queue queue;
               private Queue bqueue;
               private ServerSessionPoolFactory sessionPoolFactory;
               private ServerSessionPool sessionPool;
               private ConnectionConsumer consumer;
               private int findUnoccupiedServer ()
                    for (int ii = 0; ii < servers.length; ii++)
                         if (servers[ii].isActive () && !servers [ii].isOccupied ())
                              return ii;
                    return ALL_OCCUPIED;
               private synchronized void updateServers (ActiveServers activeServers)
                    for (int ii = 0; ii < servers.length; ii++)
                         boolean wasActive = servers[ii].isActive ();
                         boolean nowActive = activeServers.isAlive (servers[ii].getHostName ());
                         if (wasActive && !nowActive)
                              throttle.removeResource ();
                              Logging.debugInfoLog ("Resource removed");
                         else if (!wasActive && nowActive)
                              throttle.addResource ();
                              Logging.debugInfoLog ("Resource added");
                         servers [ii].setActive (nowActive);
               // MessageListener interface
               //public void processMessage (Message msgIn)
               public void onMessage (Message msgIn)
                    Logging.debugInfoLog ("Starting onMessage");
                    ActiveServers activeServers = null;
                    try
                         activeServers = new ActiveServers();
                    catch (Exception ignored) {}
                    Logging.debugInfoLog ("Active Servers file read");
                    updateServers (activeServers);
                    Logging.debugInfoLog ("Servers updated");
                    throttle.getResource ();
                    Logging.debugInfoLog ("Resource got");
                    try
          Logging.debugInfoLog ("0");
                    String msgTextIn;
                         ObjectMessage msgOut;
                         RateQuoteGetBase rateQuoteGet;
                         RateQuoteGetXML rateQuoteGetXML;
          Logging.debugInfoLog ("1");
                         if (msgIn == null)
          Logging.debugInfoLog ("2");
                              rateQuoteGet = new RateQuoteGetBase ("Cannot receive a rate quote back from JMS.");
                              msgTextIn = "";
                         else
          Logging.debugInfoLog ("3");
                              if (msgIn instanceof TextMessage)
                              msgTextIn = ((TextMessage)msgIn).getText();
                              else
                              msgTextIn = msgIn.toString();
          Logging.debugInfoLog ("4");
                              bqueue = (Queue) msgIn.getJMSReplyTo ();
          Logging.debugInfoLog ("8");
                              bsender = bsession.createSender(bqueue);
          Logging.debugInfoLog ("9");
                              bsender.setDeliveryMode (javax.jms.DeliveryMode.NON_PERSISTENT);
          Logging.debugInfoLog ("10");
                              Logging.debugInfoLog ("Prepareing to find unoccupied server");
                              int selectedServer = findUnoccupiedServer ();
                              Logging.debugInfoLog ("Unoccupied server found: " + selectedServer);
                              if (selectedServer == ALL_OCCUPIED)
                                   rateQuoteGet = new RateQuoteGetBase ("No nonoccupied rating engines found.");
                                   msgTextIn = "";
                              else
                                   servers [selectedServer].setOccupied ();
                                   Logging.debugInfoLog ("Set occupied: " + selectedServer);
                                   String hostname = servers [selectedServer].getHostName ();
                                   int portId = servers [selectedServer].getPortId ();
                                   rateQuoteGet = new RateQuoteGetBase (hostname, portId);
                                   rateQuoteGetXML = new RateQuoteGetXML (new RateQuoteGet (rateQuoteGet));
                                   rateQuoteGetXML.prepareXML ();
                                   servers [selectedServer].setUnOccupied ();
                                   Logging.debugInfoLog ("Set unoccupied: " + selectedServer);
                                   if (!rateQuoteGetXML.hasErrorOccured ())
                                        rateQuoteGet.sendXML (msgTextIn);
                                        rateQuoteGet.prepareXML ();
                         Logging.debugInfoLog("Message Received: " + msgTextIn );
                         msgOut = bsession.createObjectMessage ();
                         msgOut.setObject (rateQuoteGet);
                         bsender.send (msgOut, javax.jms.DeliveryMode.NON_PERSISTENT,
                                        javax.jms.Message.DEFAULT_PRIORITY, 18000000L);
                    Logging.debugInfoLog("Message Sent Back: " + rateQuoteGet.getXML());
                         Logging.debugInfoLog ("End of massage sent back");
                         rateQuoteGet.debugPrint ();
                    catch (JMSException jmse)
          Logging.debugInfoLog ("5");
                    jmse.printStackTrace();
          Logging.debugInfoLog ("6");
                    try
                         if (bsender != null)
                              bsender.close ();
                    catch (JMSException ignored) {}
                    finally
                         bsender = null;
          Logging.debugInfoLog ("7");
                    try
                         throttle.freeResource ();
                         Logging.debugInfoLog ("Resource freed");
                         Logging.debugInfoLog ("Finishing onMessage");
                    catch (Exception ignored) {}
          * Create all the necessary objects for receiving
          * messages from a JMS queue.
               public void init(Context ctx, String queueName, int countListeners) throws NamingException,
          JMSException
                    //Logging.debugInfoLog ("Class name: " + this.getClass().getName());
                    qconFactory = (QueueConnectionFactory) ctx.lookup(JMS_FACTORY);
                    qcon = qconFactory.createQueueConnection();
                    qsession = qcon.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
                    bsession = qcon.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
                    try
                    queue = (Queue) ctx.lookup(queueName);
                    catch (NamingException ne)
                         ne.printStackTrace ();
                         //queue = (Queue) ctx.lookup (queueName);
                    //queue = qsession.createQueue (queueName);
                         //queue = JMSHelper.createPermanentQueueAsync(ctx, "closs", "ClossJMSServer",
          queueName, JNDI_FACTORY);
                         //JMSHelper.createPermanentQueueAsync(ctx, "ClossJMSServer", queueName, JNDI_FACTORY);
                         //queue = qsession.createQueue("ClossJMSServer/" + queueName);
                         //queue = createPermanentQueueAsync(ctx, jmsServerName, queueName, jndiName);
                    //ctx.bind(queueName, queue);
                    //qreceiver = qsession.createReceiver (queue);
                    //qreceiver.setMessageListener (this);
                    qcon.start();
                    sessionPoolFactory = (ServerSessionPoolFactory) ctx.lookup (SESSION_POOL_FACTORY);
                    sessionPool = sessionPoolFactory.getServerSessionPool (     qcon,
                                                                      countListeners,
                                                                      false,
                                                  Session.AUTO_ACKNOWLEDGE,
                                                  this.getClass().getName());
                    ConnectionConsumer consumer = qcon.createConnectionConsumer (queue, "", sessionPool,
          3*countListeners);
          * Close JMS objects.
               public void close()
                    try
                         //if (qreceiver != null)
                         //     qreceiver.close();
                         if (consumer != null)
                              consumer.close();
                    catch (JMSException ignored){}
                    //qreceiver = null;
                    consumer = null;
                    try
                         if (qsession != null)
                              qsession.close();
                    catch (JMSException ignored){}
                    qsession = null;
                    try
                         if (bsender != null)
                              bsender.close();
                    catch (JMSException ignored){}
                    bsender = null;
                    try
                         if (bsession != null)
                              bsession.close();
                    catch (JMSException ignored){}
                    bsession = null;
                    try
                         if (qcon != null)
                              qcon.close();
                    catch (JMSException ignored){}
                    qcon = null;
          * Receive a JMS message.
               //public Message receive() throws JMSException
               //     return qreceiver.receive ();
               public static void main (String[] args) throws Exception
                    Message msg;
                    int len = args.length;
                    if (len %2 != 0 || len == 0)
                    Logging.debugInfoLog("Usage: java RateQuoteJMSResponse hostname portid hostname
          portid ...");
                    return;
                    int reCount = len/2;
                    throttle = new REServersThrottle (0);
                    servers = new REServer [reCount];
                    for (int ii = 0; ii < reCount; ii++)
                         servers [ii] = new REServer (args [2*ii], args [2*ii + 1]);
                    //Logging.debugInfoLog ("Arguments: " + args[0] + " " + args[1]);
                    InitialContext ic = getInitialContext (ClickProperties.getInitialContext());
                    RateQuoteJMSResponse qr = new RateQuoteJMSResponse ();
                    qr.init (ic, ClickProperties.getJMSQueue(), reCount);
                    Logging.debugInfoLog("JMS Rating Engine Responser Is Ready To Receive Messages.");
                    // Wait until a "quit" message has been received.
                    //synchronized (qr)
               //     while (true)
                    //          msg = qr.receive ();
                    //          Logging.debugInfoLog ("Message received");
                    //          qr.processMessage (msg);
                    //qr.close();
               private static InitialContext getInitialContext (String url) throws NamingException
                    Hashtable env = new Hashtable();
                    env.put (Context.INITIAL_CONTEXT_FACTORY, JNDI_FACTORY);
                    env.put (Context.PROVIDER_URL, url);
                    return new InitialContext(env);
          And here is the output from weblogic console:
          <May 15, 2002 11:11:57 AM EDT> <Debug> <Debug Info Log> <Active Servers file rea
          d>
          <May 15, 2002 11:11:57 AM EDT> <Debug> <Debug Info Log> <Throttle max increased
          to: 1>
          <May 15, 2002 11:11:57 AM EDT> <Debug> <Debug Info Log> <Resource added>
          <May 15, 2002 11:11:57 AM EDT> <Debug> <Debug Info Log> <Servers updated>
          <May 15, 2002 11:11:57 AM EDT> <Debug> <Debug Info Log> <Throttle count increase
          d to: 1>
          <May 15, 2002 11:11:57 AM EDT> <Debug> <Debug Info Log> <Resource got>
          <May 15, 2002 11:11:57 AM EDT> <Debug> <Debug Info Log> <0>
          <May 15, 2002 11:11:57 AM EDT> <Debug> <Debug Info Log> <1>
          <May 15, 2002 11:11:57 AM EDT> <Debug> <Debug Info Log> <3>
          <May 15, 2002 11:11:57 AM EDT> <Debug> <Debug Info Log> <4>
          <May 15, 2002 11:11:57 AM EDT> <Debug> <Debug Info Log> <8>
          java.lang.RuntimeException: Client possibly malfunctioning as RuntimeException t
          hrown from the onMessage routine of the client
          at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1938)
          at weblogic.jms.client.JMSSession.run(JMSSession.java:881)
          at weblogic.jms.backend.BEServerSession.execute(BEServerSession.java:83)
          at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
          at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          [config.xml]
          

          Thanks. It creates a new class each time onMessage () is called. I thought it uses
          an existing instance of the class.
          "Zach" <[email protected]> wrote:
          >You need to trap the exception inside the onMessage so you can see the
          >exception that is being thrown by the bsession.createSender call. This
          >stack trace doesn't give enough information. It is just a message saying
          >your code failed to handle and leaked an exception out of the onMessage.
          >If that is the line that failed, then try catch around it and look at the
          >stack trace for that exception.
          >
          >_sjz.
          >
          >"Alexander Rabinowitz" <[email protected]> wrote in message
          >news:[email protected]...
          >>
          >> I am using weblogic server 6.0 service pack 2.
          >> The problem is in runtime exception in JMS.
          >> Here is an exception I am getting:
          >> java.lang.RuntimeException: Client possibly malfunctioning as
          >RuntimeException thrown
          >> from the onMessage routine of the client
          >> at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:1938)
          >> at weblogic.jms.client.JMSSession.run(JMSSession.java:881)
          >> at
          >weblogic.jms.backend.BEServerSession.execute(BEServerSession.java:83)
          >> at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
          >> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          >>
          >> This occurs in the line
          >>
          >> >bsender = bsession.createSender(bqueue);
          >>
          >> of the class, in the onMessage method.
          >>
          >> What is the reason for the exception? What can be done to fix it? I just
          >need to
          >> process several messages in parallel.
          >
          >
          >
          

Similar Messages

  • Runtime Exception - Need Help

    Hi
    I have a simple BPEL process to test the exception handling. It basically consists of a Invoke to call a EJB and a catchAll around the invoke. If there is an exception due to the Target EJB not available , the catchAll catches the exception, but if there is a runtime exception thrown in the EJB such as a NullPointerException, the catchAll does not capture it and also i'm not able to even access the instance, the instance itself vanishes. I have included the detailed log below..
    can some one shed some light on this..?
    Thanks in advance
    Sam
    The log contains activities of creating a new instance from Dashboard and click on the 'Flow' in console
    &gt;&gt;&gt;&gt; Log Start &gt;&gt;&gt;&gt;
    &lt;2005-02-04 10:24:08,953&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::getConnecti
    on&gt; GOT CONNECTION 1
    &lt;2005-02-04 10:24:08,953&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::closeConnec
    tion&gt; CLOSE CONNECTION 0
    &lt;2005-02-04 10:24:08,953&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::getConnecti
    on&gt; GOT CONNECTION 1
    &lt;2005-02-04 10:24:08,953&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::closeConnec
    tion&gt; CLOSE CONNECTION 0
    &lt;2005-02-04 10:24:08,968&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;WSDLSchemaUtil::getInputParameters&gt; In
    put parameter name payload parameter type {http://acm.org/samples}EHT1Request
    &lt;2005-02-04 10:24:09,046&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::getConnecti
    on&gt; GOT TX CONNECTION 1
    &lt;2005-02-04 10:24:09,062&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;BaseDeliveryPersistenceAdaptor
    ::storeInvoke&gt; Compressed message bytes from 850 to 381
    &lt;2005-02-04 10:24:09,062&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::closeConnec
    tion&gt; CLOSE TX CONNECTION 0
    &lt;2005-02-04 10:24:09,109&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;Dispatcher::insert&gt; Receiv
    ed batch message, 1 messages [invoke instance message aacf889e30f5e83a:125e791:101ddf7208b:-7ffb]
    &lt;2005-02-04 10:24:09,109&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::receive&gt;
    Receiving message [invoke instance message aacf889e30f5e83a:125e791:101ddf7208b:-7ffb] for set invok
    e
    &lt;2005-02-04 10:24:09,109&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::receive&gt;
    Receiving message [] for set engine
    &lt;2005-02-04 10:24:09,109&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;Dispatcher::receive&gt; Alloc
    ating new thread; pending threads: 1, active threads: 0, total: 0
    &lt;2005-02-04 10:24:09,171&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatcherBean::init&gt; Done
    initializing dispatcher queue 'java:comp/env/jms/collaxa/BPELWorkerQueue'
    &lt;2005-02-04 10:24:09,187&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;InvokeDispatchSet::fetchSc
    heduled&gt; Fetched message invoke instance message aacf889e30f5e83a:125e791:101ddf7208b:-7ffb from inv
    oke queue for processing
    &lt;2005-02-04 10:24:09,234&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatcherBean::send&gt; Sent
    message to queue java:comp/env/jms/collaxa/BPELWorkerQueue
    &lt;2005-02-04 10:24:09,234&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;Dispatcher::insert&gt; Receiv
    ed batch message, 0 messages []
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;InvokeInstanceMessageHandl
    er::handle&gt; Processing invoke instance message for domain default
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::getConnecti
    on&gt; GOT TX CONNECTION 1
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::receive&gt;
    Receiving message [] for set invoke
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::receive&gt;
    Receiving message [] for set engine
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;Dispatcher::receive&gt; Alloc
    ating new thread; pending threads: 1, active threads: 1, total: 1
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatcherBean::send&gt; Sent
    message to queue java:comp/env/jms/collaxa/BPELWorkerQueue
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::receive&gt;
    Receiving message remove dispatcher bean message aacf889e30f5e83a:125e791:101ddf7208b:-7ffa for set
    system
    &lt;2005-02-04 10:24:09,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;Dispatcher::receive&gt; Alloc
    ating new thread; pending threads: 1, active threads: 1, total: 2
    &lt;2005-02-04 10:24:09,265&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatcherBean::send&gt; Sent
    message to queue java:comp/env/jms/collaxa/BPELWorkerQueue
    &lt;2005-02-04 10:24:09,281&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;SystemDispatchSet::fetchSc
    heduled&gt; Fetched message remove dispatcher bean message aacf889e30f5e83a:125e791:101ddf7208b:-7ffa f
    rom system queue for processing
    &lt;2005-02-04 10:24:09,281&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;RemoveMessageHandler::hand
    le&gt; Processing remove message for ticket aacf889e30f5e83a:125e791:101ddf7208b:-7ffa
    &lt;2005-02-04 10:24:09,281&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::acknowled
    ge&gt; Acknowledged message remove dispatcher bean message aacf889e30f5e83a:125e791:101ddf7208b:-7ffa
    &lt;2005-02-04 10:24:09,296&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;BaseInvokeHandler::load&gt; Loade
    d message bytes, compressed 381 , uncompressed 850
    &lt;2005-02-04 10:24:09,312&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.delivery&gt; &lt;InvokeCache::remove&gt; Remov
    ing cache entry for message aacf889e30f5e83a:125e791:101ddf7208b:-7ffb
    &lt;2005-02-04 10:24:09,375&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMElement__CXPM::__create&gt; Creating n
    ormal element EHT1Request, state=0
    &lt;2005-02-04 10:24:09,375&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DomSerializerUtil::loadElement&gt; Loaded
    element EHT1Request size=238
    &lt;2005-02-04 10:24:09,390&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::getConnecti
    on&gt; GOT TX CONNECTION 2
    &lt;2005-02-04 10:24:09,390&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::closeConnec
    tion&gt; CLOSE TX CONNECTION 1
    &lt;2005-02-04 10:24:09,421&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::createInstance&gt; Created
    cube instance '2701' from process 'EHT1' (revision '1.0')
    &lt;2005-02-04 10:24:09,500&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;MethodCubeBlock::activate&gt; Create m
    ethod scope 'BpPrc0.1' in block 'BpPrc0'
    &lt;2005-02-04 10:24:09,500&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;MethodCubeBlock::activate&gt; Method n
    ame:processTransaction type: not-supported
    &lt;2005-02-04 10:24:09,515&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::invokeMethod&gt; Invoking
    method 'initiate' on cube instance '2701'
    &lt;2005-02-04 10:24:09,515&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Managing s
    cope 'BpPrc0.1' on cube instance '2701'
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te block 'BpTry0' with scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;scope&gt; at line [no line]
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;scope&gt; at line [no line]
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;BaseCubeBlock::activate&gt; Create sco
    pe 'BpTry0.2' in block 'BpTry0'
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te block 'BpSeq0' with scope 'BpTry0.2'
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;sequence&gt; at line 35
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;sequence&gt; at line 35
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key main
    &lt;2005-02-04 10:24:09,531&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;BaseCubeBlock::activate&gt; Create sco
    pe 'BpSeq0.3' in block 'BpSeq0'
    &lt;2005-02-04 10:24:09,546&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te node 'BpRcv0' with scope 'BpSeq0.3'
    &lt;2005-02-04 10:24:09,546&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Scheduling
    workitem 2701-BpRcv0-BpSeq0.3-1 to be performed
    &lt;2005-02-04 10:24:09,546&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Done manag
    ing scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:09,546&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatchHelper::sendMemory
    &gt; Dispatching in-memory request, [workitem perform message 2701-BpRcv0-BpSeq0.3-1]
    &lt;2005-02-04 10:24:09,546&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;PerformMessageHandler::han
    dleLocal&gt; Processing workitem perform message 2701-BpRcv0-BpSeq0.3-1 for domain default
    &lt;2005-02-04 10:24:09,562&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::handleWorkItem&gt; Attempt
    ing to handle workitem 2701-BpRcv0-BpSeq0.3-1 with transition 0
    &lt;2005-02-04 10:24:09,562&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Perfor
    ming workitem '2701-BpRcv0-BpSeq0.3-1'
    &lt;2005-02-04 10:24:09,562&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key receiveInput
    &lt;2005-02-04 10:24:09,562&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELEntryReceiveWMP::EHT1&gt; exe
    cuting &lt;receive&gt; at line 39
    &lt;2005-02-04 10:24:09,562&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELEntryReceiveWMP::EHT1&gt; set
    variable 'input' to be readOnly.
    &lt;2005-02-04 10:24:09,562&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key input
    &lt;2005-02-04 10:24:09,578&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMElement::toXML&gt; Converting to XML E
    HT1Request, state= 3
    &lt;2005-02-04 10:24:09,578&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMElement__CXPM::__toXML&gt; Converting
    element input to xml, state=0
    &lt;2005-02-04 10:24:09,578&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMElement__CXPM::__toXML&gt; Converting
    element input uri http://acm.org/samples to xml
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key receiveInput
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Is per
    former 2701-BpRcv0-BpSeq0.3-1 idempotent? true
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkBlockConditions&gt; W
    orkitem '2701-BpRcv0-BpSeq0.3-1' has been marked as complete
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::finalizeActivity&gt; Attem
    pting to finalize workitem '2701-BpRcv0-BpSeq0.3-1'
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkManageScope&gt; Found
    highest dirty scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Managing s
    cope 'BpPrc0.1' on cube instance '2701'
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te block 'BpScp0' with scope 'BpSeq0.3'
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;scope&gt; at line 44
    &lt;2005-02-04 10:24:09,593&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key scope-1
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;BaseCubeBlock::activate&gt; Create sco
    pe 'BpScp0.4' in block 'BpScp0'
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te block 'BpTry1' with scope 'BpScp0.4'
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;scope&gt; at line [no line]
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;scope&gt; at line [no line]
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;BaseCubeBlock::activate&gt; Create sco
    pe 'BpTry1.5' in block 'BpTry1'
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te block 'BpSeq1' with scope 'BpTry1.5'
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;sequence&gt; at line 52
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;sequence&gt; at line 52
    &lt;2005-02-04 10:24:09,609&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;BaseCubeBlock::activate&gt; Create sco
    pe 'BpSeq1.6' in block 'BpSeq1'
    &lt;2005-02-04 10:24:09,625&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te node 'BpAss0' with scope 'BpSeq1.6'
    &lt;2005-02-04 10:24:09,625&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Scheduling
    workitem 2701-BpAss0-BpSeq1.6-1 to be performed
    &lt;2005-02-04 10:24:09,625&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Done manag
    ing scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:09,625&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Done p
    erforming workitem '2701-BpRcv0-BpSeq0.3-1'
    &lt;2005-02-04 10:24:09,625&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::handleWorkItem&gt; Done ha
    ndling workitem 2701-BpRcv0-BpSeq0.3-1
    &lt;2005-02-04 10:24:09,625&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;PerformMessageHandler::han
    dleLocal&gt; Processing workitem perform message 2701-BpAss0-BpSeq1.6-1 for domain default
    &lt;2005-02-04 10:24:09,640&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::handleWorkItem&gt; Attempt
    ing to handle workitem 2701-BpAss0-BpSeq1.6-1 with transition 0
    &lt;2005-02-04 10:24:09,640&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Perfor
    ming workitem '2701-BpAss0-BpSeq1.6-1'
    &lt;2005-02-04 10:24:09,640&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key initIS
    &lt;2005-02-04 10:24:09,640&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELAssignWMP::EHT1&gt; executing
    &lt;copy&gt; at line 52
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;XPathUtil::initXPath&gt; namespaceMapping
    is: {bpws=http://schemas.xmlsoap.org/ws/2003/03/business-process/, tns=http://acm.org/samples, xsd=
    http://www.w3.org/2001/XMLSchema, bpelx=http://schemas.oracle.com/bpel/extension, ora=http://schemas
    .oracle.com/xpath/extension, nsxml0=http://www.emergingaspects.com/service/EXHT}
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;XPathUtil::evaluate&gt; XPathQuery[string
    ("NOT OK")], XPath Result: class=java.lang.String value=NOT OK
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;PersistenceManager::copy( Obje
    ct )&gt; copying %jS
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key invokeStatus
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key initIS
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Is per
    former 2701-BpAss0-BpSeq1.6-1 idempotent? true
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkBlockConditions&gt; W
    orkitem '2701-BpAss0-BpSeq1.6-1' has been marked as complete
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::finalizeActivity&gt; Attem
    pting to finalize workitem '2701-BpAss0-BpSeq1.6-1'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkManageScope&gt; Found
    highest dirty scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Managing s
    cope 'BpPrc0.1' on cube instance '2701'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te node 'BpInv0' with scope 'BpSeq1.6'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Scheduling
    workitem 2701-BpInv0-BpSeq1.6-2 to be performed
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Done manag
    ing scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Done p
    erforming workitem '2701-BpAss0-BpSeq1.6-1'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::handleWorkItem&gt; Done ha
    ndling workitem 2701-BpAss0-BpSeq1.6-1
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;PerformMessageHandler::han
    dleLocal&gt; Processing workitem perform message 2701-BpInv0-BpSeq1.6-2 for domain default
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::handleWorkItem&gt; Attempt
    ing to handle workitem 2701-BpInv0-BpSeq1.6-2 with transition 0
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Perfor
    ming workitem '2701-BpInv0-BpSeq1.6-2'
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key invokeEHTS
    &lt;2005-02-04 10:24:09,671&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELInvokeWMP::EHT1&gt; executing
    &lt;invoke&gt; at line 57
    &lt;2005-02-04 10:24:09,703&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSInvocationManager::invoke&gt; operation:
    doExceptionHandlingTest
    &lt;2005-02-04 10:24:09,703&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSInvocationManager::invoke&gt; inputConta
    iner: {payload=&lt;payload xmlns="http://www.emergingaspects.com/service/EXHT"/&gt;}
    &lt;2005-02-04 10:24:09,703&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSInvocationManager::invoke&gt; callProps:
    {is-initial-call=true, parentId=2701, syncPersistMode=null, process-id=EHT1, rootId=2701, conversat
    ionId=bpel://localhost/default/EHT1~1.0/2701-BpInv0-BpSeq1.6-2, location=null, priority=3, work-item
    -key=2701-BpInv0-BpSeq1.6-2, domain-id=default, revision-tag=1.0}
    &lt;2005-02-04 10:24:09,718&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSDLManager::getWSDL&gt; registered wsdl a
    t http://sampc:9700/orabpel/default/EHT1/ExceptionHandlingTestService.wsdl
    &lt;2005-02-04 10:24:09,718&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSDLManager::getWSDL&gt; got wsdl at: http
    ://sampc:9700/orabpel/default/EHT1/ExceptionHandlingTestService.wsdl
    &lt;2005-02-04 10:24:09,718&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSInvocationManager::invoke&gt; def is htt
    p://sampc:9700/orabpel/default/EHT1/ExceptionHandlingTestService.wsdl
    &lt;2005-02-04 10:24:09,718&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSIFInvocationHandler::invoke&gt; opName=d
    oExceptionHandlingTestportTypeQn={http://www.emergingaspects.com/service/EXHT}EXHTServiceserviceQn={
    http://www.emergingaspects.com/service/EXHT}EXHTService
    &lt;2005-02-04 10:24:09,859&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMSerializerUtil::binaryDeepCopy&gt; Beg
    in binary deep copy for payload
    &lt;2005-02-04 10:24:09,859&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMElement__CXPM::__deepCopy&gt; Deep cop
    ying payload, uri=http://www.emergingaspects.com/service/EXHT, state=0
    &lt;2005-02-04 10:24:09,890&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMElement__CXPM::__create&gt; Creating n
    ormal element payload, state=0
    &lt;2005-02-04 10:24:09,890&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;DOMSerializerUtil::binaryDeepCopy&gt; Don
    e binary deep copy for payload
    WSIF0005E: An error occurred when invoking the method 'doExceptionHandlingTest'. ('EJB')
    &lt;2005-02-04 10:24:09,953&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;WSIFInvocationHandler::invoke&gt; Fault ha
    ppenned
    javax.transaction.TransactionRolledbackException: EJB Exception: : java.lang.NullPointerException
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean.doExceptionHandlingTest(Excepti
    onHandlingTestEJBBean.java:28)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl.doExceptionHandli
    ngTest(ExceptionHandlingTestEJBBean_d9oiel_EOImpl.java:46)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_WLSkel.invoke(Unk
    nown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    ; nested exception is:
    java.lang.NullPointerException
    at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:284)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:244)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_812_WLStub.doExce
    ptionHandlingTest(Unknown Source)
    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 com.collaxa.cube.ws.wsif.providers.ejb.WSIFOperation_EJB.executeRequestResponseOperation(
    WSIFOperation_EJB.java:1071)
    at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:392)
    at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:321)
    at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:143)
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:569)
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:299)
    at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:182)
    at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3447)
    at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1824)
    at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(Perfo
    rmMessageHandler.java:75)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:87
    at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:144)
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5531)
    at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1219)
    at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:480)
    at com.collaxa.cube.engine.bean.DeliveryBean.handleInvoke(DeliveryBean.java:307)
    at com.collaxa.cube.engine.bean.DeliveryBean_uhics8_ELOImpl.handleInvoke(DeliveryBean_uhics8
    _ELOImpl.java:274)
    at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(Invok
    eInstanceMessageHandler.java:36)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:64)
    at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:72)
    at com.collaxa.cube.engine.bean.WorkerBean.onMessage(WorkerBean.java:86)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:382)
    at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:316)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:281)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2596)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:2516)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    Caused by: java.lang.NullPointerException
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean.doExceptionHandlingTest(Excepti
    onHandlingTestEJBBean.java:28)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl.doExceptionHandli
    ngTest(ExceptionHandlingTestEJBBean_d9oiel_EOImpl.java:46)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_WLSkel.invoke(Unk
    nown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    ... 2 more
    &lt;2005-02-04 10:24:09,953&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.ws&gt; &lt;BPELInvokeWMP::__invoke&gt; Caught RemoteE
    xception
    orabpel.apache.wsif.WSIFException: Operation failed!; nested exception is:
    javax.transaction.TransactionRolledbackException: EJB Exception: : java.lang.NullPointerExce
    ption
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean.doExceptionHandlingTest(Excepti
    onHandlingTestEJBBean.java:28)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl.doExceptionHandli
    ngTest(ExceptionHandlingTestEJBBean_d9oiel_EOImpl.java:46)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_WLSkel.invoke(Unk
    nown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    ; nested exception is:
    java.lang.NullPointerException
    at com.collaxa.cube.ws.wsif.providers.ejb.WSIFOperation_EJB.executeRequestResponseOperation(
    WSIFOperation_EJB.java:1207)
    at com.collaxa.cube.ws.WSIFInvocationHandler.invoke(WSIFInvocationHandler.java:392)
    at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:321)
    at com.collaxa.cube.ws.WSInvocationManager.invoke(WSInvocationManager.java:143)
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:569)
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:299)
    at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:182)
    at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3447)
    at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1824)
    at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(Perfo
    rmMessageHandler.java:75)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:87
    at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:144)
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5531)
    at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1219)
    at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:480)
    at com.collaxa.cube.engine.bean.DeliveryBean.handleInvoke(DeliveryBean.java:307)
    at com.collaxa.cube.engine.bean.DeliveryBean_uhics8_ELOImpl.handleInvoke(DeliveryBean_uhics8
    _ELOImpl.java:274)
    at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(Invok
    eInstanceMessageHandler.java:36)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:64)
    at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:72)
    at com.collaxa.cube.engine.bean.WorkerBean.onMessage(WorkerBean.java:86)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:382)
    at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:316)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:281)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2596)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:2516)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    Caused by: javax.transaction.TransactionRolledbackException: EJB Exception: : java.lang.NullPointerE
    xception
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean.doExceptionHandlingTest(Excepti
    onHandlingTestEJBBean.java:28)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl.doExceptionHandli
    ngTest(ExceptionHandlingTestEJBBean_d9oiel_EOImpl.java:46)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_WLSkel.invoke(Unk
    nown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    ; nested exception is:
    java.lang.NullPointerException
    at weblogic.rjvm.BasicOutboundRequest.sendReceive(BasicOutboundRequest.java:108)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:284)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:244)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_812_WLStub.doExce
    ptionHandlingTest(Unknown Source)
    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 com.collaxa.cube.ws.wsif.providers.ejb.WSIFOperation_EJB.executeRequestResponseOperation(
    WSIFOperation_EJB.java:1071)
    ... 27 more
    Caused by: java.lang.NullPointerException
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean.doExceptionHandlingTest(Excepti
    onHandlingTestEJBBean.java:28)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl.doExceptionHandli
    ngTest(ExceptionHandlingTestEJBBean_d9oiel_EOImpl.java:46)
    at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_WLSkel.invoke(Unk
    nown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
    at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
    ... 2 more
    &lt;2005-02-04 10:24:09,968&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;bpel.p0.BPEL_BIN$$BPELC_BpInv0::per
    form&gt; error thrown
    com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.oracle.com/bpel/extension}bindingFault
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    parts: {{summary=Operation failed!; nested exception is:
            javax.transaction.TransactionRolledbackException: EJB Exception: : java.lang.NullPointerExce
    ption
            at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean.doExceptionHandlingTest(Excepti
    onHandlingTestEJBBean.java:28)
            at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl.doExceptionHandli
    ngTest(ExceptionHandlingTestEJBBean_d9oiel_EOImpl.java:46)
            at com.ema.bpel.test.exceptions.ExceptionHandlingTestEJBBean_d9oiel_EOImpl_WLSkel.invoke(Unk
    nown Source)
            at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
            at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerRef.java:108)
            at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:353)
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
            at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
            at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
            at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
            at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    ; nested exception is:
            java.lang.NullPointerException}}
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__invoke(BPELInvokeWMP.java:604)
    at com.collaxa.cube.engine.ext.wmp.BPELInvokeWMP.__executeStatements(BPELInvokeWMP.java:299)
    at com.collaxa.cube.engine.ext.wmp.BPELActivityWMP.perform(BPELActivityWMP.java:182)
    at com.collaxa.cube.engine.CubeEngine.performActivity(CubeEngine.java:3447)
    at com.collaxa.cube.engine.CubeEngine.handleWorkItem(CubeEngine.java:1824)
    at com.collaxa.cube.engine.dispatch.message.instance.PerformMessageHandler.handleLocal(Perfo
    rmMessageHandler.java:75)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleLocalMessage(DispatchHelper.java:87
    at com.collaxa.cube.engine.dispatch.DispatchHelper.sendMemory(DispatchHelper.java:144)
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5531)
    at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1219)
    at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:480)
    at com.collaxa.cube.engine.bean.DeliveryBean.handleInvoke(DeliveryBean.java:307)
    at com.collaxa.cube.engine.bean.DeliveryBean_uhics8_ELOImpl.handleInvoke(DeliveryBean_uhics8
    _ELOImpl.java:274)
    at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(Invok
    eInstanceMessageHandler.java:36)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:64)
    at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:72)
    at com.collaxa.cube.engine.bean.WorkerBean.onMessage(WorkerBean.java:86)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:382)
    at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:316)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:281)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2596)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:2516)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    &lt;2005-02-04 10:24:09,968&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key invokeEHTS
    &lt;2005-02-04 10:24:09,968&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;SensorManager::doCallback&gt; queried
    map w/key {http://schemas.oracle.com/bpel/extension}bindingFault
    &lt;2005-02-04 10:24:09,968&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Is per
    former 2701-BpInv0-BpSeq1.6-2 idempotent? false
    &lt;2005-02-04 10:24:09,968&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkBlockConditions&gt; W
    orkitem '2701-BpInv0-BpSeq1.6-2' has been marked as complete
    &lt;2005-02-04 10:24:09,984&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::finalizeActivity&gt; Attem
    pting to finalize workitem '2701-BpInv0-BpSeq1.6-2'
    &lt;2005-02-04 10:24:09,984&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::finalizeActivity&gt; Caugh
    t business exception at block 'BpTry1', rolling back
    &lt;2005-02-04 10:24:09,984&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::forceCompleteScope&gt; Is
    instance faulted? true
    &lt;2005-02-04 10:24:09,984&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::forceCompleteScopeTree&gt;
    Forcing to complete scope rooted at 'BpTry1.5'
    &lt;2005-02-04 10:24:10,000&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;BaseWorkItemPersistenceAdaptor
    ::load&gt; Skipping database load ... found workitems
    &lt;2005-02-04 10:24:10,000&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::closeActivity&gt; Workitem
    2701-BpInv0-BpSeq1.6-2 is faulted ... skipping cancel
    &lt;2005-02-04 10:24:10,000&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.agents&gt; &lt;ExpirationAgent::unscheduleW
    orkItem&gt; Removing work item 2701-BpInv0-BpSeq1.6-2 from expiration scheduler
    &lt;2005-02-04 10:24:10,000&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkExpirable&gt; Removin
    g work item 2701-BpInv0-BpSeq1.6-2 from expiration agent
    &lt;2005-02-04 10:24:10,000&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;ForceCompleteTreeIterator::apply&gt; C
    ompleting scope 'BpTry1.5'
    &lt;2005-02-04 10:24:10,000&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;ForceCompleteTreeIterator::apply&gt; C
    ompleting scope 'BpSeq1.6'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::forceCompleteScopeTree&gt;
    Done forced complete scope rooted at 'BpTry1.5'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::checkManageScope&gt; Found
    highest dirty scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Managing s
    cope 'BpPrc0.1' on cube instance '2701'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te block 'BpCAl0' with scope 'BpScp0.4'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;catchAll&gt; at line 48
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.bpel&gt; &lt;BPELExecution::EHT1&gt; entering
    &lt;catchAll&gt; at line 48
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;BaseCubeBlock::activate&gt; Create sco
    pe 'BpCAl0.7' in block 'BpCAl0'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Can activa
    te node 'BpWai0' with scope 'BpCAl0.7'
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;XPathUtil::initXPath&gt; namespaceMapping
    is: {bpws=http://schemas.xmlsoap.org/ws/2003/03/business-process/, tns=http://acm.org/samples, xsd=
    http://www.w3.org/2001/XMLSchema, bpelx=http://schemas.oracle.com/bpel/extension, ora=http://schemas
    .oracle.com/xpath/extension, nsxml0=http://www.emergingaspects.com/service/EXHT}
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.xml&gt; &lt;XPathUtil::evaluate&gt; XPathQuery['PT30S
    '], XPath Result is: class java.lang.String
    &lt;2005-02-04 10:24:10,031&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.agents&gt; &lt;ExpirationAgent::unscheduleW
    orkItem&gt; Removing work item 2701-BpWai0-BpCAl0.7-1 from expiration scheduler
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.agents&gt; &lt;ExpirationScheduler::schedul
    e&gt; Work item 2701-BpWai0-BpCAl0.7-1 scheduled for Fri Feb 04 10:24:40 EST 2005
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Scheduling
    workitem 2701-BpWai0-BpCAl0.7-1 to be performed
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::manageScope&gt; Done manag
    ing scope 'BpPrc0.1'
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::performActivity&gt; Done p
    erforming workitem '2701-BpInv0-BpSeq1.6-2'
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::handleWorkItem&gt; Done ha
    ndling workitem 2701-BpInv0-BpSeq1.6-2
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatchHelper::sendMemory
    &gt; In-memory false ... stop processing in-memory
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine&gt; &lt;CubeEngine::store&gt; Initial request
    ... storing instance 2701 to datastore
    &lt;2005-02-04 10:24:10,125&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;CubeInstancePersistenceMgr::st
    ore&gt; Storing instance 2701 to datastore
    &lt;BaseCubeSessionBean::logError&gt; Error while invoking bean "delivery": Cannot insert audit trail.
    The process domain was unable to insert the current log entries for the instance "2701" to the audit
    trail table. The exception reported is: The transaction is no longer active - status: 'Marked roll
    back. [Reason=java.lang.NullPointerException]'. No further JDBC access is allowed within this transa
    ction.
    Please check that the machine hosting the datasource is physically connected to the network. Otherw
    ise, check that the datasource connection parameters (user/password) is currently valid.
    sql statement: INSERT INTO audit_trail( cikey, domain_ref, count_id, block, block_csize, block_usiz
    e, log ) VALUES( ?, ?, ?, ?, ?, ?, ? )
    &lt;2005-02-04 10:24:10,187&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::closeConnec
    tion&gt; CLOSE TX CONNECTION 0
    &lt;2005-02-04 10:24:10,250&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;DispatchHelper::handleMess
    age&gt; failed to handlerMessage
    ORABPEL-04004
    Cannot insert audit trail.
    The process domain was unable to insert the current log entries for the instance "2701" to the audit
    trail table. The exception reported is: The transaction is no longer active - status: 'Marked roll
    back. [Reason=java.lang.NullPointerException]'. No further JDBC access is allowed within this transa
    ction.
    Please check that the machine hosting the datasource is physically connected to the network. Otherw
    ise, check that the datasource connection parameters (user/password) is currently valid.
    sql statement: INSERT INTO audit_trail( cikey, domain_ref, count_id, block, block_csize, block_usiz
    e, log ) VALUES( ?, ?, ?, ?, ?, ?, ? )
    at com.collaxa.cube.engine.adaptors.oracle.AuditTrailPersistenceAdaptor$TrailHandler.store(A
    uditTrailPersistenceAdaptor.java:283)
    at com.collaxa.cube.engine.adaptors.common.BaseAuditTrailPersistenceAdaptor.store(BaseAuditT
    railPersistenceAdaptor.java:134)
    at com.collaxa.cube.engine.adaptors.oracle.AuditTrailPersistenceAdaptor.store(AuditTrailPers
    istenceAdaptor.java:62)
    at com.collaxa.cube.engine.data.AuditTrailPersistenceMgr.store(AuditTrailPersistenceMgr.java
    :239)
    at com.collaxa.cube.engine.adaptors.common.BaseCubeInstancePersistenceAdaptor.store(BaseCube
    InstancePersistenceAdaptor.java:466)
    at com.collaxa.cube.engine.adaptors.oracle.CubeInstancePersistenceAdaptor.store(CubeInstance
    PersistenceAdaptor.java:74)
    at com.collaxa.cube.engine.data.CubeInstancePersistenceMgr.store(CubeInstancePersistenceMgr.
    java:307)
    at com.collaxa.cube.engine.CubeEngine.store(CubeEngine.java:5295)
    at com.collaxa.cube.engine.CubeEngine.endRequest(CubeEngine.java:5540)
    at com.collaxa.cube.engine.CubeEngine.createAndInvoke(CubeEngine.java:1219)
    at com.collaxa.cube.engine.delivery.DeliveryService.handleInvoke(DeliveryService.java:480)
    at com.collaxa.cube.engine.bean.DeliveryBean.handleInvoke(DeliveryBean.java:307)
    at com.collaxa.cube.engine.bean.DeliveryBean_uhics8_ELOImpl.handleInvoke(DeliveryBean_uhics8
    _ELOImpl.java:274)
    at com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessageHandler.handle(Invok
    eInstanceMessageHandler.java:36)
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:64)
    at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:72)
    at com.collaxa.cube.engine.bean.WorkerBean.onMessage(WorkerBean.java:86)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:382)
    at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:316)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:281)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2596)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:2516)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    &lt;2005-02-04 10:24:10,265&gt; &lt;ERROR&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseScheduledWorker::proce
    ss&gt; Failed to handle dispatch message invoke instance message aacf889e30f5e83a:125e791:101ddf7208b:-
    7ffb ... exception Message handle error.
    An exception occurred while attempting to process the message "com.collaxa.cube.engine.dispatch.mess
    age.invoke.InvokeInstanceMessage"; the exception is: Cannot insert audit trail.
    The process domain was unable to insert the current log entries for the instance "2701" to the audit
    trail table. The exception reported is: The transaction is no longer active - status: 'Marked roll
    back. [Reason=java.lang.NullPointerException]'. No further JDBC access is allowed within this transa
    ction.
    Please check that the machine hosting the datasource is physically connected to the network. Otherw
    ise, check that the datasource connection parameters (user/password) is currently valid.
    sql statement: INSERT INTO audit_trail( cikey, domain_ref, count_id, block, block_csize, block_usiz
    e, log ) VALUES( ?, ?, ?, ?, ?, ?, ? )
    ORABPEL-05002
    Message handle error.
    An exception occurred while attempting to process the message "com.collaxa.cube.engine.dispatch.mess
    age.invoke.InvokeInstanceMessage"; the exception is: Cannot insert audit trail.
    The process domain was unable to insert the current log entries for the instance "2701" to the audit
    trail table. The exception reported is: The transaction is no longer active - status: 'Marked roll
    back. [Reason=java.lang.NullPointerException]'. No further JDBC access is allowed within this transa
    ction.
    Please check that the machine hosting the datasource is physically connected to the network. Otherw
    ise, check that the datasource connection parameters (user/password) is currently valid.
    sql statement: INSERT INTO audit_trail( cikey, domain_ref, count_id, block, block_csize, block_usiz
    e, log ) VALUES( ?, ?, ?, ?, ?, ?, ? )
    at com.collaxa.cube.engine.dispatch.DispatchHelper.handleMessage(DispatchHelper.java:73)
    at com.collaxa.cube.engine.dispatch.BaseScheduledWorker.process(BaseScheduledWorker.java:72)
    at com.collaxa.cube.engine.bean.WorkerBean.onMessage(WorkerBean.java:86)
    at weblogic.ejb20.internal.MDListener.execute(MDListener.java:382)
    at weblogic.ejb20.internal.MDListener.transactionalOnMessage(MDListener.java:316)
    at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:281)
    at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2596)
    at weblogic.jms.client.JMSSession.execute(JMSSession.java:2516)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    &lt;2005-02-04 10:24:10,265&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.dispatch&gt; &lt;BaseDispatchSet::acknowled
    ge&gt; Acknowledged message invoke instance message aacf889e30f5e83a:125e791:101ddf7208b:-7ffb
    &lt;2005-02-04 10:24:24,750&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::getConnecti
    on&gt; GOT CONNECTION 1
    &lt;BaseCubeSessionBean::logError&gt; Error while invoking bean "finder": Instance not found in datasource
    The process domain was unable to fetch the instance with key "aacf889e30f5e83a:125e791:101ddf7208b:-
    7ffc" from the datasource.
    Please check that the instance key "aacf889e30f5e83a:125e791:101ddf7208b:-7ffc" refers to a valid in
    stance that has been started and not removed from the process domain.
    &lt;2005-02-04 10:24:24,765&gt; &lt;DEBUG&gt; &lt;default.collaxa.cube.engine.data&gt; &lt;ConnectionFactory::closeConnec
    tion&gt; CLOSE CONNECTION 0
    &lt;&lt;&lt;&lt; Log End &lt;&lt;&lt;&lt;

    hmmm for some reason when you call your EJB and it throws an exception, the JTA transaction is marked as rollbakc so the BPEL EM engine fails to save the instance.
    Could you please provide us some additional pieces of information:
    obversion.bat.
    The exact exception that your EJB throws.
    JTA configuration of your bean
    Have you looked at the BankTransfer demo?
    Edwin

  • Exception Starting JMS listener bean on iAs 10.1.3.1 using Database Persist

    Hi,
    I'm getting this exception
    Unexpected exception by JMS provider: javax.jms.InvalidDestinationException: Destination "oracle.j2ee.ra.jms.generic.AdminObjectQueueImpl[SECOND]" has invalid type "class oracle.j2ee.ra.jms.generic.AdminObjectQueueImpl" and cannot be used with OC4J JMS..
    on deploy of an application containing the a Message Driven Bean
    It is marked as failed in EM.
    This is the relevant snippet from my orion-ejb-jar.xml
    <message-driven-deployment name="CommunicatorMessageBean" destination-location="jmsResourceAdaptor/AutoWrap/Queues/SECOND" />
    thanks in advance
    Dan

    That seems to be a bug in the ADF Runtime Installer.
    The file jsp-el-api.jar from JDev 10.1.3 must be copied manually to the oc4j container /applib directory - and if you have more than one oc4j instance on your application server it must be copied to all of them.
    I have been in contact with Oracle Support because of this and hopefully a patch and/or proper documentation will be release soon.

  • Crystal Runtime exception: Missing parameter values

    Our company did a PeopleTools upgrade at one of our clients recently. We upgraded them to PeopleTools 8.50.08. We had to convert all the Crystal Reports to the 2008 format using the RPT converter which is included in the Client install of PeopleTools.
    The only problem now is that a lot of the Crystal processes in PeopleSoft are failing with the following error:
    Crystal Runtime exception: Missing parameter values.
    I've checked the parameters which are being passed to the report and I see both parameters are filled:
    E:\HR881\BIN\CLIENT\WINX86\PSCRRUN.EXE -CTORACLE -CDHRMKPDEV -COPSDUT -CPOPRPSWD -I218609 -RP"PUP202K" -OT6 -OP"G:\PS\PSPRCS\log_output\HRMKPDEV\CRW_PUP202K_218609" -LGDUT -OF2 -ORIENTL "2000-10-01" "2002-06-30"
    Database type is Oracle. HRMS version is 8.8. I can run the Query which gets the data in just fine and I can also run the report from Crystal fine. This only happens with Crystal reports which have a date field as a parameter/prompt in the report.
    There's currently an SR open at Oracle, but I was hoping that someone here can help me nail this issue. I'm not too happy with the quallity of Oracle support, but that's a whole different story.

    <s>Just to be sure, did you put a space after each parameter name or is it a typo over here ?
    E:\HR881\BIN\CLIENT\WINX86\PSCRRUN.EXE -CT ORACLE -CD HRMKPDEV -CO PSDUT -CP OPRPSWD -I 218609 -RP "PUP202K" -OT 6 -OP "G:\PS\PSPRCS\log_output\HRMKPDEV\CRW_PUP202K_218609" -LG DUT -OF 2 -OR IENTL "2000-10-01" "2002-06-30"</s>
    Nicolas.
    sorry, it was wrong assumption.
    Edited by: N Gasparotto on Jun 2, 2010 5:11 PM

  • SOAP Framework error: SOAP Runtime Exception: CSoa

    I got the error 'SOAP Framework error: SOAP Runtime Exception: CSoa' when I activate my Adobe Form. The form can be activated before but the error happens when I add the fourth main body page.
    Philip

    Hi  
    1. Check if your ADS is working. Use program FP_TEST_00 / FP_TEST_01 to test your ADS if it is working. 
    2. Test using super user, it might caused by authorization too.
    Thanks, Xiang Li

  • Error:Adobe document services error: SOAP Runtime Exception: CSoapException

    Dear All,
    While executing an adobe form I am facing the following error:
    Adobe document services error: SOAP Runtime Exception: CSoapExceptionTransport :
    Can you please suggest how the error can be rectified?
    Thanks and regards,
    Atanu
    Edited by: Atanu Dey on Feb 18, 2008 5:31 PM

    Hi, For solving this do one thing:
    The problem is In ECC the service AdobeDocumentServicesSec was set up in SM59 but nothing was configured for SSL. So you have to change this to:
    AdobeDocumentServicesSec.
    Thanks
    please reward points

  • Reg:- Runtime Exception on preview of Portal Activity Report Editor iView

    Hi All,
    I am trying to preview the iView, "Portal Activity Report Editor" located under Portal Content -> Content Provided by SAP -> Admin Interfaces -> Admin iView Templates -> Portal Editors under Content Administration role.
    But, when I previee the iView, I get a RunTime Exception as follows:
    #1.5 #0014C263546200A5000008B900000CEC000450DE5CE9A528#1214815878685#com.sap.portal.applicationFramework.tools.wizardframework#sap.com/irj#com.sap.portal.applicationFramework.tools.wizardframework#<User_ID>#152806##n/a##b3602110468111dd9e8e0014c2635462#SAPEngine_Application_Thread[impl:3]_56##0#0#Fatal#1#/System/Server#Java###wizard session No: 429: could not instantiate pane instance of type com.sapportals.admin.wizardframework.core.ClassNameAndConstructorArgs@1663bd## #1.5 #0014C263546200A5000008BA00000CEC000450DE5CE9A6F1#1214815878685#System.err#sap.com/irj#System.err#<User_ID>#152806##n/a##b3602110468111dd9e8e0014c2635462#SAPEngine_Application_Thread[impl:3]_56##0#0#Error##Plain###Jun 30, 2008 4:51:18 AM                     com.sap.portal.portal [SAPEngine_Application_Thread[impl:3]_56] Error: Exception ID:04:51_30/06/08_15351_4495550
    #1.5 #0014C263546200A5000008BC00000CEC000450DE5CE9B605#1214815878685#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#<User_ID>#152806##n/a##b3602110468111dd9e8e0014c2635462#SAPEngine_Application_Thread[impl:3]_56##0#0#Error#1#/System/Server#Java###Exception ID:04:51_30/06/08_15351_4495550
    [EXCEPTION]
    #1#com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : pcd:portal_content/com.sap.pct/admin.templates/iviews/editors/com.sap.portal.activityReportEditor
    Component class : com.sap.portal.webreport.editor.ActivityReportEditor
    User : <User_ID>
         at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:973)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:547)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:407)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)
    Caused by: java.lang.RuntimeException: an Exception occured when instantating class com.sap.portal.admin.editor.pane.EditorPaneWrapper
         at com.sapportals.admin.wizardframework.core.TrivialPaneFactory.getComponent(TrivialPaneFactory.java:54)
         at com.sapportals.admin.wizardframework.core.WizardInstance.doWizard(WizardInstance.java:225)
         at com.sap.portal.admin.editor.Editor.doWizard(Editor.java:605)
         at com.sap.portal.admin.editor.Editor.run(Editor.java:150)
         at com.sap.portal.admin.editor.AbstractEditorComponent.doContent(AbstractEditorComponent.java:59)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         ... 29 more
    This happens for all Editor iViews.
    Kindly let me know what could be the problem.
    Thanks and Regards,
    Pavithra

    Hi Sandeep,
    Thank you for your inputs.
    I had raised an OSS Message with SAP some days ago on this issue. SAP has replied back saying that only users with Content Administration role can have access to configure portal acyivity report. All other users can only view the results.
    Regards,
    Pavithra

  • Runtime Exception in Message mapping

    Hi Experts,
    I have a scenario of  IDoc to  <third party adapter> cXML.
    The message caught the below error
    RuntimeException in Message-Mapping transformation : Runtime exception during processing target field mapping ......./ShipTo[2]/Address/PostalAddress/DeliverTo (suppressed field). The message is: Exception:[java.lang.ArrayIndexOutOfBoundsException: 7] in class com.sap.xi.tf._M_IDOC_to_cXML_ method getShipToContact$[, , com.sap.aii.mappingtool.tf3.rt.Q2QFunctionWrapper@253fdd8a]
    Please suggest on what went wrong, as everything is working fine before.
    Thanks in advance.
    MK

    Mk:
    Please check if the source fields which are mapped to the target are all generated by the SAP Script and make sure that they have data so that when they are mapped to the target. If they are mapped and source fields don't have data then it may error out. Sometimes SAP Script might not generate a node if there is not data for it, make sure you handle that condition also.
    RuntimeException in Message-Mapping transformation is
    due to the missing TEXT_LINE element in the segment Z1VOBTH for the TEXT_ID 'INVOICE_TO_LOCATION'
    I am not able to understand this. is Text_ID subelement of Text_Line?? Could you please post the complete error message as it is.

  • RuntimeException in Message-Mapping transformation: Runtime exception durin

    Hi Friends,
    Iam going test Message Mapping, i got the error like
      RuntimeException in Message-Mapping transformation: Runtime exception during processing target field mapping /ns0:LeapIndent_R3_MT/Recordset/RowData/QTY_TNS. The message is: Exception:[java.lang.NumberFormatException: empty String] in class com.sap.aii.mappingtool.flib3.Arithm method formatNumber[, com.sap.aii.mappingtool.tf3.rt.Context@27f972cf]
    Pls help me ..
    Thanks & Regards,
    Nvr

    Hi Ravi,
      Thanks for ur reply, the problem is solved, the Date field is Mandaratory, they are not mention the data field, so that way the problem is coming.
    Thanks & Regards,
    NVR

  • Runtime exception for Date format

    Hi,
    Scenario : RFC to IDOC
    found the error in my payload :
    RuntimeException in Message-Mapping transformation: Runtime exception during processing target field mapping /ZORDERS06/IDOC/E1EDK03/DATUM. The message is: Unparseable date: "2008-05-19" at com.sap.aii.mappingtool.tf3.AMappingProgram.start
    Here i has used DateTransformation from the Date Function.
    How can i give the format for Target side here.
    Regards,
    yeswanth.

    Hello Yeshwanth,
    RuntimeException in Message-Mapping transformation: Runtime exception during processing target field mapping /ZORDERS06/IDOC/E1EDK03/DATUM. The message is: Unparseable date: "2008-05-19" at com.sap.aii.mappingtool.tf3.AMappingProgram.start
    Here i has used DateTransformation from the Date Function.
    In Date Trans Properties:
    In Format Source date u select : yyyy-mm-dd
    In Target Format u select: yyyy/mm/dd
    Thanks,
    Satya

  • Runtime exception occurred during execution of application mapping program

    Hi all
    while testing intergase mapping i am getting this error----->
    com/sap/xi/tf/_XI_FI_BAPI_CC_DOCUMENT_POST_REQ_MM:
    com.sap.aii.utilxi.misc.api.BaseRuntimeException;RuntimeException in Message-Mapping transgormation:Runtime exception during processing target field mapping
    /ns1:BAPI_ACC_DOCUMENT_POST/DOCUMENTHEADER/HEADER_TXT. THE message is:Exception:[java.lang.NullPointerException] in class com.sap.aii.mappingtool.flib3.TextFunction s method substring [null,com.sap.aii.mappingtool.tf3.rt.Context@2388897239]
    I had used  in the message mapping two user defined function scan you please look into the user defined functions, getPriviousMounthLastDate and  FileName in the mapping for the target DocDate field
    ihave used even this getPriviousMounthLastDate user defined function before using FileName
    this is  the code of  userdefined function  getPriviousMounthLastDate
    Calendar cal = Calendar.getInstance();
    SimpleDateFormat output = new SimpleDateFormat("yyyyMMdd");
    cal.add(Calendar.MONTH,1);
    cal.set(Calendar.DAY_OF_MONTH,1);
    cal.add(Calendar.MONTH,-1);
    cal.add(Calendar.DATE,-1);
    StringBuffer dateBuffer = new StringBuffer();
    output.format(cal.getTime(),dateBuffer,new FieldPosition(0));
    return dateBuffer;
    this is the code of  userdefined function FileName
    DynamicConfiguration conf = (DynamicConfiguration) container
    .getTransformationParameters()
    .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create(
    "http://sap.com/xi/XI/System/File",
    "FileName");
    String valueOld = conf.get(key);
    return valueOld;
    thanks sandep
    Edited by: sandeep pendyala on Feb 6, 2008 6:52 AM

    Hi Sandeep,
                     please check the trace file in SXMB_MONI,
                     which is avialble in response node.
                      if you analyze the trace, u can find-out....
                     error happend because of ehich field.
                    first copy the inbound xml from MONI and test it at message mapping.
                     then also, u can find-out the error.
    regards
    mahesh.

  • Error in Runtime Exception

    Hi all,
    Iam trying out a scenario for IDOC to RNIF,
    While Iam testing my Interface i am getting Exception in Runtime Exception...
    ''Global Usage code does not match with -- Production''
    can you plese help me on this.
    Regards
    Srinivas

    Hi all,
    Iam trying out a scenario for IDOC to RNIF,
    While Iam testing my Interface i am getting Exception in Runtime Exception...
    ''Global Usage code does not match with -- Production''
    can you plese help me on this.
    Regards
    Srinivas

  • Multi Mapping Base Runtime Exception

    Hi all
    Im getting a Base Runtime Excecption in Multi mapping. My scenario is File to IDocs.
    when i test the message is IR its successful. However while testing End to end im getting Base Runtime excception.
    Any pointers to this
    --Keerthi

    Hi Abhishek,
    I tested from ID-Tools-Test configuration
    Its stopping at the Interface Detarmination&Mapping step. Now the Base Runtime exception is gone. Geeting a new error"Messages in multi-message format can only be sent to one Adapter Engine".
    According to the forum i've removed the Messages and Message 1 tag and tested.. But still the same error.
    My scenario is File to IDOCs using multi -mapping. I've changes the occurece to unbounded.. Used Enhanced Receiver determination..All my configuration seems perfect Also in SXMB_MONI multiple messages as desired are present under 'Message Branch According to Receiver List'
    But the error "Messages in multi-message format can only be sent to one Adapter Engine" is still there
    --Keerthi

  • Reg: Runtime exception occurred during application mapping

    Dear SAP Gurus,
    This is Amar Srinivas Eli working currently on SOAP to SOAP Scenario on PI 7.1 Server.
    I Would like to inform you that I have done all steps regarding DESIGN and CONFIG and also regarding SERVICE REGISTRY part successfully.
    While Testing the data in the WS Navigator by giving the input parameters I am getting an error that
    *<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>*
    *- <!--  Request Message Mapping*
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>Application</SAP:Category>
      <SAP:Code area="MAPPING">EXCEPTION_DURING_EXECUTE</SAP:Code>
      <SAP:P1>com/sap/xi/tf/_HRS_LISTReferral_Response_MM_</SAP:P1>
      <SAP:P2>com.sap.aii.mappingtool.tf7.IllegalInstanceExcepti</SAP:P2>
      <SAP:P3>on: Cannot create target element /ns1:PI_ListRefer</SAP:P3>
      <SAP:P4>ral_Response_MT. Values missing in queue context.~</SAP:P4>
      <SAP:AdditionalText />
      <SAP:Stack>Runtime exception occurred during application mapping com/sap/xi/tf/_HRS_LISTReferral_Response_MM_; com.sap.aii.mappingtool.tf7.IllegalInstanceException: Cannot create target element /ns1:PI_ListReferral_Response_MT. Values missing in queue context.~</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error>
    These are the steps I did while implementing..
    1. Importing the XSD's successfully
    2. Developed the design and config part and also checked nearly 3-4 times regarding both REQ and
        RESPONSE Mappings.
    3. I already checked the link of WSDL once again...
    4. Even I found REsponse Interface once again...
    Still I am not getting where the error was ? Please guide me in detail in a right way in this issue.
    Regards:
    Amar Srinivas Eli
    Edited by: Amar Srinivas Eli on Jan 13, 2009 7:53 AM

    Hello,
    I already checked all those queues and context fields////
    Based on my Observation I found
    1) As I am unable to view the SOAP BODY I increased the RUN TIME Trace Level to 3 and LOG_VAlue to 3
    2) ANother most Important that I found later doing these settings are....
        I found Receiver Pay LOAD and I copied that entire pay load and pasted it in
        REceiver Message Mapping> Test Tab and Code->PASTED...and compared all those parameters
        in the TEST TAB and DEFINITION TAB in Tree View whether all the mandatory receiver mapped
        elements are  coming I mean passing from source or not...
    OBSERVATION::
    I found that for nearly 3 fields there is a difference when I compared on Tree View in DEFINITION TAB and also parallely in the TEST TAB Tree View which I got by copied from MONI,,,,
    see for example ::
    CENTRE <----
    > DISCHARGE DATE..
    For going to CENTRE..here I found that in DEfiniition TAB...
    Control Act Event-->Subject->document-->Component>Structured body> component> Section>Component>PatientCareProvisionEvent->EffectiveTime-->CENTRE
    But immediately I have gone to TEST TAB and TREE VIEW and I found that respective field CENTRE is posting I mean passing any value or parameter to Discharged Date or not...
    But I found that...
    Control Act Event-->Subject->document-->Component>Structured body> component> Section>Component-->_PatientCareProvisionEvent_
    This Implies that Effective Time and Centre are missing in the XML and I mean no values are passing to receiver right..
    In PI XSD 's it is there but in I think after Compiling REQUEST MAPPING and while in returning to RESPONSE MAPPING I mean whenever the Response is posting to SOAP WEBSERVICE it is unable to found those target elements and I think due to this...
    Am I Correct ?
    If that is the case...Let me know where the issue is whether in the data present in the WEBSERVICE created on target side or in PI Side..any issue...
    Regards:
    Amar Srinivas Eli
    Edited by: Amar Srinivas Eli on Jan 13, 2009 10:00 AM

  • Runtime exception occurred during application mapping

    Hi All,
    Please find the error message which we are getting:
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--
    Request Message Mapping
      -->
    - <SAP:Error SOAP:mustUnderstand="1" xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> 
      <SAP:Category>Application</SAP:Category> 
      <SAP:Code area="MAPPING">EXCEPTION_DURING_EXECUTE</SAP:Code> 
      <SAP:P1>com/sap/xi/tf/_CRM_COD_ProductCategoryHierarchy_R~</SAP:P1> 
      <SAP:P2>com.sap.aii.mappingtool.tf7.IllegalInstanceExcepti</SAP:P2> 
      <SAP:P3>on: Cannot create target element /ns0:ProductCateg</SAP:P3> 
      <SAP:P4>oryHierarchyMassReplicationRequest/ProductCategor~</SAP:P4> 
      <SAP:AdditionalText /> 
      <SAP:Stack>Runtime exception occurred during application mapping com/sap/xi/tf/_CRM_COD_ProductCategoryHierarchy_R~; com.sap.aii.mappingtool.tf7.IllegalInstanceException: Cannot create target element /ns0:ProductCategoryHierarchyMassReplicationRequest/ProductCategor~</SAP:Stack> 
      <SAP:Retry>M</SAP:Retry> 
      </SAP:Error>
    Please give your expert Advice on the same.
    Regards
    RK

    Dear Rableen,
    As Muniyappan and peter told about the mandatory field value is missing for the target element
    "/ns0:ProductCategoryHierarchyMassReplicationRequest/ProductCategor", I am able to see other fields are also not getting input data.
    as below
    "Cannot create target element /ns0:ProductCateg"
    Request you to test with the payload in message mapping and activate the message mapping first and then edit your operation mapping and call the same message mapping in your operation mapping and activate all your objects.
    Thank you!
    Regards
    Hanumantha Rao

Maybe you are looking for

  • Can I link My contacts in 2 different Apple id's ?

    I Have my personal Apple id in my iphone 6 but now I have a working Apple id in my iPhone 4s and I want to have only one contacts list but keep my iMessage and everything apart

  • FInal Cut Express HD 3.0 and Tiger 10.4.6

    I recently upgraded from Panther 10.3.9 to Tiger 10.4.6 on my 1.25ghz g4 laptop with 1.2gb RAM and Final Cut Express HD 3.0 is misbehaving. It quits when trying to capture (I had to capture in imovie and import the imovie file) and stutters in playba

  • Goods Issue posting in multiple company codes

    Hello All, While the sales order is PGI'd , there are multiple accounting documents generated. One for the sales under selling organizations company code X and another one posts a COGS under a different company code Y(Posts as Intercompany Accoountin

  • Can we capture and filter out wavelengths with the camera?

    Hi, I don't know if somebody can answer this, but is there a method to filter out wavelengths using the lumia camera and capture them? This capability could be applied in the field of biophotonics. So e.g. you make an app that sets the camera to only

  • IT0040 Data in PY - International

    Experts, We are implementing PY for Saudi Arabia (PY International). Requirement is, Customer want to use IT0040 to maintain u201CCompany Caru201D for employees. If an employee uses Company car, he is not eligible for Conveyance which should be proce