i am trying the hornetQ examples by coping the code directly into my MessageClient and MDB.
 
MessageClient 
==============
import javax.naming.InitialContext;  
import javax.jms.Queue;
import javax.jms.Session;
import javax.jms.*;
import javax.jms.QueueSender;
import javax.jms.QueueSession;
import javax.jms.JMSException;
import javax.jms.ObjectMessage;
import javax.jms.QueueConnection;
import javax.jms.QueueConnectionFactory;
import javax.naming.*;
import java.util.*; 
 
public class SendMailToQueue implements java.io.Serializable 
{
          public final static String JMS_FACTORY="ConnectionFactory";
//          public final static String QUEUE="queue/testQueue";
          public final static String QUEUE="queue/test";
 
          private Queue queue;
          private QueueSender qsender;
          private QueueSession qsession;
          private QueueConnection qcon;
          private QueueConnectionFactory qconFactory;
          private TextMessage  msg;  
          ConnectionFactory cf = null;
          Connection connection =  null;
          Session session = null;
 
          public SendMailToQueue(){
                    try{
  
                              Hashtable<String, String> env = new Hashtable<String, String>();
                              env.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
                              env.put(Context.PROVIDER_URL, "jnp://localhost:1099");
                              env.put(Context.URL_PKG_PREFIXES, "org.jboss.naming:org.jnp.interfaces"); 
                              InitialContext ic = new InitialContext(env);  
                              cf = (ConnectionFactory)ic.lookup("/ConnectionFactory");
                              queue = (Queue)ic.lookup(QUEUE); 
                              connection = cf.createConnection();
                              session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
                              MessageConsumer subscriber = session.createConsumer(queue);
                              connection.start();
                    }
                    catch(Exception e){
                              e.printStackTrace();
                    }
          } 
 
          public void send(String message) throws Exception{
                    try{
                              MessageProducer producer  = session.createProducer(queue);
                              msg = session.createTextMessage(message);
                              //msg.setObject(message);
                              System.out.println(" DEBUG >>>>> MSG :: " + message);
                              System.out.println(" DEBUG >>>>> the createObjectMessage gave the MSG :: " +  msg);
                              producer.send(msg);
                              //producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
  
                              System.out.println(" DEBUG >>>>> Message added to queue for Delivery");
                    }
                    catch(Exception e) {
                              e.printStackTrace();
                    }
          }
  
          public void close() throws Exception{
                    connection.stop();
                    session.close();
                    connection.close();
          }
  
          public static void main(String args[]){
                    SendMailToQueue sm = new SendMailToQueue();
          }
}
       
================
 
here is my MDB
 
===================
 
 
import javax.jms.Message;
import javax.jms.JMSException;
import javax.jms.ObjectMessage;
import javax.jms.MessageListener;
 
 
import javax.ejb.*;
import javax.jms.*;
import org.jboss.ejb3.annotation.ResourceAdapter;
 
 
 
 
@MessageDriven(
name = "EmailMessageBean",activationConfig ={
@ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
@ActivationConfigProperty(propertyName = "destination", propertyValue = "queue/test")})
 
 
@ResourceAdapter("hornetq-ra.rar")
 
 
public class EmailMessageBean implements  MessageListener{
 
 
          private MessageDrivenContext messageDrivenContext;
 
 
          public void ejbActivate(){
          }
 
 
          public void ejbRemove(){
          }
 
 
          public void ejbPassivate(){
          }
 
 
          public void setMessageDrivenContext(MessageDrivenContext messageDrivenContext){
                    this.messageDrivenContext = messageDrivenContext;
          }
 
 
          public void ejbCreate() {
          }
  
//          @Override 
          public void onMessage(Message msg){
  
                              System.out.println(" DEBUG >>>>> Message Found for Delivery2222222"); 
  
                                                  System.out.println(" DEBUG >>>>> Message Found for Delivery"); 
                                                  System.out.println(" DEBUG >>>>> Message Sent using jms");
  
  
                    }
                     
}
=====================================
 
hornetq-jms.xml
================
<queue name="test">
      <entry name="/queue/test"/>
      <durable>true</durable>
</queue>
================
 
=======server.log===========================================================================================================
 
  JBoss Bootstrap Environment
 
 
  JBOSS_HOME: D:\jboss-6.0.0.20100911-M5
 
 
  JAVA: D:\j2sdk1.6\bin\java
 
 
  JAVA_OPTS: -Dprogram.name=run.bat -Xms128M -Xmx512M -XX:MaxPermSize=256M -Dsun.rmi.
dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dorg.jboss.res
olver.warning=true -server
 
 
  CLASSPATH: D:\j2sdk1.6\lib\tools.jar;D:\jboss-6.0.0.20100911-M5\bin\run.jar
 
 
===============================================================================
 
 
10:33:55,328 INFO  [AbstractJBossASServerBase] Server Configuration:
 
 
        JBOSS_HOME URL: file:/D:/jboss-6.0.0.20100911-M5/
        Bootstrap: $JBOSS_HOME\server/default/conf/bootstrap.xml
        Common Base: $JBOSS_HOME\common/
        Common Library: $JBOSS_HOME\common/lib/
        Server Name: default
        Server Base: $JBOSS_HOME\server/
        Server Library: $JBOSS_HOME\server/default/lib/
        Server Config: $JBOSS_HOME\server/default/conf/
        Server Home: $JBOSS_HOME\server/default/
        Server Data: $JBOSS_HOME\server/default/data/
        Server Log: $JBOSS_HOME\server/default/log/
        Server Temp: $JBOSS_HOME\server/default/tmp/
 
 
10:33:55,343 INFO  [AbstractServer] Starting: JBossAS [6.0.0.20100911-M5 "Neo"]
10:34:00,500 INFO  [ServerInfo] Java version: 1.6.0,Sun Microsystems Inc.
10:34:00,500 INFO  [ServerInfo] Java Runtime: Java(TM) SE Runtime Environment (build1.6.0-b105)
10:34:00,500 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.6.0-b105,Sun Microsystems Inc.
10:34:00,500 INFO  [ServerInfo] OS-System: Windows XP 5.1,x8610:34:00,500 INFO  [ServerInfo] VM arguments: -Dprogram.name=run.bat -Xms128M -Xmx512
M -XX:MaxPermSize=256M -Dsun.rmi.dgc.client.gcInterval=3600000 -Dsun.rmi.dgc.server.gcInterval=3600000 -Dorg.jboss.resolver.warning=true -Djava.endorsed.dirs=D:\jboss-6.0
.0.20100911-M5\lib\endorsed
10:34:00,609 INFO  [JMXKernel] Legacy JMX core initialized
10:34:29,343 INFO  [AbstractServerConfig] JBoss Web Services - Stack CXF Server 3.4.0.Beta2
10:34:30,265 INFO  [JSFImplManagementDeployer] Initialized 2 JSF configurations: [Mojarra-1.2, Mojarra-2.0]
10:35:06,359 WARNING [FileConfigurationParser] AIO wasn't located on this platform, it will fall back to using pure Java NIO. If your platform is Linux, install LibAIO to enable the AIO journal
10:35:24,093 WARN  [ModuleNameDeployer] Module name savoya derived from the modules relative path in AbstractVFSDeploymentContext@25609229{vfs:///D:/jboss-6.0.0.20100911-M5/server/default/deploy/savoya.ear/savoya.war/} was not unique within the application; using module name savoya.war instead
10:35:24,109 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@30802962{vfs:///D:/jboss-6.0.0.20100911-M5/server/default/deploy/savoya.ear/savoya.jar/}
10:35:24,109 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@30802962{vfs:///D:/jboss-6.0.0.20100911-M5/server/default/deploy/savoya.ear/savoya.jar/}
10:35:24,109 INFO  [Ejb3DependenciesDeployer] Encountered deployment AbstractVFSDeploymentContext@30802962{vfs:///D:/jboss-6.0.0.20100911-M5/server/default/deploy/savoya.ear/savoya.jar/}
10:35:27,109 WARNING [FileConfigurationParser] AIO wasn't located on this platform, it will fall back to using pure Java NIO. If your platform is Linux, install LibAIO to enable the AIO journal
10:35:27,468 INFO  [JMXConnector] starting JMXConnector on host 127.0.0.1:1090
10:35:28,703 INFO  [MailService] Mail Service bound to java:/Mail
10:35:31,468 INFO  [HornetQServerImpl] live server is starting..
10:35:31,640 INFO  [JournalStorageManager] Using NIO Journal
10:35:33,328 INFO  [NettyAcceptor] Started Netty Acceptor version 3.2.1.Final-r2319 127.0.0.1:5445 for CORE protocol
10:35:33,343 INFO  [NettyAcceptor] Started Netty Acceptor version 3.2.1.Final-r2319 127.0.0.1:5455 for CORE protocol
10:35:33,359 INFO  [HornetQServerImpl] HornetQ Server version 2.1.2.Final (Colmeia, 120) started
10:35:33,468 INFO  [WebService] Using RMI server codebase: http://127.0.0.1:8083/10:35:34,078 WARN  [arjuna] [com.arjuna.ats.arjuna.tools.osb.mbean.ObjStoreTypeBean.m_6] - Error registering bean for class Recovery\TransactionStatusManager : No suitable handler.
10:35:34,078 WARN  [arjuna] [com.arjuna.ats.arjuna.tools.osb.mbean.ObjStoreTypeBean.m_6] - Error registering bean for class Recovery\TransactionStatusManager : No suitable handler.
10:35:35,640 INFO  [AprLifecycleListener] The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: D:\j2sdk1.6\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;D:\j2sd
k1.6\jre\bin;D:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\an
t\bin;D:\jboss-6.0.0.20100911-M5\bin;D:\j2sdk1.6\bin;%JIKES_HOME%\bin;C:\Program Files\ZipGenius 6\;C:\Program Files\Common Files\Lenovo;D:\selenium-java-client-driver;%J
AMES_HOME%\bin\run.bat;C:\Program Files\apache-tomcat-5.5.33\common\lib\servlet-api.jar;%PATH%;D:\j2sdk1.6\bin;c:\php5\bin;c:\php5\bin\ext;D:\source\v2src\externallib\act
ivation.jar;D:\source\v2src\externallib\mail.jar;D:\source\v2src\externallib\gcagapi.jar;
10:35:36,015 INFO  [TomcatDeployment] deploy, ctxPath=/invoker
10:35:37,453 INFO  [ModClusterService] Initializing mod_cluster 1.1.0.CR3
10:35:37,656 INFO  [RARDeployment] Required license terms exist, view vfs:/D:/jboss-6.0.0.20100911-M5/server/default/deploy/jboss-local-jdbc.rar/META-INF/ra.xml
10:35:37,687 INFO  [RARDeployment] Required license terms exist, view vfs:/D:/jboss-6.0.0.20100911-M5/server/default/deploy/jboss-xa-jdbc.rar/META-INF/ra.xml
10:35:37,703 INFO  [RARDeployment] Required license terms exist, view vfs:/D:/jboss-6.0.0.20100911-M5/server/default/deploy/jms-ra.rar/META-INF/ra.xml
10:35:37,734 INFO  [HornetQResourceAdapter] HornetQ resource adaptor started
10:35:37,734 INFO  [RARDeployment] Required license terms exist, view vfs:/D:/jboss-6.0.0.20100911-M5/server/default/deploy/mail-ra.rar/META-INF/ra.xml
10:35:37,781 INFO  [RARDeployment] Required license terms exist, view vfs:/D:/jboss-6.0.0.20100911-M5/server/default/deploy/quartz-ra.rar/META-INF/ra.xml
10:35:37,906 INFO  [SimpleThreadPool] Job execution threads will use class loader ofthread: Thread-2
10:35:37,984 INFO  [SchedulerSignalerImpl] Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
10:35:37,984 INFO  [QuartzScheduler] Quartz Scheduler v.1.8.0 created.
10:35:38,000 INFO  [RAMJobStore] RAMJobStore initialized.
10:35:38,000 INFO  [QuartzScheduler] Scheduler meta-data: Quartz Scheduler (v1.8.0) 'JBossQuartzScheduler' with instanceId 'NON_CLUSTERED'  Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
  NOT STARTED.
  Currently in standby mode.
  Number of jobs executed: 0
  Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
  Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence
. and is not clustered.
 
 
10:35:38,000 INFO  [StdSchedulerFactory] Quartz scheduler 'JBossQuartzScheduler' initialized from an externally opened InputStream.
10:35:38,000 INFO  [StdSchedulerFactory] Quartz scheduler version: 1.8.0
10:35:38,000 INFO  [QuartzScheduler] Scheduler JBossQuartzScheduler_$_NON_CLUSTERED started.
10:35:39,062 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=DefaultDS' to JNDI name 'java:DefaultDS'
10:35:39,703 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=ConnectionFactoryBinding,name=JmsXA' to JNDI name 'java:JmsXA'
10:35:39,828 INFO  [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=mysedanDS' to JNDI name 'java:mysedanDS'
10:35:39,921 WARN  [InterceptorInfoRepository] EJBTHREE-1852: InterceptorInfoRepository is deprecated
10:35:39,937 WARN  [InterceptorInfoRepository] EJBTHREE-1852: InterceptorInfoRepository is deprecated
10:35:39,953 INFO  [JBossASKernel] Created KernelDeployment for: resolver.jar
10:35:39,953 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=resolver.jar,name=resolver,service=EJB3
10:35:39,953 INFO  [JBossASKernel]   with dependencies:
10:35:39,953 INFO  [JBossASKernel]   and demands:
10:35:39,953 INFO  [JBossASKernel]   and supplies:
10:35:39,953 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=resolver.jar,name=resolver,service=EJB3) to KernelDeployment of: resolver.jar
10:35:39,968 INFO  [ClientENCInjectionContainer] STARTED CLIENT ENC CONTAINER: resolver
10:35:40,000 WARN  [InterceptorInfoRepository] EJBTHREE-1852: InterceptorInfoRepository is deprecated
10:35:40,000 WARN  [InterceptorInfoRepository] EJBTHREE-1852: InterceptorInfoRepository is deprecated
10:35:40,000 INFO  [JBossASKernel] Created KernelDeployment for: xmlc.jar
10:35:40,015 INFO  [JBossASKernel] installing bean: jboss.j2ee:jar=xmlc.jar,name=xmlc,service=EJB3
10:35:40,015 INFO  [JBossASKernel]   with dependencies:
10:35:40,015 INFO  [JBossASKernel]   and demands:
10:35:40,015 INFO  [JBossASKernel]   and supplies:
10:35:40,015 INFO  [JBossASKernel] Added bean(jboss.j2ee:jar=xmlc.jar,name=xmlc,service=EJB3) to KernelDeployment of: xmlc.jar
10:35:40,015 INFO  [ClientENCInjectionContainer] STARTED CLIENT ENC CONTAINER: xmlc
10:35:40,171 INFO  [xnio] XNIO Version 2.1.0.CR2
10:35:40,187 INFO  [nio] XNIO NIO Implementation Version 2.1.0.CR2
10:35:40,875 INFO  [remoting] JBoss Remoting version 3.1.0.Beta2
10:35:41,515 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#ProfileEJB,uid20831624
10:35:41,515 INFO  [EjbDeployer]   with dependencies:
10:35:41,515 INFO  [EjbDeployer]   and supplies:
10:35:41,515 INFO  [EjbDeployer]        jndi:com.mysedan.service.profile.ejb.ProfileHome
10:35:41,515 INFO  [EjbDeployer]        jndi:savoya/ProfileEJB/com.mysedan.service.profile.ejb.Profile
10:35:41,515 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsLandmark,uid20258715
10:35:41,515 INFO  [EjbDeployer]   with dependencies:
10:35:41,515 INFO  [EjbDeployer]   and supplies:
10:35:41,515 INFO  [EjbDeployer]        jndi:MsLandmark
10:35:41,531 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsLandmark.MsLandmarkHome
10:35:41,531 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#FleetEJB,uid11411638
 
 
10:35:41,531 INFO  [EjbDeployer]   with dependencies:
10:35:41,531 INFO  [EjbDeployer]   and supplies:
10:35:41,531 INFO  [EjbDeployer]        jndi:com.mysedan.service.fleet.ejb.FleetHome
10:35:41,531 INFO  [EjbDeployer]        jndi:savoya/FleetEJB/com.mysedan.service.fleet.ejb.Fleet
10:35:41,531 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#PegasusEJB,uid31832892
10:35:41,546 INFO  [EjbDeployer]   with dependencies:
10:35:41,546 INFO  [EjbDeployer]   and supplies:
10:35:41,546 INFO  [EjbDeployer]        jndi:savoya/PegasusEJB/com.mysedan.service.pegasus.ejb.Pegasus
10:35:41,546 INFO  [EjbDeployer]        jndi:com.mysedan.service.pegasus.ejb.PegasusHome
10:35:41,546 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#ReservationEJB,uid23564365
10:35:41,546 INFO  [EjbDeployer]   with dependencies:
10:35:41,546 INFO  [EjbDeployer]   and supplies:
10:35:41,546 INFO  [EjbDeployer]        jndi:savoya/ReservationEJB/com.mysedan.service.reservation.ejb.Reservation
10:35:41,562 INFO  [EjbDeployer]        jndi:com.mysedan.service.reservation.ejb.ReservationHome
10:35:41,562 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsLookup,uid3324469
10:35:41,562 INFO  [EjbDeployer]   with dependencies:
10:35:41,562 INFO  [EjbDeployer]   and supplies:
10:35:41,562 INFO  [EjbDeployer]        jndi:MsLookup
10:35:41,562 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsLookup.MsLookupHome
 
 
10:35:41,562 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsIntActor,uid6229895
10:35:41,562 INFO  [EjbDeployer]   with dependencies:
10:35:41,562 INFO  [EjbDeployer]   and supplies:
10:35:41,578 INFO  [EjbDeployer]        jndi:MsIntActor
10:35:41,578 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsIntActor.MsIntActorHome
10:35:41,578 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsMetro,uid16019574
10:35:41,578 INFO  [EjbDeployer]   with dependencies:
10:35:41,578 INFO  [EjbDeployer]   and supplies:
10:35:41,578 INFO  [EjbDeployer]        jndi:MsMetro
10:35:41,578 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsMetro.MsMetroHome
10:35:41,578 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#LogManagerEJB,uid228479
10:35:41,578 INFO  [EjbDeployer]   with dependencies:
10:35:41,593 INFO  [EjbDeployer]   and supplies:
10:35:41,593 INFO  [EjbDeployer]        jndi:com.mysedan.service.log.ejb.LogManagerHome
10:35:41,593 INFO  [EjbDeployer]        jndi:savoya/LogManagerEJB/com.mysedan.service.log.ejb.LogManager
10:35:41,593 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsLicensee,uid14853912
10:35:41,593 INFO  [EjbDeployer]   with dependencies:
10:35:41,593 INFO  [EjbDeployer]   and supplies:
10:35:41,593 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsLicensee.MsLicenseeHome
10:35:41,593 INFO  [EjbDeployer]        jndi:MsLicensee
10:35:41,609 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#PricingEJB,uid4725545
10:35:41,609 INFO  [EjbDeployer]   with dependencies:
10:35:41,609 INFO  [EjbDeployer]   and supplies:
10:35:41,609 INFO  [EjbDeployer]        jndi:com.mysedan.service.pricing.ejb.PricingHome
10:35:41,609 INFO  [EjbDeployer]        jndi:savoya/PricingEJB/com.mysedan.service.pricing.ejb.Pricing
10:35:41,609 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsCancellationReason,uid32456618
10:35:41,609 INFO  [EjbDeployer]   with dependencies:
10:35:41,609 INFO  [EjbDeployer]   and supplies:
10:35:41,625 INFO  [EjbDeployer]        jndi:MsCancellationReason
10:35:41,625 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsCancellationReason.MsCancellationReasonHome
10:35:41,625 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#AccountingEJB,uid3982157
10:35:41,625 INFO  [EjbDeployer]   with dependencies:
10:35:41,625 INFO  [EjbDeployer]   and supplies:
10:35:41,625 INFO  [EjbDeployer]        jndi:com.mysedan.service.accounting.ejb.AccountingHome
10:35:41,625 INFO  [EjbDeployer]        jndi:savoya/AccountingEJB/com.mysedan.service.accounting.ejb.Accounting
10:35:41,625 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsVehicleType,uid20588190
10:35:41,640 INFO  [EjbDeployer]   with dependencies:
10:35:41,640 INFO  [EjbDeployer]   and supplies:
10:35:41,640 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsVehicleType.MsVehicleTypeHome
10:35:41,640 INFO  [EjbDeployer]        jndi:MsVehicleType
10:35:41,640 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsCity,uid1240696910:35:41,640 INFO  [EjbDeployer]   with dependencies:
10:35:41,640 INFO  [EjbDeployer]   and supplies:
10:35:41,640 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsCity.MsCityHome
10:35:41,640 INFO  [EjbDeployer]        jndi:MsCity
10:35:41,656 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#ReportingEJB,uid16699974
10:35:41,656 INFO  [EjbDeployer]   with dependencies:
10:35:41,656 INFO  [EjbDeployer]   and supplies:
10:35:41,656 INFO  [EjbDeployer]        jndi:com.mysedan.service.reporting.ejb.ReportingHome
10:35:41,656 INFO  [EjbDeployer]        jndi:savoya/ReportingEJB/com.mysedan.service.reporting.ejb.Reporting
10:35:41,656 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsAffiliateAssignment,uid27206243
10:35:41,656 INFO  [EjbDeployer]   with dependencies:
10:35:41,656 INFO  [EjbDeployer]   and supplies:
10:35:41,671 INFO  [EjbDeployer]        jndi:MsAffiliateAssignment
10:35:41,671 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsAffiliateAssignment.MsAffiliateAssignmentHome
10:35:41,671 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#AuditEJB,uid9086964
10:35:41,671 INFO  [EjbDeployer]   with dependencies:
10:35:41,671 INFO  [EjbDeployer]   and supplies:
10:35:41,671 INFO  [EjbDeployer]        jndi:savoya/AuditEJB/com.mysedan.service.audit.ejb.Audit
10:35:41,671 INFO  [EjbDeployer]        jndi:com.mysedan.service.audit.ejb.AuditHome
10:35:41,671 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#DispatchEJB,uid18396067
10:35:41,671 INFO  [EjbDeployer]   with dependencies:
10:35:41,687 INFO  [EjbDeployer]   and supplies:
10:35:41,687 INFO  [EjbDeployer]        jndi:savoya/DispatchEJB/com.mysedan.service.dispatch.ejb.Dispatch
10:35:41,687 INFO  [EjbDeployer]        jndi:com.mysedan.service.dispatch.ejb.DispatchHome
10:35:41,687 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsPriceBuckets,uid12164128
10:35:41,687 INFO  [EjbDeployer]   with dependencies:
10:35:41,687 INFO  [EjbDeployer]   and supplies:
10:35:41,687 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsPriceBuckets.MsPriceBucketsHome
10:35:41,703 INFO  [EjbDeployer]        jndi:MsPriceBuckets
10:35:41,703 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsAirline,uid28907262
10:35:41,703 INFO  [EjbDeployer]   with dependencies:
10:35:41,703 INFO  [EjbDeployer]   and supplies:
10:35:41,703 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsAirline.MsAirlineHome
10:35:41,703 INFO  [EjbDeployer]        jndi:MsAirline
10:35:41,703 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsLicenseeInfo,uid9746175
10:35:41,703 INFO  [EjbDeployer]   with dependencies:
10:35:41,718 INFO  [EjbDeployer]   and supplies:
10:35:41,718 INFO  [EjbDeployer]        jndi:MsLicenseeInfo
10:35:41,718 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsLicenseeInfo.MsLicenseeInfoHome
10:35:41,718 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#AuthenticateEJB,uid24793314
10:35:41,718 INFO  [EjbDeployer]   with dependencies:
10:35:41,718 INFO  [EjbDeployer]   and supplies:
10:35:41,718 INFO  [EjbDeployer]        jndi:com.mysedan.service.authenticate.ejb.AuthenticateHome
10:35:41,718 INFO  [EjbDeployer]        jndi:savoya/AuthenticateEJB/com.mysedan.service.authenticate.ejb.Authenticate
10:35:41,734 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MessagingEJB,uid22300682
10:35:41,734 INFO  [EjbDeployer]   with dependencies:
10:35:41,734 INFO  [EjbDeployer]   and supplies:
10:35:41,734 INFO  [EjbDeployer]        jndi:savoya/MessagingEJB/com.mysedan.service.messaging.ejb.Messaging
10:35:41,734 INFO  [EjbDeployer]        jndi:com.mysedan.service.messaging.ejb.MessagingHome
10:35:41,734 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#LocationEJB,uid4559472
10:35:41,734 INFO  [EjbDeployer]   with dependencies:
10:35:41,734 INFO  [EjbDeployer]   and supplies:
10:35:41,750 INFO  [EjbDeployer]        jndi:savoya/LocationEJB/com.mysedan.service.location.ejb.Location
10:35:41,750 INFO  [EjbDeployer]        jndi:com.mysedan.service.location.ejb.LocationHome
10:35:41,750 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsCountry,uid26277946
10:35:41,750 INFO  [EjbDeployer]   with dependencies:
10:35:41,750 INFO  [EjbDeployer]   and supplies:
10:35:41,750 INFO  [EjbDeployer]        jndi:MsCountry
10:35:41,750 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsCountry.MsCountryHome
10:35:41,765 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#PaymentEJB,uid10009370
10:35:41,765 INFO  [EjbDeployer]   with dependencies:
10:35:41,765 INFO  [EjbDeployer]   and supplies:
10:35:41,765 INFO  [EjbDeployer]        jndi:savoya/PaymentEJB/com.mysedan.service.payment.ejb.Payment
10:35:41,765 INFO  [EjbDeployer]        jndi:com.mysedan.service.payment.ejb.PaymentHome
10:35:41,765 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MailEJB,uid19124556
10:35:41,765 INFO  [EjbDeployer]   with dependencies:
10:35:41,765 INFO  [EjbDeployer]   and supplies:
10:35:41,765 INFO  [EjbDeployer]        jndi:savoya/MailEJB/com.mysedan.service.mail2.ejb.Email
10:35:41,781 INFO  [EjbDeployer]        jndi:com.mysedan.service.mail2.ejb.EmailHome
10:35:41,781 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#ControllerEJB,uid8520531
10:35:41,781 INFO  [EjbDeployer]   with dependencies:
10:35:41,781 INFO  [EjbDeployer]   and supplies:
10:35:41,781 INFO  [EjbDeployer]        jndi:com.mysedan.application.limonet.control.ejb.EJBControllerHome
10:35:41,781 INFO  [EjbDeployer]        jndi:savoya/ControllerEJB/com.mysedan.application.limonet.control.ejb.EJBController
10:35:41,781 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#SlocalEJB,uid27804815
10:35:41,796 INFO  [EjbDeployer]   with dependencies:
10:35:41,796 INFO  [EjbDeployer]   and supplies:
10:35:41,796 INFO  [EjbDeployer]        jndi:savoya/SlocalEJB/com.mysedan.service.slocal.ejb.Slocal
10:35:41,796 INFO  [EjbDeployer]        jndi:com.mysedan.service.slocal.ejb.SlocalHome
10:35:41,796 INFO  [EjbDeployer] installing bean: ejb/savoya.jar#MsLicAff,uid2956973
10:35:41,796 INFO  [EjbDeployer]   with dependencies:
10:35:41,796 INFO  [EjbDeployer]   and supplies:
10:35:41,796 INFO  [EjbDeployer]        jndi:com.mysedan.lookup.MsLicAff.MsLicAffHome
 
 
10:35:41,812 INFO  [EjbDeployer]        jndi:MsLicAff
10:35:41,984 INFO  [EjbModule] Deploying ProfileEJB
10:35:42,093 INFO  [EjbModule] Deploying MsLandmark
10:35:42,171 INFO  [EjbModule] Deploying FleetEJB
10:35:42,187 INFO  [EjbModule] Deploying PegasusEJB
10:35:42,203 INFO  [EjbModule] Deploying ReservationEJB
10:35:42,218 INFO  [EjbModule] Deploying MsLookup
10:35:42,375 INFO  [EjbModule] Deploying MsIntActor
10:35:42,390 INFO  [EjbModule] Deploying MsMetro
10:35:42,406 INFO  [EjbModule] Deploying LogManagerEJB
10:35:42,421 INFO  [EjbModule] Deploying MsLicensee
10:35:42,437 INFO  [EjbModule] Deploying PricingEJB
10:35:42,453 INFO  [EjbModule] Deploying MsCancellationReason
10:35:42,468 INFO  [EjbModule] Deploying AccountingEJB
10:35:42,468 INFO  [EjbModule] Deploying MsVehicleType
10:35:42,484 INFO  [EjbModule] Deploying MsCity
10:35:42,546 INFO  [EjbModule] Deploying ReportingEJB
10:35:42,562 INFO  [EjbModule] Deploying MsAffiliateAssignment
10:35:42,578 INFO  [EjbModule] Deploying AuditEJB
10:35:42,593 INFO  [EjbModule] Deploying DispatchEJB
10:35:42,609 INFO  [EjbModule] Deploying MsPriceBuckets
10:35:42,609 INFO  [EjbModule] Deploying MsAirline
10:35:42,625 INFO  [EjbModule] Deploying MsLicenseeInfo
10:35:42,640 INFO  [EjbModule] Deploying AuthenticateEJB
10:35:42,656 INFO  [EjbModule] Deploying MessagingEJB
10:35:42,671 INFO  [EjbModule] Deploying LocationEJB
10:35:42,671 INFO  [EjbModule] Deploying MsCountry
10:35:42,687 INFO  [EjbModule] Deploying PaymentEJB
10:35:42,703 INFO  [EjbModule] Deploying MailEJB
10:35:42,718 INFO  [EjbModule] Deploying ControllerEJB
10:35:42,781 INFO  [EjbModule] Deploying SlocalEJB
10:35:42,781 INFO  [EjbModule] Deploying MsLicAff
10:35:46,109 INFO  [ProxyFactory] Bound EJB Home 'ProfileEJB' to jndi 'com.mysedan.service.profile.ejb.ProfileHome'
10:35:46,125 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsLandmark' to jndi 'com.mysedan.lookup.MsLandmark.MsLandmarkHome'
10:35:46,218 INFO  [ProxyFactory] Bound EJB Home 'FleetEJB' to jndi 'com.mysedan.service.fleet.ejb.FleetHome'
10:35:46,234 INFO  [ProxyFactory] Bound EJB Home 'PegasusEJB' to jndi 'com.mysedan.service.pegasus.ejb.PegasusHome'
10:35:46,265 INFO  [ProxyFactory] Bound EJB Home 'ReservationEJB' to jndi 'com.mysedan.service.reservation.ejb.ReservationHome'
10:35:46,281 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsLookup' to jndi 'com.mysedan.lookup.MsLookup.MsLookupHome'
10:35:46,312 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsIntActor' to jndi 'com.mysedan.lookup.MsIntActor.MsIntActorHome'
10:35:46,328 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsMetro' to jndi 'com.mysedan.lookup.MsMetro.MsMetroHome'
10:35:46,343 INFO  [ProxyFactory] Bound EJB Home 'LogManagerEJB' to jndi 'com.mysedan.service.log.ejb.LogManagerHome'
10:35:46,359 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsLicensee' to jndi 'com.mysedan.lookup.MsLicensee.MsLicenseeHome'
10:35:46,390 INFO  [ProxyFactory] Bound EJB Home 'PricingEJB' to jndi 'com.mysedan.service.pricing.ejb.PricingHome'
10:35:46,390 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsCancellationReason' to jndi 'com.mysedan.lookup.MsCancellationReason.MsCancellationReasonHome'
10:35:46,421 INFO  [ProxyFactory] Bound EJB Home 'AccountingEJB' to jndi 'com.mysedan.service.accounting.ejb.AccountingHome'
10:35:46,437 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsVehicleType' to jndi 'com.mysedan.lookup.MsVehicleType.MsVehicleTypeHome'
10:35:46,437 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsCity' to jndi 'com.mysedan.lookup.MsCity.MsCityHome'
10:35:46,468 INFO  [ProxyFactory] Bound EJB Home 'ReportingEJB' to jndi 'com.mysedan.service.reporting.ejb.ReportingHome'
10:35:46,468 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsAffiliateAssignment' to jndi 'com.mysedan.lookup.MsAffiliateAssignment.MsAffiliateAssignmentHome'
10:35:46,500 INFO  [ProxyFactory] Bound EJB Home 'AuditEJB' to jndi 'com.mysedan.service.audit.ejb.AuditHome'
10:35:46,625 INFO  [ProxyFactory] Bound EJB Home 'DispatchEJB' to jndi 'com.mysedan.service.dispatch.ejb.DispatchHome'
10:35:46,625 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsPriceBuckets' to jndi 'com.mysedan.lookup.MsPriceBuckets.MsPriceBucketsHome'
10:35:46,640 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsAirline' to jndi 'com.mysedan.lookup.MsAirline.MsAirlineHome'
10:35:46,656 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsLicenseeInfo' to jndi 'com.mysedan.lookup.MsLicenseeInfo.MsLicenseeInfoHome'
10:35:46,671 INFO  [ProxyFactory] Bound EJB Home 'AuthenticateEJB' to jndi 'com.mysedan.service.authenticate.ejb.AuthenticateHome'
10:35:46,687 INFO  [ProxyFactory] Bound EJB Home 'MessagingEJB' to jndi 'com.mysedan.service.messaging.ejb.MessagingHome'
10:35:46,718 INFO  [ProxyFactory] Bound EJB Home 'LocationEJB' to jndi 'com.mysedan.service.location.ejb.LocationHome'
10:35:46,734 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsCountry' to jndi 'com.mysedan.lookup.MsCountry.MsCountryHome'
10:35:46,750 INFO  [ProxyFactory] Bound EJB Home 'PaymentEJB' to jndi 'com.mysedan.service.payment.ejb.PaymentHome'
10:35:46,765 INFO  [ProxyFactory] Bound EJB Home 'MailEJB' to jndi 'com.mysedan.service.mail2.ejb.EmailHome'
10:35:46,781 INFO  [ProxyFactory] Bound EJB Home 'ControllerEJB' to jndi 'com.mysedan.application.limonet.control.ejb.EJBControllerHome'
10:35:46,812 INFO  [ProxyFactory] Bound EJB Home 'SlocalEJB' to jndi 'com.mysedan.service.slocal.ejb.SlocalHome'
10:35:46,828 INFO  [BaseLocalProxyFactory] Bound EJB LocalHome 'MsLicAff' to jndi 'com.mysedan.lookup.MsLicAff.MsLicAffHome'
10:35:46,921 INFO  [TomcatDeployment] deploy, ctxPath=/
10:35:48,125 INFO  [TomcatDeployment] deploy, ctxPath=/web
10:35:48,562 INFO  [service] Removing bootstrap log handlers
10:35:48,812 INFO  [org.apache.coyote.http11.Http11Protocol] Starting Coyote HTTP/1.1 on http-127.0.0.1-80
10:35:48,843 INFO  [org.apache.coyote.ajp.AjpProtocol] Starting Coyote AJP/1.3 on ajp-127.0.0.1-8009
10:35:48,843 INFO  [org.jboss.bootstrap.impl.base.server.AbstractServer] JBossAS [6.0.0.20100911-M5 "Neo"] Started in 1m:53s:437ms
10:35:54,890 INFO  [STDOUT] DEBUG>> Starting RealPathForScreenDef = D:\jboss-6.0.0.20100911-M5\server\default\tmp\vfs\automountc8ea805e578e9855\savoya.war-757040070ce99058\WEB-INF\xml\screendefinitions.xml
10:35:54,890 INFO  [STDOUT] Loading the file screendefinitions.xml
10:35:55,359 INFO  [STDOUT]
10:35:55,359 INFO  [STDOUT]
10:35:55,359 INFO  [STDOUT]  ScreenFlowXmlDAO testMode = true
10:35:55,359 INFO  [STDOUT]
10:35:55,359 INFO  [STDOUT]
10:35:55,375 INFO  [STDOUT] *** Non Fatal errror: currenturl /pslgrouphome defined more than once in urlmappings file
10:35:55,375 INFO  [STDOUT] *** Non Fatal errror: currenturl /sleventhome defined more than once in urlmappings file
10:35:55,375 INFO  [STDOUT] ScreenFlowXmlDAO affiliateSigninScreenURL = /affiliatesignin
10:35:56,171 INFO  [STDOUT] [ *********************** WEB REQUEST STARTS HERE ******************** ]
10:35:56,171 INFO  [STDOUT] JBOSS APPLICATION GETTING URL AT MAIN SERVLET :: localhost/internal/cchome
10:35:56,187 INFO  [STDOUT]
10:35:56,187 INFO  [STDOUT]  Remote IP address :: 127.0.0.1
10:35:56,187 INFO  [STDOUT]
10:35:56,187 INFO  [STDOUT]
10:35:56,187 INFO  [STDOUT]
10:35:56,187 INFO  [STDOUT]  REQUEST>>>> STARTING NEW SESSION
10:35:56,203 INFO  [STDOUT] DEBUG >>>>> Creating NEW ModelManager
10:35:56,203 INFO  [STDOUT] Getting new EJBController
10:35:57,812 INFO  [STDOUT] Getting new EJBController
10:35:57,812 INFO  [STDOUT] REQUEST: The Actual Selected URL is :: /cchome
10:35:57,812 INFO  [STDOUT] REQUEST: The current state for request process :: false
10:35:57,828 INFO  [STDOUT]
10:35:57,828 INFO  [STDOUT]  The next screen url is :: /cchome
10:35:57,828 INFO  [STDOUT]
10:35:57,828 INFO  [STDOUT]  The current screen url is :: cchome
10:35:57,828 INFO  [STDOUT]
10:35:57,828 INFO  [STDOUT] DM ----> modelManager.getSignOut() :: false
10:35:57,828 INFO  [STDOUT] REQUEST: We are not currently LOGGED_IN :: Diverting to the sign in screen
10:35:58,468 INFO  [STDOUT] REQUEST: We have a not null screen definition
10:35:58,468 INFO  [STDOUT]
10:35:58,468 INFO  [STDOUT] DISPLAY MANAGER current.getCurrentScreen() : internalsignin
10:35:58,484 INFO  [STDOUT]
10:35:58,484 INFO  [STDOUT] DISPLAY MANAGER current.getNextScreen() : cchome
10:35:58,484 INFO  [STDOUT]
10:35:58,484 INFO  [STDOUT] REQUEST: The operation of the request screen is :: cookiesignin
10:35:58,484 INFO  [STDOUT] The Handler BEING USED is :: com.mysedan.application.limonet.control.web.internal.handlers.InternalSigninHandler@ac0acb
10:35:58,484 INFO  [STDOUT] REQUEST: INVOKING THE REQUEST HANDLER
10:35:58,484 INFO  [STDOUT] Request Handler :: currentURL,Operation :: /internalsignin,null
10:36:00,453 INFO  [STDOUT] Reloading Done for
10:36:00,468 INFO  [STDOUT] GET_STATECOUNTRIES
10:36:04,484 INFO  [STDOUT] Reloading Done for
10:36:04,484 INFO  [STDOUT] GET_ALL_METROS
10:36:04,828 INFO  [STDOUT] Reloading Done for
10:36:04,843 INFO  [STDOUT] GET_VEH_TYPES :: CACHED_MODEL_GLOBAL_VEH_TYPES
10:36:04,968 INFO  [STDOUT] Reloading Done for
10:36:04,968 INFO  [STDOUT] GET_VEH_TYPES :: CACHED_MODEL_LOCAL_VEH_TYPES
10:36:04,968 INFO  [STDOUT] BEGIN RezEvent: 8 Actor= [] LoggedInActor= [] Mgr= []
10:36:04,984 INFO  [STDOUT]
10:36:04,984 INFO  [STDOUT]
10:36:04,984 INFO  [STDOUT] serverSecureName = localhost
10:36:04,984 INFO  [STDOUT]
10:36:04,984 INFO  [STDOUT]
10:36:05,000 INFO  [STDOUT]
10:36:05,000 INFO  [STDOUT]
10:36:05,000 INFO  [STDOUT]  serverName = secure3.savoya.com
10:36:05,000 INFO  [STDOUT]
10:36:05,000 INFO  [STDOUT]
10:36:05,187 INFO  [STDOUT] Reloading Done for
10:36:05,187 INFO  [STDOUT] GET_AIRLINES
10:36:05,203 INFO  [STDOUT]
10:36:05,203 INFO  [STDOUT]
10:36:05,203 INFO  [STDOUT]  Profile EJB cfg serverSecureName = localhost
10:36:05,203 INFO  [STDOUT]
10:36:05,203 INFO  [STDOUT]
10:36:05,203 INFO  [STDOUT]
10:36:05,203 INFO  [STDOUT]
10:36:05,218 INFO  [STDOUT]  Profile EJB serverName = secure3.savoya.com
10:36:05,218 INFO  [STDOUT]
10:36:05,218 INFO  [STDOUT]
10:36:05,250 INFO  [STDOUT] Reloading Done for
10:36:05,250 INFO  [STDOUT] GET_CC_TYPES
10:36:05,250 INFO  [STDOUT] BEGIN RezEvent: 14 Actor= [] LoggedInActor= [] Mgr= []
10:36:05,265 INFO  [STDOUT] DEBUG>> subtype = 1:event:16:1:group.gif|2:rdshow:16:1:roadshow.gif|3:multiday:16:1:multiday.gif|6:dmc-event:16:1:dmcevent.gif|7:dmc-meeting:1
6:1:dmcmtg.gif|9:meeting:16:1:group.gif|10:quotes:16:1:quotes.gif|11:event-ground won, dmc lost:16:1:egwdl.gif|12:event-ground lost, dmc won:16:1:egldw.gif|13:meeting-gro
und won, dmc lost:16:1:mgwdl.gif|14:meeting-ground lost, dmc won:16:1:mgldw.gif|15:onsite meeting:16:1:osmtg.gif|16:out of town:16:1:multiday.gif
10:36:05,281 INFO  [STDOUT] DEBUG>> subtypeid = 1
10:36:05,281 INFO  [STDOUT] DEBUG>> subtypename = event
10:36:05,281 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,281 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,281 INFO  [STDOUT] DEBUG>> icon = group.gif
10:36:05,281 INFO  [STDOUT] DEBUG>> subtypeid = 2
10:36:05,281 INFO  [STDOUT] DEBUG>> subtypename = rdshow
10:36:05,296 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,296 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,296 INFO  [STDOUT] DEBUG>> icon = roadshow.gif
10:36:05,296 INFO  [STDOUT] DEBUG>> subtypeid = 3
10:36:05,296 INFO  [STDOUT] DEBUG>> subtypename = multiday
10:36:05,296 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,296 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,296 INFO  [STDOUT] DEBUG>> icon = multiday.gif
10:36:05,296 INFO  [STDOUT] DEBUG>> subtypeid = 6
10:36:05,296 INFO  [STDOUT] DEBUG>> subtypename = dmc-event
10:36:05,296 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,312 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,312 INFO  [STDOUT] DEBUG>> icon = dmcevent.gif
10:36:05,312 INFO  [STDOUT] DEBUG>> subtypeid = 7
10:36:05,312 INFO  [STDOUT] DEBUG>> subtypename = dmc-meeting
10:36:05,312 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,312 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,312 INFO  [STDOUT] DEBUG>> icon = dmcmtg.gif
10:36:05,312 INFO  [STDOUT] DEBUG>> subtypeid = 9
10:36:05,312 INFO  [STDOUT] DEBUG>> subtypename = meeting
10:36:05,312 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,328 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,328 INFO  [STDOUT] DEBUG>> icon = group.gif
10:36:05,328 INFO  [STDOUT] DEBUG>> subtypeid = 10
10:36:05,328 INFO  [STDOUT] DEBUG>> subtypename = quotes
10:36:05,328 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,328 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,328 INFO  [STDOUT] DEBUG>> icon = quotes.gif
10:36:05,328 INFO  [STDOUT] DEBUG>> subtypeid = 11
10:36:05,328 INFO  [STDOUT] DEBUG>> subtypename = event-ground won, dmc lost
10:36:05,328 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,328 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,343 INFO  [STDOUT] DEBUG>> icon = egwdl.gif
10:36:05,343 INFO  [STDOUT] DEBUG>> subtypeid = 12
10:36:05,343 INFO  [STDOUT] DEBUG>> subtypename = event-ground lost, dmc won
10:36:05,343 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,343 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,343 INFO  [STDOUT] DEBUG>> icon = egldw.gif
10:36:05,343 INFO  [STDOUT] DEBUG>> subtypeid = 13
10:36:05,343 INFO  [STDOUT] DEBUG>> subtypename = meeting-ground won, dmc lost
10:36:05,343 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,343 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,359 INFO  [STDOUT] DEBUG>> icon = mgwdl.gif
10:36:05,359 INFO  [STDOUT] DEBUG>> subtypeid = 14
10:36:05,359 INFO  [STDOUT] DEBUG>> subtypename = meeting-ground lost, dmc won
10:36:05,359 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,359 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,359 INFO  [STDOUT] DEBUG>> icon = mgldw.gif
10:36:05,359 INFO  [STDOUT] DEBUG>> subtypeid = 15
10:36:05,359 INFO  [STDOUT] DEBUG>> subtypename = onsite meeting
10:36:05,359 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,359 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,359 INFO  [STDOUT] DEBUG>> icon = osmtg.gif
10:36:05,375 INFO  [STDOUT] DEBUG>> subtypeid = 16
10:36:05,375 INFO  [STDOUT] DEBUG>> subtypename = out of town
10:36:05,375 INFO  [STDOUT] DEBUG>> typeid = 16
10:36:05,375 INFO  [STDOUT] DEBUG>> highlight = 1
10:36:05,375 INFO  [STDOUT] DEBUG>> icon = multiday.gif
10:36:05,375 INFO  [STDOUT] Reloading Done for
10:36:05,375 INFO  [STDOUT] GET_REZSUBTYPES
10:36:05,453 INFO  [STDOUT] Reloading Done for
10:36:05,453 INFO  [STDOUT] GET_PRICE_BUCKETS
10:36:05,453 INFO  [STDOUT]
10:36:05,453 INFO  [STDOUT]  InternalSigninHandler client IP address :: 127.0.0.1
10:36:05,453 INFO  [STDOUT]
10:36:05,468 INFO  [STDOUT] REQUEST: FormDataException in request handler
10:36:05,468 INFO  [STDOUT] REQUEST: Display Manager SOURCE URL:: null
10:36:05,765 INFO  [STDOUT]     wrap(getSiteContext()     :: /internal
10:36:05,890 INFO  [STDOUT] <--BannerMenuHelper::handleModelCollection()-->
10:36:06,046 INFO  [STDOUT] DEBUG >>> Start of BODY TimeStamp : IST 10:01:06:046
10:36:06,218 INFO  [STDOUT] DEBUG >>> End of BODY TimeStamp : IST 10:01:06:218
10:36:06,250 INFO  [STDOUT] [ *********************** WEB REQUEST ENDS HERE ******************** ]
10:36:06,250 INFO  [STDOUT]
10:36:06,281 INFO  [STDOUT] DEBUG >>> End of Web Request HTML TimeStamp : IST 10:01:06:281
10:36:12,265 INFO  [STDOUT] [ *********************** WEB REQUEST STARTS HERE ******************** ]
10:36:12,265 INFO  [STDOUT] JBOSS APPLICATION GETTING URL AT MAIN SERVLET :: localhost/internal/internalsignin
10:36:12,265 INFO  [STDOUT]
10:36:12,265 INFO  [STDOUT]  Remote IP address :: 127.0.0.1
10:36:12,265 INFO  [STDOUT]
10:36:12,265 INFO  [STDOUT] REQUEST: The Actual Selected URL is :: /internalsignin
10:36:12,265 INFO  [STDOUT] REQUEST: The current state for request process :: false
10:36:12,265 INFO  [STDOUT]
10:36:12,265 INFO  [STDOUT]  The next screen url is :: /cchome
 
10:36:17,265 INFO  [STDOUT] JBOSS APPLICATION GETTING URL AT MAIN SERVLET :: localhos
t/internal/dsptmainlist
10:36:17,265 INFO  [STDOUT]
10:36:17,265 INFO  [STDOUT]  Remote IP address :: 127.0.0.1
10:36:17,265 INFO  [STDOUT]
10:36:17,281 INFO  [STDOUT] REQUEST: The Actual Selected URL is :: /dsptmainlist
10:36:17,296 INFO  [STDOUT] REQUEST: The current state for request process :: false
10:36:17,328 INFO  [STDOUT]
10:36:17,328 INFO  [STDOUT]  The next screen url is :: /dsptmainlist
10:36:17,328 INFO  [STDOUT]
10:36:17,328 INFO  [STDOUT]  The current screen url is :: dsptmainlist
10:36:17,328 INFO  [STDOUT]
10:36:17,343 INFO  [STDOUT] DM ----> modelManager.getSignOut() :: false
10:36:17,343 INFO  [STDOUT] REQUEST: We have a not null screen definition
10:36:17,343 INFO  [STDOUT]
10:36:17,343 INFO  [STDOUT] DISPLAY MANAGER current.getCurrentScreen() : dsptmainlist
 
 
10:36:17,343 INFO  [STDOUT]
10:36:17,343 INFO  [STDOUT] DISPLAY MANAGER current.getNextScreen() : dsptmainlist
10:36:17,343 INFO  [STDOUT]
10:36:17,343 INFO  [STDOUT] REQUEST: The operation of the request screen is :: null
10:36:17,343 INFO  [STDOUT] The Handler BEING USED is :: com.mysedan.application.limo
net.control.web.internal.handlers.dispatch.DispatchHandler@1c6ab97
10:36:17,343 INFO  [STDOUT] REQUEST: INVOKING THE REQUEST HANDLER
10:36:17,343 INFO  [STDOUT] Request Handler :: currentURL,Operation :: /dsptmainlist,
null
10:36:17,343 INFO  [STDOUT]
10:36:17,343 INFO  [STDOUT]  DispatchHandler NoActionProcess Request 1
10:36:17,343 INFO  [STDOUT]
10:36:17,390 INFO  [STDOUT]
10:36:17,390 INFO  [STDOUT]  Profile DaoImpl Company getProfiles() pageno is : 0
10:36:17,390 INFO  [STDOUT]
10:36:17,390 INFO  [STDOUT]  Profile DaoImpl Company getProfiles() Query Criteria is
:  FROM ms_company c where bitand(c.roles, 33554432) != 0 and  (c.status is null or
(c.status != 4 AND c.status != 0)) and  c.licensee_id=1
10:36:17,390 INFO  [STDOUT]
10:36:17,781 INFO  [STDOUT]
10:36:17,781 INFO  [STDOUT]  Profile DaoImpl Company getProfiles() pageno is : 0
10:36:17,781 INFO  [STDOUT]
10:36:17,781 INFO  [STDOUT]  Profile DaoImpl Company getProfiles() Query Criteria is
:  FROM ms_company c where bitand(c.roles, 352321536) != 0 and  (c.status is null or
 (c.status != 4 AND c.status != 0)) and  c.licensee_id=1
10:36:17,781 INFO  [STDOUT]
10:36:18,218 INFO  [STDOUT]
10:36:18,218 INFO  [STDOUT]  Dispatch Handler before drivers event
10:36:18,218 INFO  [STDOUT]
10:36:18,234 INFO  [STDOUT]
10:36:18,234 INFO  [STDOUT]  Profile DaoImpl Actor getProfiles() pageno is : 0
10:36:18,234 INFO  [STDOUT]
10:36:18,234 INFO  [STDOUT]  Profile DaoImpl Actor getProfiles() Query Criteria is :
 FROM ms_int_actor where bitand(roles, 256) != 0 and status in (2,6) and bitand(roles
, -1048576) = 0 and bitand(roles, 2048) = 0 and  (group_actor ! = 1 or group_actor is
 null) and licensee_id = 1 and rownum < 2000
10:36:18,234 INFO  [STDOUT]
10:36:18,234 INFO  [STDOUT]
10:36:18,234 INFO  [STDOUT]  Profile DaoImpl Actor getProfiles() before Query is exec
uted:
10:36:18,234 INFO  [STDOUT]
10:36:18,250 INFO  [STDOUT]
10:36:18,250 INFO  [STDOUT]  Profile DaoImpl Actor getProfiles() after Query is execu
ted:
10:36:18,250 INFO  [STDOUT]
10:36:18,296 INFO  [STDOUT]
10:36:18,296 INFO  [STDOUT]  Profile Dao Impl getProfiles() could not decript the pre
viousPasswords Illegal Block Size: Input length must be multiple of 8 when decrypting
 with padded cipher
10:36:18,609 INFO  [STDOUT]
10:36:18,609 INFO  [STDOUT]  Profile Dao Impl getProfiles() could not decript the pre
viousPasswords Illegal Block Size: Input length must be multiple of 8 when decrypting
 with padded cipher
10:36:18,718 INFO  [STDOUT]
10:36:18,718 INFO  [STDOUT]  Profile Dao Impl getProfiles() could not decript the pre
viousPasswords Illegal Block Size: Input length must be multiple of 8 when decrypting
 with padded cipher
10:36:18,750 INFO  [STDOUT]
10:36:18,750 INFO  [STDOUT]  Profile DaoImpl Actor getProfiles() Debug Statement 1:
10:36:18,750 INFO  [STDOUT]
10:36:18,750 INFO  [STDOUT]
10:36:18,750 INFO  [STDOUT]  Profile DaoImpl Actor getProfiles() before returning act
or collection Debug Statement 2:
10:36:18,750 INFO  [STDOUT]
10:36:18,750 INFO  [STDOUT]
10:36:18,750 INFO  [STDOUT]
10:36:18,750 INFO  [STDOUT]  Dispatch Handler after drivers event
10:36:18,750 INFO  [STDOUT]
10:36:18,796 INFO  [STDOUT] SiteId in Fleet DAO :: 1
10:36:18,796 INFO  [STDOUT] queryString is: SELECT vehicle_id, vehicle_name, vehicle_
type_id, vehicle_type_name, make, model, year, color, num_pax, mileage, next_service_
date, next_oil_change, adv_booking_hour, min_booking_hour,vehicle_license_plate,vehic
le_phone,metro_id, status, driver_id, ranking  FROM ms_vehicle WHERE  status != -1 an
d licensee_id=1
10:36:18,812 INFO  [STDOUT]
10:36:18,812 INFO  [STDOUT]  DispatchHandler NoActionProcess Request 2
10:36:18,812 INFO  [STDOUT]
10:36:18,828 INFO  [STDOUT] queryString is: SELECT * from (SELECT mesg_id, resource_i
d, valid_start_date, valid_end_date, source_actor_id, target_actor_id, message, creat
e_time, licensee_id  FROM ms_alerts WHERE (licensee_id = 1 and target_actor_id is nul
l)  or target_actor_id = 160969 ORDER BY valid_end_date asc, create_time desc) WHERE
rownum < 2000
10:36:18,843 INFO  [STDOUT]
10:36:18,843 INFO  [STDOUT]  DispatchHandler NoActionProcess Request 3
10:36:18,843 INFO  [STDOUT]
10:36:18,843 INFO  [STDOUT]
10:36:18,843 INFO  [STDOUT]  DispatchHandler searchMainRezlist()
10:36:18,843 INFO  [STDOUT]
10:36:18,859 INFO  [STDOUT] BEGIN DispEvent: 3 Actor=guest - 00 [SP+DRV+CSR+DIS+OM+BC
+BM+ADM+IC+GS+DEV+DEVREP] LoggedInActor=guest [SP+DRV+CSR+DIS+OM+BC+BM+ADM+IC+GS+DEV+
DEVREP] Mgr= []
10:36:18,906 INFO  [STDOUT]
10:36:18,921 INFO  [STDOUT]
10:36:18,921 INFO  [STDOUT]  Reservation DAO Impl getReservations() pkey query is : S
ELECT /*+ INDEX (r IX_REZ_PICKUP_TIME) */ distinct(r.REZ_ID),  r.pickup_time  FROM ms
_reservation r  WHERE  r.pickup_time >= to_date('01/21/2013 11:30', 'MM/DD/YYYY HH24:
MI') and  r.pickup_time <= to_date('01/23/2013 01:06', 'MM/DD/YYYY HH24:MI') and  bit
and(r.ops_status, 536871009) > 1 and  ((bitand(r.ops_status, 11780097) = 1) or ((bita
nd(r.ops_status, 16385) = 16385) and (r.missing_in_action = 1 or r.incident_in_progre
ss = 1 or r.do_not_call = 1 or r.on_board_notification = 1 or r.vip_cont_text = 1 or
r.vip_cont_call = 1 or r.vip_cont_15min_text = 1 or r.vip_cont_15min_call = 1)) or ((
bitand(r.ops_status, 32769) = 32769) and (r.missing_in_action = 1 or r.incident_in_pr
ogress = 1)) or  (bitand(r.ops_status, 33554433) = 33554433) or ((bitand(r.ops_status
, 131073) = 131073) and (r.missing_in_action = 1 or r.incident_in_progress = 1 or r.d
o_not_call = 1 or r.vip_cont_text = 1 or r.vip_cont_call = 1 or r.vip_cont_15min_text
 = 1 or r.vip_cont_15min_call = 1))) and  bitand(r.ops_status,1)=1 and  r.licensee_id
=1 ORDER BY r.pickup_time
10:36:18,921 INFO  [STDOUT]
10:36:18,921 INFO  [STDOUT]
10:36:18,953 INFO  [STDOUT]  Reservation DAO Impl PKEYString is(4697841,4645412)
10:36:18,953 INFO  [STDOUT]
10:36:18,953 INFO  [STDOUT]  Reservation DAO Impl before final query is executed Debu
g Statement 1
10:36:18,953 INFO  [STDOUT]
10:36:18,953 INFO  [STDOUT]
10:36:18,953 INFO  [STDOUT]  Reservation DAO Impl after final query is executed Debug
 Statement 1
10:36:18,953 INFO  [STDOUT]
10:36:19,000 INFO  [STDOUT]
10:36:19,000 INFO  [STDOUT]  Reservation DAOImpl.java getTcOrPaxInformation
10:36:19,000 INFO  [STDOUT] queryString is: SELECT distinct a.actor_id, a.misc_attr,
a.division  FROM ms_actor a  WHERE a.actor_id in (169538)
10:36:19,000 INFO  [STDOUT]
10:36:19,000 INFO  [STDOUT]  Reservation DAO Impl Debug Statement 7 pKeyCount 2
10:36:19,015 INFO  [STDOUT]
10:36:19,015 INFO  [STDOUT]
10:36:19,015 INFO  [STDOUT]  Reservation DAO Impl Debug Statement 8 rezc.size() 2
10:36:19,015 INFO  [STDOUT]
10:36:19,015 INFO  [STDOUT]
10:36:19,015 INFO  [STDOUT]  Profile DaoImpl Company getProfiles() pageno is : 0
10:36:19,015 INFO  [STDOUT]
 
10:36:19,031 INFO  [STDOUT] REQUEST: FormDataException in request handler
10:36:19,031 INFO  [STDOUT] REQUEST: Display Manager SOURCE URL:: null
10:36:19,156 INFO  [STDOUT]     wrap(getSiteContext()     :: /internal
10:36:19,156 INFO  [STDOUT]
10:36:19,156 INFO  [STDOUT]  ModelManager checkSessionTimeOut() :::
10:36:19,156 INFO  [STDOUT]
10:36:19,187 INFO  [STDOUT] <--BannerMenuHelper::handleModelCollection()-->
10:36:19,406 INFO  [STDOUT] Helper DEBUG >>>  counter list is null
10:36:19,437 INFO  [STDOUT] DEBUG >>> Start of BODY TimeStamp : IST 10:01:19:437
10:36:19,593 INFO  [STDOUT] DEBUG >>> End of BODY TimeStamp : IST 10:01:19:593
10:36:19,625 INFO  [STDOUT] [ *********************** WEB REQUEST ENDS HERE *********
*********** ]
10:36:19,625 INFO  [STDOUT]
10:36:19,671 INFO  [STDOUT] DEBUG >>> End of Web Request HTML TimeStamp : IST 10:01:1
9:671
10:36:36,781 INFO  [STDOUT] [ *********************** WEB REQUEST STARTS HERE *******
************* ]
10:36:36,781 INFO  [STDOUT] JBOSS APPLICATION GETTING URL AT MAIN SERVLET :: localhos
t/internal/dsptmainlist
10:36:36,781 INFO  [STDOUT]
10:36:36,796 INFO  [STDOUT]  Remote IP address :: 127.0.0.1
10:36:36,796 INFO  [STDOUT]
10:36:36,796 INFO  [STDOUT] REQUEST: The Actual Selected URL is :: /dsptmainlist
10:36:36,796 INFO  [STDOUT] REQUEST: The current state for request process :: true
10:36:36,796 INFO  [STDOUT]
10:36:36,796 INFO  [STDOUT]  The next screen url is :: /dsptmainlist
10:36:36,796 INFO  [STDOUT]
10:36:36,796 INFO  [STDOUT]  The current screen url is :: dsptmainlist
10:36:36,796 INFO  [STDOUT]
10:36:36,796 INFO  [STDOUT] DM ----> modelManager.getSignOut() :: false
10:36:36,796 INFO  [STDOUT] REQUEST: We have a not null screen definition
10:36:36,796 INFO  [STDOUT]
10:36:36,796 INFO  [STDOUT] DISPLAY MANAGER current.getCurrentScreen() : dsptmainlist
 
 
10:36:36,796 INFO  [STDOUT]
10:36:36,796 INFO  [STDOUT] DISPLAY MANAGER current.getNextScreen() : dsptmainlist
10:36:36,812 INFO  [STDOUT]
10:36:36,812 INFO  [STDOUT] REQUEST: The operation of the request screen is :: emailp
ax
10:36:36,812 INFO  [STDOUT] The Handler BEING USED is :: com.mysedan.application.limo
net.control.web.internal.handlers.dispatch.DispatchHandler@b4717c
10:36:36,812 INFO  [STDOUT] REQUEST: INVOKING THE REQUEST HANDLER
10:36:36,812 INFO  [STDOUT] Request Handler :: currentURL,Operation :: /dsptmainlist,
emailpax
10:36:36,812 INFO  [STDOUT] BEGIN DispEvent: 26 Actor=guest - 00 [SP+DRV+CSR+DIS+OM+B
C+BM+ADM+IC+GS+DEV+DEVREP] LoggedInActor=guest [SP+DRV+CSR+DIS+OM+BC+BM+ADM+IC+GS+DEV
+DEVREP] Mgr= []
10:36:36,828 INFO  [STDOUT]
10:36:36,828 INFO  [STDOUT]
10:36:36,828 INFO  [STDOUT]  Reservation DAO Impl getReservations() pkey query is : S
ELECT /*+ INDEX (r IX_REZ_PICKUP_TIME) */ distinct(r.REZ_ID),  r.pickup_time  FROM ms
_reservation r  WHERE  r.rez_id = 4697841 and  bitand(r.ops_status,1)=1 and  r.licens
ee_id=1 ORDER BY r.pickup_time
10:36:36,828 INFO  [STDOUT]
10:36:36,843 INFO  [STDOUT]
10:36:36,843 INFO  [STDOUT]  Reservation DAO Impl PKEYString is(4697841)
10:36:36,843 INFO  [STDOUT]
10:36:36,843 INFO  [STDOUT]  Reservation DAO Impl before final query is executed Debu
g Statement 1
10:36:36,843 INFO  [STDOUT]
10:36:36,859 INFO  [STDOUT]
10:36:36,859 INFO  [STDOUT]  Reservation DAO Impl after final query is executed Debug
 Statement 1
10:36:36,859 INFO  [STDOUT]
10:36:36,875 INFO  [STDOUT] queryString is: SELECT i.rez_id, i.inv_id  FROM ms_invoic
e_payment i  WHERE i.rez_id in (4697841)
10:36:36,875 INFO  [STDOUT] queryString is: SELECT rez_id, rez_type_id, rez_subtype_i
d, num_pax, cancellation_num, cancellation_reason_id, incident_severity, incident_typ
e_id, driver_arrival_time, pickup_time, dropoff_time, num_hours, dropoff_metro_id, dr
opoff_metro_name, dropoff_name, dropoff_lm_type_id, dropoff_iata, dropoff_line1, drop
off_line2, dropoff_city, dropoff_province, dropoff_postal, dropoff_timezone, dep_flig
ht_liner, dep_flight_num, dep_flight_time, arr_flight_liner, arr_flight_num, arr_flig
ht_time, miles_in, miles_out, extra_stops, garage_out_time,garage_in_time FROM ms_rez
_completion WHERE rez_id in (4697841)
10:36:36,875 INFO  [STDOUT] queryString is: SELECT rez_id, cost_index_id, cost_amount
 FROM ms_rez_cost WHERE rez_id in (4697841)
10:36:36,890 INFO  [STDOUT] queryString is: SELECT rez_id, charge_index_id, charge_am
ount FROM ms_rez_charge WHERE rez_id in (4697841)
10:36:36,890 INFO  [STDOUT]
10:36:36,890 INFO  [STDOUT]  Reservation DAO Impl Debug Statement 7 pKeyCount 1
10:36:36,890 INFO  [STDOUT]
10:36:36,890 INFO  [STDOUT]
10:36:36,890 INFO  [STDOUT]  Reservation DAO Impl Debug Statement 8 rezc.size() 1
10:36:36,890 INFO  [STDOUT]
10:36:36,921 INFO  [STDOUT] queryString is: SELECT  actor_id, company_id, first_name,
 last_name,  userid, password, secret_question, secret_answer, roles,  invoice_auth
FROM ms_actor WHERE actor_id = 169538 AND licensee_id=1
10:36:36,921 INFO  [STDOUT] DEBUG REZ EJB service : EMAIL FORMAT 3
10:36:36,968 INFO  [STDOUT]
10:36:36,968 INFO  [STDOUT]
10:36:36,968 INFO  [STDOUT]  Reservation EJB sendEmail() on top
10:36:36,968 INFO  [STDOUT]
10:36:36,968 INFO  [STDOUT]
10:36:36,968 INFO  [STDOUT]
10:36:36,968 INFO  [STDOUT]
10:36:36,968 INFO  [STDOUT]  Reservation EJB sendEmail() inside to :srouthu@ektha.com
 
 
10:36:36,968 INFO  [STDOUT]
10:36:36,968 INFO  [STDOUT]
10:36:36,984 INFO  [STDOUT]
10:36:36,984 INFO  [STDOUT]
10:36:36,984 INFO  [STDOUT]  Reservation EJB final sendEmail()  emailCode :1
10:36:36,984 INFO  [STDOUT]
10:36:36,984 INFO  [STDOUT]
10:36:37,000 INFO  [STDOUT]
10:36:37,000 INFO  [STDOUT]  Profile DaoImpl Actor getCustomInfoForProfiles() querySt
ring is : SELECT actor_id, licensee_id, chauffeur_sms, onsite_sms, onboard_sms, email
, chauffeur_email, onsite_email, onboard_email, receipt_email, misc_attr,division FRO
M MS_ACTOR where  actor_id in (169538) and licensee_id = 1 and rownum < 2000
10:36:37,000 INFO  [STDOUT]
10:36:37,000 INFO  [STDOUT]
10:36:37,000 INFO  [STDOUT]  Profile DaoImpl Actor getCustomInfoForProfiles() after Q
uery is executed:
10:36:37,000 INFO  [STDOUT]
10:36:37,000 INFO  [STDOUT]
10:36:37,000 INFO  [STDOUT]  Profile DaoImpl Actor getCustomInfoForProfiles() Debug S
tatement 1:
10:36:37,000 INFO  [STDOUT]
10:36:37,000 INFO  [STDOUT]
10:36:37,000 INFO  [STDOUT]
10:36:37,000 INFO  [STDOUT]  Reservation EJB emailFormat 3
10:36:37,000 INFO  [STDOUT]
10:36:37,000 INFO  [STDOUT]
10:36:37,000 INFO  [STDOUT]
10:36:37,000 INFO  [STDOUT]  Reservation EJB EmailConstants.ATTACHMENT 5
10:36:37,000 INFO  [STDOUT]
10:36:37,031 INFO  [STDOUT] Am Ready To sendMail()
10:36:37,031 INFO  [STDOUT] DEBUG >>>>> Sending Email using JMS
10:36:37,593 INFO  [STDOUT]  DEBUG >>>>> MSG :: com.mysedan.service.mail2.model.Email
Info@1a443cb
10:36:37,609 INFO  [STDOUT]  DEBUG >>>>> the createObjectMessage gave the MSG :: Horn
etQMessage[null]:PERSISTENT
10:36:37,750 INFO  [STDOUT]  DEBUG >>>>> Message added to queue for Delivery
10:46:53,171 INFO  [STDOUT] BEGIN RezEvent: 5 Actor=guest - 00 [SP+DRV+CSR+DIS+OM+BC+
BM+ADM+IC+GS+DEV+DEVREP] LoggedInActor=guest [SP+DRV+CSR+DIS+OM+BC+BM+ADM+IC+GS+DEV+D
EVREP] Mgr= []
10:46:53,187 INFO  [STDOUT]
10:46:53,187 INFO  [STDOUT]
10:46:53,187 INFO  [STDOUT]  Reservation DAO Impl getReservations() pkey query is : S
ELECT /*+ INDEX (r IX_REZ_PICKUP_TIME) */ distinct(r.REZ_ID),  r.pickup_time  FROM ms
_reservation r  WHERE  r.rez_id = 4697841 and  bitand(r.ops_status,1)=1 and  r.licens
ee_id=1 ORDER BY r.pickup_time
10:46:53,187 INFO  [STDOUT]
10:46:53,187 INFO  [STDOUT]
10:46:53,187 INFO  [STDOUT]  Reservation DAO Impl PKEYString is(4697841)
10:46:53,187 INFO  [STDOUT]
10:46:53,187 INFO  [STDOUT]  Reservation DAO Impl before final query is executed Debu
g Statement 1
10:46:53,187 INFO  [STDOUT]
10:46:53,218 INFO  [STDOUT]
10:46:53,218 INFO  [STDOUT]  Reservation DAO Impl after final query is executed Debug
 Statement 1
10:46:53,218 INFO  [STDOUT]
10:46:53,234 INFO  [STDOUT] queryString is: SELECT i.rez_id, i.inv_id  FROM ms_invoic
e_payment i  WHERE i.rez_id in (4697841)
10:46:53,234 INFO  [STDOUT] queryString is: SELECT rez_id, rez_type_id, rez_subtype_i
d, num_pax, cancellation_num, cancellation_reason_id, incident_severity, incident_typ
e_id, driver_arrival_time, pickup_time, dropoff_time, num_hours, dropoff_metro_id, dr
opoff_metro_name, dropoff_name, dropoff_lm_type_id, dropoff_iata, dropoff_line1, drop
off_line2, dropoff_city, dropoff_province, dropoff_postal, dropoff_timezone, dep_flig
ht_liner, dep_flight_num, dep_flight_time, arr_flight_liner, arr_flight_num, arr_flig
ht_time, miles_in, miles_out, extra_stops, garage_out_time,garage_in_time FROM ms_rez
_completion WHERE rez_id in (4697841)
10:46:53,234 INFO  [STDOUT] queryString is: SELECT rez_id, cost_index_id, cost_amount
 FROM ms_rez_cost WHERE rez_id in (4697841)
10:46:53,234 INFO  [STDOUT] queryString is: SELECT rez_id, charge_index_id, charge_am
ount FROM ms_rez_charge WHERE rez_id in (4697841)
10:46:53,234 INFO  [STDOUT] queryString is: SELECT deviation_type, deviation_internal
_notes, conclusion_notes,  scorecard_notes, accounting_notes, investigation_notes, co
aching_notes, participants,  loa, discount, discount_chk, comp_rez, comp_rez_chk, com
p_hours, comp_hours_chk,  gifting, gifting_chk, assignment, assignment_chk, bookinger
ror, bookingerror_chk, bookingerrorphone, bookingerrorphone_chk,  bookingerroremail,
bookingerroremail_chk, bookingerrorportal, bookingerrorportal_chk, chauffeur_assgm_ch
arge, chauffeur_assgm_charge_chk,  chauffeur_complaint_chk, chauffeur_mia_chk, good_f
aith_chk,  location, location_chk, flight_tracking, flight_tracking_chk, greeter_comp
laint_chk,  missed_contact_call, missed_contact_call_chk, missed_out_call, missed_out
_call_chk, mod_error, mod_error_chk, mod_error_phone, mod_error_phone_chk,  mod_error
_email, mod_error_email_chk, mod_error_portal, mod_error_portal_chk, navigation_issue
, navigation_issue_chk, onsite_call, onsite_call_chk,  onsite_time, onsite_time_chk,
other, other_chk, pax_leftbehind, pax_leftbehind_chk, prep_call, prep_call_chk, Quoti
ng, Quoting_chk, signage, signage_chk,  spot_time_chk, vehicle_complaint_chk, wrong_v
eh_type, wrong_veh_type_chk, coaching_error, coaching_error_chk, coaching_non_error,
coaching_non_error_chk, coaching_complete_chk,  msd_pax_client_impted_chk, msd_pax_cl
ient_not_impted_chk, mvd_pax_client_impted_chk, mvd_pax_client_not_impted_chk, mcd_pa
x_impacted_chk, mcd_pax_not_impacted_chk, bill_review_comp_chk,  qa, qa_chk, qa_chk_m
ajor, webrez, webrez_chk, webrez_chk_major, farmout_chk, sav_procedure, sav_procedure
_chk, sav_procedure_chk_major, pax_utl_chauffer_chk, child_seat, child_seat_chk, chil
d_seat_chk_major,  mech_issue_chk, itinerary_chk, assignment_chk_major, bookingerror_
chk_major, be_phone_chk_major, be_email_chk_major, be_portal_chk_major, chauff_assign
_change_chk_major, location_chk_major, flight_tracking_chk_major, miss_cont_call_chk_
major,  miss_out_call_chk_major, mod_error_chk_major, mod_error_phone_chk_major, mod_
error_email_chk_major, mod_error_portal_chk_major, navigation_issue_chk_major, onsite
_call_chk_major, onsite_time_chk_major, other_chk_major, pax_leftbehind_chk_major, pr
ep_call_chk_major,  quoting_chk_major, signage_chk_major, wrong_veh_type_chk_major, c
oaching_error_chk_major, coaching_non_error_chk_major, bil_review_email_sent,  Comp_U
pgrade_chk, Comp_Upgrade_chk_major, Accident_chk, Accident_chk_major, chauffeur_compl
aint_chk_major, chauffeur_mia_chk_major, good_faith_chk_major, greeter_complaint_chk_
major, spot_time_chk_major, vehicle_complaint_chk_major,  farmout_chk_major, pax_utl_
chauffer_chk_major, mech_issue_chk_major, itinerary_chk_major, dispatch_comp_trip_not
es, ip_error, ip_error_chk, ip_error_chk_major,vendor_followup_complete_chk,client_fo
llowup_complete_chk   FROM ms_rez_deviations WHERE rez_id in (4697841)
10:46:53,250 INFO  [STDOUT]
10:46:53,250 INFO  [STDOUT]  Reservation DAO Impl Debug Statement 7 pKeyCount 1
10:46:53,250 INFO  [STDOUT]
10:46:53,250 INFO  [STDOUT]
10:46:53,250 INFO  [STDOUT]  Reservation DAO Impl Debug Statement 8 rezc.size() 1
10:46:53,250 INFO  [STDOUT]
10:46:53,265 INFO  [STDOUT]
10:46:53,265 INFO  [STDOUT]  Profile DaoImpl Company getProfiles() pageno is : 0
10:46:53,265 INFO  [STDOUT]
10:46:53,265 INFO  [STDOUT]  Profile DaoImpl Company getProfiles() Query Criteria is
:  FROM ms_company c where c.company_id in (10145009) and  c.licensee_id=1
 
 
 
=========================================================================================================================