Hi
We have a requirement with our client as below for customizing outlook:
1. User will be prompted for login for the first time when outlook is opened.
2. User will be prompted to key in 3 custom attributes (****, yyy,zzz).
3. Based on the entered values of the 3 custom attributes folder path will be created (/****.yyy.zzz)and the email has to be filed under this folder structure.
We were successful for filing the mails which are the sub types of dm_message_Archive succssfully as per the requirement. But when there are any attachements for the mails, we are not able to move the mails and are finding some exceptions: Below is the code of the TBO:
protected
synchronized void doSave(boolean arg0, String arg1, Object[] arg2)
throws DfException {
System.out.println("Entering doSave");
super.doSave(arg0, arg1, arg2);System.
out.println("exiting doSave");String srn =
"";String division =
"";String contract =
"";String folderpath =
"";IDfACL aclname =
null;String acldomain =
"";String folderowner=
"";String sourcefolderpath=
"";
int ownerpermit=4;IDfId sourceDir =
null;IDfId targetDir =
null;System.
out.println("hi");IDfSession session = getSession();
// IDfSessionManager sMgr = session.getSessionManager();
System.out.println("hi");IDfId documentId =
this.getObjectId();
System.out.println("documentID is" + documentId);
try {
client = clientx.getLocalClient();
if (documentId != null) {IDfDocument idfDoc = (IDfDocument) session
.getObject(documentId);
sourceDir = idfDoc.getFolderId(0);
IDfFolder folder1 = (IDfFolder)session.getObject(sourceDir);
sourcefolderpath=folder1.getFolderPath(0);
System.out.println("Source Dir is" + sourceDir+"folder path is "+sourcefolderpath);IDfSysObject obj = (IDfSysObject)session.getObject(sourceDir);
System.out.println("Object id of the imported document is "
+ documentId.toString());IDfDocument doc = (IDfDocument) session.getObject(documentId);System.out.println("object name "
+ doc.getString("object_name"));division = doc.getString(
"division");contract = doc.getString(
"contract");srn = doc.getString(
"srn");folderpath =
"/EPCS/" + division + "/" + contract + "/" + srn;
System.out.println("folderpath is" + folderpath);IDfFolder folder = (IDfFolder) session
.getObjectByPath(folderpath);
System.out.println("folder is " + folder);acldomain = folder.getACLDomain();
System.out.println("acldomain is" + acldomain);aclname = folder.getACL();
System.out.println("aclname is" + aclname.getObjectId());folderowner=folder.getOwnerName();
System.out.println("folder owner is "+folderowner);ownerpermit=folder.getOwnerPermit();
System.out.println("owner permit is"+ownerpermit);targetDir = folder.getObjectId();
doc.unlink(sourcefolderpath);System.out.println("document has been unlinked");doc.link(folderpath);
System.out.println("document has been linked");
doc.saveAsNew(true); //HERE WE ARE GETTING THE ERROR WHEN WE ARE SAVING AS NEW OBJECT OF THE MAIL WITH ATTACHEMENTS.
System.out.println("save of object completed");
}}catch (Exception e) {
tHE EXCEPTION we get is :
2011-04-07 18:04:29,741 DEBUG [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Creating jboss:service=TransactionManager
2011-04-07 18:04:29,743 DEBUG [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Created jboss:service=TransactionManager
2011-04-07 18:04:29,992 DEBUG [org.jnp.server.NamingBeanImpl] Using NamingServer: org.jnp.server.NamingServer@2e323
2011-04-07 18:04:29,992 DEBUG [org.jnp.server.NamingBeanImpl] Installed global NamingServer: org.jnp.server.NamingServer@2e323
2011-04-07 18:04:29,997 DEBUG [org.jnp.server.NamingBeanImpl] InitialContext Environment:
2011-04-07 18:04:29,998 DEBUG [org.jnp.server.NamingBeanImpl] key=java.naming.factory.initial, value(java.lang.String)=org.jnp.interfaces.NamingContextFactory
2011-04-07 18:04:29,998 DEBUG [org.jnp.server.NamingBeanImpl] key=java.naming.factory.url.pkgs, value(java.lang.String)=org.jboss.naming:org.jnp.interfaces
2011-04-07 18:04:30,196 DEBUG [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Starting jboss:service=TransactionManager
2011-04-07 18:04:30,196 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] JBossTS Transaction Service (JTA version) - JBoss Inc.
2011-04-07 18:04:30,196 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Setting up property manager MBean and JMX layer
2011-04-07 18:04:30,327 DEBUG [com.arjuna.ats.arjuna.logging.arjLoggerI18N] [com.arjuna.ats.arjuna.recovery.TransactionStatusManager_1] - Starting service com.arjuna.ats.arjuna.recovery.ActionStatusService on port 53472
2011-04-07 18:04:30,347 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] TransactionStatusManagerItem - host: 10.8.93.164 port: 53472
2011-04-07 18:04:30,351 DEBUG [com.arjuna.ats.arjuna.logging.arjLoggerI18N] [com.arjuna.ats.arjuna.recovery.TransactionStatusManager_3] - TransactionStatusManager started on port 53472 with service com.arjuna.ats.arjuna.recovery.ActionStatusService
2011-04-07 18:04:30,361 DEBUG [com.arjuna.ats.tsmx.logging.tsmxLogger] Registering mbean for module 'arjuna'
2011-04-07 18:04:30,365 DEBUG [com.arjuna.ats.tsmx.logging.tsmxLogger] Initialising JMX agent com.arjuna.ats.internal.jbossatx.agent.LocalJBossAgentImpl
2011-04-07 18:04:30,384 DEBUG [com.arjuna.ats.tsmx.logging.tsmxLogger] Registering mbean for module 'txoj'
2011-04-07 18:04:30,386 DEBUG [com.arjuna.ats.tsmx.logging.tsmxLogger] Registering mbean for module 'jta'
2011-04-07 18:04:30,406 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Starting recovery manager
2011-04-07 18:04:30,413 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger]
--- Start RecoveryActivators
2011-04-07 18:04:30,445 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger]
--- ExpiredEntryMonitor ----Thu, 7 Apr 2011 18:04:30----
2011-04-07 18:04:30,493 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.noxanodes] No XA recovery nodes specified. Will only recover saved states.
2011-04-07 18:04:30,525 DEBUG [com.arjuna.ats.arjuna.logging.arjLoggerI18N] [com.arjuna.ats.internal.arjuna.recovery.ready] RecoveryManagerImple is ready on port 53,475
2011-04-07 18:04:30,525 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Recovery manager started
2011-04-07 18:04:30,525 INFO [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Binding TransactionManager JNDI Reference
2011-04-07 18:04:30,538 DEBUG [com.arjuna.ats.jbossatx.jta.TransactionManagerService] Started jboss:service=TransactionManager
2011-04-07 18:04:35,651 INFO [org.jboss.ejb3.EJB3Deployer] Starting java:comp multiplexer
2011-04-07 18:04:38,163 INFO [org.jboss.ws.core.server.ServiceEndpointManager] jbossws-1.2.1.GA_CP01 (build=200709091843)
2011-04-07 18:04:40,130 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/, warUrl=.../deploy/jboss-web.deployer/ROOT.war/
2011-04-07 18:04:41,377 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/invoker, warUrl=.../deploy/http-invoker.sar/invoker.war/
2011-04-07 18:04:41,608 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/jbossws, warUrl=.../tmp/deploy/tmp31439jbossws-context-exp.war/
2011-04-07 18:04:42,115 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/web-console, warUrl=.../deploy/management/console-mgr.sar/web-console.war/
2011-04-07 18:04:42,805 INFO [org.jboss.mail.MailService] Mail Service bound to java:/Mail
2011-04-07 18:04:42,987 INFO [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-local-jdbc.rar
2011-04-07 18:04:43,026 INFO [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-ha-xa-jdbc.rar
2011-04-07 18:04:43,057 INFO [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-local-jdbc.rar
2011-04-07 18:04:43,090 INFO [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/jboss-xa-jdbc.rar
2011-04-07 18:04:43,114 INFO [org.jboss.resource.deployment.RARDeployment] Required license terms exist, view META-INF/ra.xml in .../deploy/quartz-ra.rar
2011-04-07 18:04:43,125 INFO [org.jboss.resource.adapter.quartz.inflow.QuartzResourceAdapter] start quartz!!!
2011-04-07 18:04:43,199 INFO [org.quartz.simpl.SimpleThreadPool] Job execution threads will use class loader of thread: main
2011-04-07 18:04:43,229 INFO [org.quartz.core.QuartzScheduler] Quartz Scheduler v.1.5.2 created.
2011-04-07 18:04:43,232 INFO [org.quartz.simpl.RAMJobStore] RAMJobStore initialized.
2011-04-07 18:04:43,232 INFO [org.quartz.impl.StdSchedulerFactory] Quartz scheduler 'DefaultQuartzScheduler' initialized from default resource file in Quartz package: 'quartz.properties'
2011-04-07 18:04:43,232 INFO [org.quartz.impl.StdSchedulerFactory] Quartz scheduler version: 1.5.2
2011-04-07 18:04:43,233 INFO [org.quartz.core.QuartzScheduler] Scheduler DefaultQuartzScheduler_$_NON_CLUSTERED started.
2011-04-07 18:04:47,956 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/jmx-console, warUrl=.../deploy/jmx-console.war/
2011-04-07 18:04:49,461 INFO [org.jboss.deployment.EARDeployer] Init J2EE application: file:/opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/DctmServer_DFS/deploy/DCOsp2.ear
2011-04-07 18:05:10,047 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/dco/smartfolder, warUrl=.../tmp/deploy/tmp31462DCOsp2.ear-contents/dco-smartfolder-exp.war/
2011-04-07 18:05:10,129 ERROR [STDERR] log4j:ERROR A "org.jboss.logging.appender.FileAppender" object is not assignable to a "org.apache.log4j.Appender" variable.
2011-04-07 18:05:10,129 ERROR [STDERR] log4j:ERROR The class "org.apache.log4j.Appender" was loaded by
2011-04-07 18:05:10,129 ERROR [STDERR] log4j:ERROR [org.jboss.mx.loading.UnifiedClassLoader3@1b64b70{ url=file:/opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/DctmServer_DFS/tmp/deploy/tmp31462DCOsp2.ear ,addedOrder=35}] whereas object of type
2011-04-07 18:05:10,129 ERROR [STDERR] log4j:ERROR "org.jboss.logging.appender.FileAppender" was loaded by [org.jboss.system.server.NoAnnotationURLClassLoader@1aaa14a].
2011-04-07 18:05:10,129 ERROR [STDERR] log4j:ERROR Could not instantiate appender named "FILE".
2011-04-07 18:05:10,510 ERROR [STDERR] Apr 7, 2011 6:05:10 PM com.sun.xml.ws.transport.http.servlet.WSServletContextListener contextInitialized
INFO: WSSERVLET12: JAX-WS context listener initializing
2011-04-07 18:05:13,805 INFO [STDOUT] DEPLOYMENT_ID = 586191994043791792
2011-04-07 18:05:14,039 ERROR [STDERR] Apr 7, 2011 6:05:14 PM com.sun.xml.ws.transport.http.servlet.WSServletDelegate <init>
INFO: WSSERVLET14: JAX-WS servlet initializing
2011-04-07 18:05:16,621 ERROR [STDERR] log4j:ERROR A "org.jboss.logging.appender.FileAppender" object is not assignable to a "org.apache.log4j.Appender" variable.
2011-04-07 18:05:16,621 ERROR [STDERR] log4j:ERROR The class "org.apache.log4j.Appender" was loaded by
2011-04-07 18:05:16,621 ERROR [STDERR] log4j:ERROR [org.jboss.mx.loading.UnifiedClassLoader3@1b64b70{ url=file:/opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/DctmServer_DFS/tmp/deploy/tmp31462DCOsp2.ear ,addedOrder=35}] whereas object of type
2011-04-07 18:05:16,621 ERROR [STDERR] log4j:ERROR "org.jboss.logging.appender.FileAppender" was loaded by [org.jboss.system.server.NoAnnotationURLClassLoader@1aaa14a].
2011-04-07 18:05:16,621 ERROR [STDERR] log4j:ERROR Could not instantiate appender named "FILE".
2011-04-07 18:05:16,799 INFO [STDOUT] 18:05:16,799 INFO [JKSKeystoreUtilForDfc] keystore file name is /opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/DctmServer_DFS/tmp/deploy/tmp31462DCOsp2.ear-contents/APP-INF/classes/dfc.keystore
2011-04-07 18:05:18,638 INFO [STDOUT] 18:05:18,638 INFO [CreateIdentityCredential$MultiFormatPKIKeyPair] generated RSA (1,024-bit strength) mutiformat key pair in 638 ms
2011-04-07 18:05:18,698 INFO [STDOUT] 18:05:18,698 INFO [CreateIdentityCredential] certificate created for DFC <CN=dfc_ixdsViGPvbOFtd0teZ9MWk1z2uQa,O=EMC,OU=Documentum> valid from Thu Apr 07 18:00:16 SGT 2011 to Sun Apr 04 18:05:16 SGT 2021:
2011-04-07 18:05:18,708 INFO [STDOUT] 18:05:18,707 INFO [JKSKeystoreUtilForDfc] keystore file name is /opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/DctmServer_DFS/tmp/deploy/tmp31462DCOsp2.ear-contents/APP-INF/classes/dfc.keystore
2011-04-07 18:05:18,737 INFO [STDOUT] 18:05:18,737 INFO [InitializeKeystoreForDfc] [DFC_SECURITY_IDENTITY_INITIALIZED] Initialized new identity in keystore, DFC alias=dfc, identity=dfc_ixdsViGPvbOFtd0teZ9MWk1z2uQa
2011-04-07 18:05:18,744 INFO [STDOUT] 18:05:18,744 INFO [JKSKeystoreUtilForDfc] keystore file name is /opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/DctmServer_DFS/tmp/deploy/tmp31462DCOsp2.ear-contents/APP-INF/classes/dfc.keystore
2011-04-07 18:05:18,750 INFO [STDOUT] 18:05:18,750 INFO [AuthenticationMgrForDfc] identity for authentication is dfc_ixdsViGPvbOFtd0teZ9MWk1z2uQa
2011-04-07 18:05:18,773 INFO [STDOUT] 18:05:18,773 INFO [RuntimeContext] DFC Version is 6.5.0.225SP2
2011-04-07 18:05:19,581 INFO [STDOUT] 18:05:19,581 INFO [ClassCacheManager$CacheCleanupTask] [DFC_BOF_RUNNING_CLEANUP] Running class cache cleanup task
2011-04-07 18:05:20,182 INFO [STDOUT] 18:05:20,182 INFO [DocbaseConnection] Object protocol version 2
2011-04-07 18:05:20,344 INFO [STDOUT] 18:05:20,344 INFO [AuthenticationMgr] new identity bundle <dfc_ixdsViGPvbOFtd0teZ9MWk1z2uQa 1302170720 10.8.93.164 Hds8SC8kPrtItQk0A8Ty5dtakL1/FciYNxPOUD2SRxq+UaryjYtoOND6EiGBt5+XzGvvX9g8W9xgq5WFSi7nSt4ME/58j5RedK8D9tfc8Yl+/tOERmXjesQP5nYYHVgI3EH+hYyQ4r2j4PFr2MentVrdKvNNS1aUiByveLMCNHg=>
2011-04-07 18:05:21,224 INFO [STDOUT] 18:05:21,224 INFO [JKSKeystoreUtilForDfc] keystore file name is /opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/DctmServer_DFS/tmp/deploy/tmp31462DCOsp2.ear-contents/APP-INF/classes/dfc.keystore
2011-04-07 18:05:21,325 INFO [STDOUT] 18:05:21,325 INFO [DfcIdentityPublisher] found client registration: false
2011-04-07 18:05:23,871 INFO [STDOUT] 18:05:23,870 INFO [PublicKeyCertificate] stored certificate for CN
2011-04-07 18:05:24,155 INFO [STDOUT] 18:05:24,155 INFO [IpAndRcHelper] filling in DCMT_EPCS a new record with this persistent certificate:
-----BEGIN CERTIFICATE-----
MIICGjCCAYMCECfcTYwLCUEDb7T+oZhnlF0wDQYJKoZIhvcNAQEFBQAwTjETMBEG
A1UECwwKRG9jdW1lbnR1bTEMMAoGA1UECgwDRU1DMSkwJwYDVQQDDCBkZmNfaXhk
c1ZpR1B2Yk9GdGQwdGVaOU1XazF6MnVRYTAeFw0xMTA0MDcxMDAwMTZaFw0yMTA0
MDQxMDA1MTZaME4xEzARBgNVBAsMCkRvY3VtZW50dW0xDDAKBgNVBAoMA0VNQzEp
MCcGA1UEAwwgZGZjX2l4ZHNWaUdQdmJPRnRkMHRlWjlNV2sxejJ1UWEwgZ8wDQYJ
KoZIhvcNAQEBBQADgY0AMIGJAoGBAKz5n6lYvj02PTR0AwwU5kHCu2NTVlmagLSt
Ur/YFLhuZLA/d5Y42CWU8oqS0eDPqspWggMEM3IZa9ODDjkBckJJrkBZpkXJG3Dk
zbujV3uyKqRwkWMhB0uZfFAdg4J32vNdEgUR1AM396ZwR3jrsIOm8fckP8OKKeMf
jYNIW9PNAgMBAAEwDQYJKoZIhvcNAQEFBQADgYEAUuoYYQGHviS9cNxCLtKCZwWh
/mZSsqdQlDv9rY/lLcJRkvTLG3VOaJKMbhx6Dc+tYwKRqKCLpONi9laGgxOqkLwG
8vWH1CyrrFKwaVD2H0UUvPwSItdXHKFPBz6ZPWOCGqv85tE2Vqcu5OPWF2FZFDHL
0z2j4ZbPbvU/mhSzooA=
-----END CERTIFICATE-----
2011-04-07 18:05:24,158 INFO [STDOUT] 18:05:24,158 INFO [DfcIdentityPublisher] found client registration: false
2011-04-07 18:05:25,195 INFO [STDOUT] 18:05:25,194 INFO [IpAndRcHelper] filling a new registration record for dfc_ixdsViGPvbOFtd0teZ9MWk1z2uQa
2011-04-07 18:05:25,253 INFO [STDOUT] 18:05:25,253 INFO [DfcIdentityPublisher] [DFC_SECURITY_GR_REGISTRATION_PUBLISH] this dfc instance is now published in the global registry DCMT_EPCS
2011-04-07 18:05:25,487 INFO [STDOUT] 18:05:25,487 INFO [DocbaseConnection] Object protocol version 2
2011-04-07 18:05:30,507 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/dco/ucf-1260198886284, warUrl=.../tmp/deploy/tmp31462DCOsp2.ear-contents/ucf-exp.war/
2011-04-07 18:05:30,672 INFO [org.jboss.deployment.EARDeployer] Started J2EE application: file:/opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/DctmServer_DFS/deploy/DCOsp2.ear
2011-04-07 18:05:30,673 INFO [org.jboss.deployment.EARDeployer] Init J2EE application: file:/opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/DctmServer_DFS/deploy/dfs.ear/
2011-04-07 18:05:55,500 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/services/bpm, warUrl=.../deploy/dfs.ear/services-bpm.war/
2011-04-07 18:05:55,782 ERROR [STDERR] Apr 7, 2011 6:05:55 PM com.sun.xml.ws.transport.http.servlet.WSServletContextListener contextInitialized
INFO: WSSERVLET12: JAX-WS context listener initializing
2011-04-07 18:05:58,444 INFO [STDOUT] DEPLOYMENT_ID = 759801014614594517
2011-04-07 18:05:58,750 ERROR [STDERR] Apr 7, 2011 6:05:58 PM com.sun.xml.ws.transport.http.servlet.WSServletDelegate <init>
INFO: WSSERVLET14: JAX-WS servlet initializing
2011-04-07 18:05:58,803 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/services/ci, warUrl=.../deploy/dfs.ear/services-ci.war/
2011-04-07 18:05:58,916 ERROR [STDERR] Apr 7, 2011 6:05:58 PM com.sun.xml.ws.transport.http.servlet.WSServletContextListener contextInitialized
INFO: WSSERVLET12: JAX-WS context listener initializing
2011-04-07 18:05:59,896 ERROR [STDERR] Apr 7, 2011 6:05:59 PM com.sun.xml.ws.transport.http.servlet.WSServletDelegate <init>
INFO: WSSERVLET14: JAX-WS servlet initializing
2011-04-07 18:05:59,938 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/services/collaboration, warUrl=.../deploy/dfs.ear/services-collaboration.war/
2011-04-07 18:06:00,050 ERROR [STDERR] Apr 7, 2011 6:06:00 PM com.sun.xml.ws.transport.http.servlet.WSServletContextListener contextInitialized
INFO: WSSERVLET12: JAX-WS context listener initializing
2011-04-07 18:06:00,345 ERROR [STDERR] Apr 7, 2011 6:06:00 PM com.sun.xml.ws.transport.http.servlet.WSServletDelegate <init>
INFO: WSSERVLET14: JAX-WS servlet initializing
2011-04-07 18:06:00,388 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/services/core, warUrl=.../deploy/dfs.ear/services-core.war/
2011-04-07 18:06:00,563 ERROR [STDERR] Apr 7, 2011 6:06:00 PM com.sun.xml.ws.transport.http.servlet.WSServletContextListener contextInitialized
INFO: WSSERVLET12: JAX-WS context listener initializing
2011-04-07 18:06:03,250 ERROR [STDERR] Apr 7, 2011 6:06:03 PM com.sun.xml.ws.transport.http.servlet.WSServletDelegate <init>
INFO: WSSERVLET14: JAX-WS servlet initializing
2011-04-07 18:06:03,317 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/services/search, warUrl=.../deploy/dfs.ear/services-search.war/
2011-04-07 18:06:03,488 ERROR [STDERR] Apr 7, 2011 6:06:03 PM com.sun.xml.ws.transport.http.servlet.WSServletContextListener contextInitialized
INFO: WSSERVLET12: JAX-WS context listener initializing
2011-04-07 18:06:03,832 ERROR [STDERR] Apr 7, 2011 6:06:03 PM com.sun.xml.ws.transport.http.servlet.WSServletDelegate <init>
INFO: WSSERVLET14: JAX-WS servlet initializing
2011-04-07 18:06:03,877 INFO [org.jboss.web.tomcat.service.TomcatDeployer] deploy, ctxPath=/services/ucf-1227621492937, warUrl=.../deploy/dfs.ear/ucf.war/
2011-04-07 18:06:03,975 INFO [org.jboss.deployment.EARDeployer] Started J2EE application: file:/opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/DctmServer_DFS/deploy/dfs.ear/
2011-04-07 18:06:03,976 ERROR [org.jboss.deployment.scanner.URLDeploymentScanner] Incomplete Deployment listing:
--- MBeans waiting for other MBeans ---
ObjectName: jboss.ejb:service=EJBTimerService,persistencePolicy=database
State: CONFIGURED
I Depend On:
jboss.jca:service=DataSourceBinding,name=DefaultDS
ObjectName: jboss:service=KeyGeneratorFactory,type=HiLo
State: CONFIGURED
I Depend On:
jboss:service=TransactionManager
jboss.jca:service=DataSourceBinding,name=DefaultDS
--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName: jboss.jca:service=DataSourceBinding,name=DefaultDS
State: NOTYETINSTALLED
Depends On Me:
jboss.ejb:service=EJBTimerService,persistencePolicy=database
jboss:service=KeyGeneratorFactory,type=HiLo
2011-04-07 18:06:04,132 INFO [org.jboss.system.server.Server] JBoss (MX MicroKernel) [4.2.0.GA_CP01 (build: SVNTag=JBPAPP_4_2_0_GA_CP01 date=200709131706)] Started in 1m:39s:996ms
2011-04-07 18:06:04,145 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <Thu, 7 Apr 2011 18:06:04>
2011-04-07 18:06:04,145 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
2011-04-07 18:06:04,145 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
2011-04-07 18:06:04,146 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
2011-04-07 18:06:14,157 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <Thu, 7 Apr 2011 18:06:14>
2011-04-07 18:06:14,157 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
2011-04-07 18:06:14,157 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
2011-04-07 18:06:14,157 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass
2011-04-07 18:06:37,180 INFO [STDOUT] 18:06:37,180 INFO [DocbaseConnection] Object protocol version 2
2011-04-07 18:06:38,310 INFO [STDOUT] 18:06:38,306 WARN [SfServerConfiguration] Configuration not found for repository DCMT_EPCSD
2011-04-07 18:06:38,315 INFO [STDOUT] 18:06:38,313 WARN [SfServerConfiguration] Configuration not found for repository DCMT_EPCSD
2011-04-07 18:06:38,455 INFO [STDOUT] 18:06:38,453 WARN [SfServerConfiguration] Configuration not found for repository DCMT_EPCSD
2011-04-07 18:06:38,459 INFO [STDOUT] 18:06:38,457 WARN [SfServerConfiguration] Configuration not found for repository DCMT_EPCSD
2011-04-07 18:06:42,868 INFO [STDOUT] 18:06:42,868 INFO [InitGAIRConnectorServlet] Starting initial processing
2011-04-07 18:06:42,868 INFO [STDOUT] 18:06:42,868 INFO [InitGAIRConnectorServlet] Initialized variables
2011-04-07 18:06:42,868 INFO [STDOUT] 18:06:42,868 INFO [InitGAIRConnectorServlet] Received HTTP session
2011-04-07 18:06:42,876 INFO [STDOUT] 18:06:42,876 INFO [InitGAIRConnectorServlet] Received stream arguments
2011-04-07 18:06:42,879 INFO [STDOUT] 18:06:42,879 INFO [InitGAIRConnectorServlet] Retrieved server session
2011-04-07 18:06:42,884 INFO [STDOUT] 18:06:42,883 INFO [InitGAIRConnectorServlet] Created server session
2011-04-07 18:06:43,083 INFO [STDOUT] 18:06:43,083 INFO [InitGAIRConnectorServlet] Creation server session finished
2011-04-07 18:06:43,095 ERROR [STDERR] Apr 7, 2011 6:06:43 PM com.documentum.ucf.client.logging.impl.UCFLogger <clinit>
WARNING: UCFLogger: Unable to get logs dir from configuration. Defaulting to user's home dir
com.documentum.ucf.common.configuration.ConfigurationException: File not found at /home/wasadm/Documentum/ucf/hudt17/shared/config/ucf.client.config.template.xml
at com.documentum.ucf.client.configuration.impl.ClientConfigurationTemplate.getInstance(ClientConfigurationTemplate.java:39)
at com.documentum.ucf.client.configuration.impl.UCFClientConfigDelegate.<init>(UCFClientConfigDelegate.java:56)
at com.documentum.ucf.client.configuration.impl.UnixUCFClientConfig.<init>(UnixUCFClientConfig.java:20)
at com.documentum.ucf.client.configuration.impl.UCFClientConfigFactory.getInstance(UCFClientConfigFactory.java:35)
at com.documentum.ucf.client.configuration.impl.ClientConfigurationService.populateConfigFile(ClientConfigurationService.java:216)
at com.documentum.ucf.client.configuration.impl.ClientConfigurationService.<init>(ClientConfigurationService.java:48)
at com.documentum.ucf.client.configuration.impl.ClientConfigurationService.getInstance(ClientConfigurationService.java:90)
at com.documentum.ucf.client.ClientFactory.getConfigurationService(ClientFactory.java:36)
at com.documentum.ucf.client.logging.impl.UCFLogger.<clinit>(UCFLogger.java:221)
at com.documentum.ucf.client.logging.impl.ClientLogger.debug(ClientLogger.java:43)
at com.documentum.ucf.common.transport.impl.RecoveryContext.<init>(RecoveryContext.java:25)
at com.documentum.ucf.server.transport.impl.ServerSession.setStreams(ServerSession.java:277)
at com.documentum.ucf.server.transport.impl.InitGAIRConnectorServlet.doPost(InitGAIRConnectorServlet.java:83)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:595)
2011-04-07 18:06:43,101 INFO [STDOUT] 18:06:43,101 INFO [InitGAIRConnectorServlet] Ready to begin handshake
2011-04-07 18:06:43,109 INFO [STDOUT] 18:06:43,109 INFO [ServerSession] Receive Response: Ready from UID: 0
2011-04-07 18:06:43,152 INFO [STDOUT] 18:06:43,152 INFO [InitGAIRConnectorServlet] Starting initial processing
2011-04-07 18:06:43,152 INFO [STDOUT] 18:06:43,152 INFO [InitGAIRConnectorServlet] Initialized variables
2011-04-07 18:06:43,152 INFO [STDOUT] 18:06:43,152 INFO [InitGAIRConnectorServlet] Received HTTP session
2011-04-07 18:06:43,152 INFO [STDOUT] 18:06:43,152 INFO [InitGAIRConnectorServlet] Received stream arguments
2011-04-07 18:06:43,153 INFO [STDOUT] 18:06:43,153 INFO [InitGAIRConnectorServlet] Retrieved server session
2011-04-07 18:06:43,153 INFO [STDOUT] 18:06:43,153 INFO [InitGAIRConnectorServlet] Creation server session finished
2011-04-07 18:06:43,153 INFO [STDOUT] 18:06:43,153 INFO [InitGAIRConnectorServlet] Ready to begin handshake
2011-04-07 18:06:43,154 INFO [STDOUT] 18:06:43,154 INFO [ServerSession] Receive Response: OK from UID: 0
2011-04-07 18:06:43,154 INFO [STDOUT] 18:06:43,154 INFO [ServerSession] Receive Response: GetOSInfo from UID: 0
2011-04-07 18:06:45,239 INFO [STDOUT] 18:06:45,239 INFO [ClassCacheManager] [DFC_BOF_OBJECT_DOWNLOADED] Object com.documentum.services.message.IMessageService..J5_D65 was downloaded from docbase DCMT_EPCSD successfully.
2011-04-07 18:06:45,271 INFO [STDOUT] 18:06:45,271 INFO [ManifestInfo] com.documentum.services.message.impl.MessageService
2011-04-07 18:06:45,272 INFO [STDOUT] 18:06:45,272 INFO [ManifestInfo] file:/opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/documentum/cache/6.5.0.225SP2/bof/DCMT_EPCSD/09bc614e80000ee1.jar
2011-04-07 18:06:45,272 INFO [STDOUT] 18:06:45,272 INFO [ManifestInfo] class com.documentum.services.message.impl.MessageService
2011-04-07 18:06:45,273 INFO [STDOUT] 18:06:45,273 INFO [ManifestInfo] Build-By : Documentum, Inc.,
Created-By : 1.5.0_10-b03 (Sun Microsystems Inc.)
Ant-Version : Apache Ant 1.7.0
Implementation-Title : Email Archive Service, model 15, build on 11-12-2008 14:39:56 PM
Manifest-Version : 1.0
Implementation-Version : 2.0.5
Implementation-Vendor : Documentum, Inc
2011-04-07 18:06:45,289 INFO [STDOUT] 18:06:45,289 INFO [ServerSession] UID: 0; Sending requests to client
2011-04-07 18:06:45,290 INFO [STDOUT] 18:06:45,290 INFO [ServerSession] Sent Request: GetFile
2011-04-07 18:06:45,290 INFO [STDOUT] 18:06:45,290 INFO [ServerSession] Sent Request: GetFile
2011-04-07 18:06:45,376 INFO [STDOUT] 18:06:45,376 INFO [ServerSession] UID: 0; Receiving responses from client
2011-04-07 18:06:45,377 INFO [STDOUT] 18:06:45,376 INFO [ServerSession] Receive Response: GetFile from UID: 0
2011-04-07 18:06:45,377 INFO [STDOUT] 18:06:45,377 INFO [ServerSession] Receive Response: GetFile from UID: 0
2011-04-07 18:06:48,152 INFO [STDOUT] 18:06:48,152 INFO [ManifestInfo] com.documentum.message.parser.impl.BinaryDataHandler
2011-04-07 18:06:48,152 INFO [STDOUT] 18:06:48,152 INFO [ManifestInfo] file:/opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/documentum/cache/6.5.0.225SP2/bof/DCMT_EPCSD/09bc614e80000edd.jar
2011-04-07 18:06:48,153 INFO [STDOUT] 18:06:48,153 INFO [ManifestInfo] class com.documentum.message.parser.impl.BinaryDataHandler
2011-04-07 18:06:48,153 INFO [STDOUT] 18:06:48,153 INFO [ManifestInfo] Build-By : Documentum, Inc.,
Created-By : 1.5.0_10-b03 (Sun Microsystems Inc.)
Ant-Version : Apache Ant 1.7.0
Implementation-Title : Email Archive Service, model 15, build on 11-12-2008 14:39:57 PM
Manifest-Version : 1.0
Implementation-Version : 2.0.5
Implementation-Vendor : Documentum, Inc
2011-04-07 18:06:48,377 INFO [STDOUT] 18:06:48,376 INFO [DocbaseConnection] Object protocol version 2
2011-04-07 18:06:49,384 INFO [STDOUT] 18:06:49,384 INFO [ClassCacheManager] [DFC_BOF_OBJECT_DOWNLOADED] Object dm_message_archive..J5_D65 was downloaded from docbase DCMT_EPCSD successfully.
2011-04-07 18:06:49,723 INFO [STDOUT] 18:06:49,722 INFO [ClassCacheManager] [DFC_BOF_OBJECT_DOWNLOADED] Object lta_email_message_archive was downloaded from docbase DCMT_EPCSD successfully.
2011-04-07 18:06:49,813 INFO [STDOUT] 18:06:49,813 INFO [ManifestInfo] com.documentum.services.message.impl.type.MessageArchive
2011-04-07 18:06:49,814 INFO [STDOUT] 18:06:49,813 INFO [ManifestInfo] file:/opt/app/tmp/dctmcs/documentum/shared/jboss4.2.0/server/documentum/cache/6.5.0.225SP2/bof/DCMT_EPCSD/09bc614e80000eae.jar
2011-04-07 18:06:49,814 INFO [STDOUT] 18:06:49,814 INFO [ManifestInfo] class com.documentum.services.message.impl.type.MessageArchive
2011-04-07 18:06:49,814 INFO [STDOUT] 18:06:49,814 INFO [ManifestInfo] Build-By : Documentum, Inc.,
Created-By : 1.5.0_10-b03 (Sun Microsystems Inc.)
Ant-Version : Apache Ant 1.7.0
Implementation-Title : Email Archive Service, model 15, build on 11-12-2008 14:39:56 PM
Manifest-Version : 1.0
Implementation-Version : 2.0.5
Implementation-Vendor : Documentum, Inc
2011-04-07 18:06:50,465 INFO [STDOUT] 18:06:50,465 INFO [ClassCacheManager] [DFC_BOF_OBJECT_DOWNLOADED] Object dco_message_aspect..J5_D65 was downloaded from docbase DCMT_EPCSD successfully.
2011-04-07 18:06:50,719 INFO [STDOUT] 18:06:50,719 INFO [MailMessageHandlerForCollaboration] Msg Saving 09bc614e80027aba
2011-04-07 18:06:51,204 INFO [STDOUT] 18:06:51,204 INFO [ClassCacheManager] [DFC_BOF_OBJECT_DOWNLOADED] Object com.documentum.services.collaboration.IAttachmentsManager..J5_D65 was downloaded from docbase DCMT_EPCSD successfully.
2011-04-07 18:06:51,357 INFO [STDOUT] 18:06:51,357 INFO [ClassCacheManager] [DFC_BOF_OBJECT_DOWNLOADED] Object dmc_attachments_aspect..J5_D65 was downloaded from docbase DCMT_EPCSD successfully.
2011-04-07 18:06:51,768 INFO [STDOUT] 18:06:51,768 INFO [ClassCacheManager] [DFC_BOF_OBJECT_DOWNLOADED] Object dmc_attachmentfolder_aspect was downloaded from docbase DCMT_EPCSD successfully.
2011-04-07 18:06:53,056 INFO [STDOUT] 18:06:53,056 INFO [dfc] [DFC_ACS_LOG_CACHE_LOAD_DOCBASE_CONFIG] ACS config objects are read from docbaseId="12345678" docbaseName="DCMT_EPCSD"
2011-04-07 18:06:53,547 INFO [STDOUT] Entering doSave
2011-04-07 18:06:53,654 INFO [STDOUT] exiting doSave
2011-04-07 18:06:53,654 INFO [STDOUT] hi
2011-04-07 18:06:53,654 INFO [STDOUT] hi
2011-04-07 18:06:53,654 INFO [STDOUT] documentID is09bc614e80027aba
2011-04-07 18:06:53,661 INFO [STDOUT] 18:06:53,661 INFO [LiteTypeManager] Server is fresher (0, 3,254)
2011-04-07 18:06:53,661 INFO [STDOUT] 18:06:53,661 INFO [LiteTypeManager] Flush type lta_email_message_archive from maps.
2011-04-07 18:06:53,671 INFO [STDOUT] Source Dir is0bbc614e80004148folder path is /EPCS/LTA/AS/A00.B00.C00/2010000002
2011-04-07 18:06:53,673 INFO [STDOUT] Object id of the imported document is 09bc614e80027aba
2011-04-07 18:06:53,679 INFO [STDOUT] 18:06:53,679 INFO [LiteTypeManager] Server is fresher (0, 3,254)
2011-04-07 18:06:53,679 INFO [STDOUT] 18:06:53,679 INFO [LiteTypeManager] Flush type lta_email_message_archive from maps.
2011-04-07 18:06:53,686 INFO [STDOUT] object name FW: Example .xls documnet attachment
2011-04-07 18:06:53,686 INFO [STDOUT] folderpath is/EPCS/DTL2C1/902/AAA.AAA.AAA
2011-04-07 18:06:53,723 INFO [STDOUT] folder is com.documentum.fc.client.DfFolder___PROXY@1a43cda
2011-04-07 18:06:53,723 INFO [STDOUT] acldomain isEPCSDR USER10
2011-04-07 18:06:53,735 INFO [STDOUT] aclname is45bc614e80007128
2011-04-07 18:06:53,736 INFO [STDOUT] folder owner is EPCSDR USER10
2011-04-07 18:06:53,736 INFO [STDOUT] owner permit is1
2011-04-07 18:06:53,736 INFO [STDOUT] copy operation is about to start
2011-04-07 18:06:53,754 INFO [STDOUT] document has been unlinked
2011-04-07 18:06:53,761 INFO [STDOUT] document has been linked
2011-04-07 18:06:53,844 INFO [STDOUT] Entering doSaveEx()
2011-04-07 18:06:53,844 INFO [STDOUT] Exiting doSaveEx()
2011-04-07 18:06:53,856 INFO [STDOUT] 18:06:53,855 INFO [LiteTypeManager] Server is fresher (0, 3,254)
2011-04-07 18:06:53,856 INFO [STDOUT] 18:06:53,856 INFO [LiteTypeManager] Flush type lta_email_message_archive from maps.
2011-04-07 18:06:53,866 ERROR [STDERR] DfException:: THREAD: http-0.0.0.0-8888-1; MSG: [DM_API_E_BADID]error: "Bad ID given: 0000000000000000"; ERRORCODE: 100; NEXT: null
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.fc.common.DfException.newBadIdException(DfException.java:28)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.fc.client.impl.session.Session.getObjectManager(Session.java:773)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.fc.client.impl.session.Session.getObject(Session.java:834)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.fc.client.impl.session.SessionHandle.getObject(SessionHandle.java:580)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.services.collaboration.attachments.AttachmentsManager.copyFolder(Unknown Source)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.services.message.impl.type.MessageArchive.doSaveAsNew(MessageArchive.java:1655)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.fc.client.DfSysObject.saveAsNew(DfSysObject.java:430)
2011-04-07 18:06:53,867 ERROR [STDERR] at sg.gov.lta.email.tbo.impl.LTAMailTBOImpl.saveAsNew(LTAMailTBOImpl.java:223)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.services.collaboration.attachments.AttachmentsAspect___PROXY.saveAsNew(AttachmentsAspect___PROXY.java)
2011-04-07 18:06:53,867 ERROR [STDERR] at sg.gov.lta.email.tbo.impl.LTAMailTBOImpl.doSave(LTAMailTBOImpl.java:126)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.services.collaboration.attachments.AttachmentsAspect.doSave(Unknown Source)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.fc.client.DfPersistentObject.saveEx(DfPersistentObject.java:899)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.fc.client.DfPersistentObject.save(DfPersistentObject.java:894)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.services.message.impl.type.MessageArchive.save(MessageArchive.java:2229)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.dco.MessageAspect___PROXY.save(MessageAspect___PROXY.java)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.services.message.impl.MailMessageHandlerBase.save(MailMessageHandlerBase.java:275)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.services.message.impl.MailMessageHandlerBase.importAllMailMessages(MailMessageHandlerBase.java:351)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.services.message.impl.MailMessageHandlerBase.performImport(MailMessageHandlerBase.java:202)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.services.message.impl.MailMessageHandlerBase.importMailMessage(MailMessageHandlerBase.java:81)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.services.message.impl.MessageService.importMsg(MessageService.java:572)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.documentum.services.message.impl.MessageService.importMessageURL(MessageService.java:43)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.invisiblecrm.smartfolder.dfs.model.DFS_DFCUtil.importMessageURL(DFS_DFCUtil.java:73)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.invisiblecrm.smartfolder.dfs.methods.MethodImportMail.doImport(MethodImportMail.java:299)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.invisiblecrm.smartfolder.dfs.methods.MethodImportMail.importMailArchive(MethodImportMail.java:71)
2011-04-07 18:06:53,867 ERROR [STDERR] at com.invisiblecrm.smartfolder.dfs.ws.SyncStorageMail.importMailArchive(SyncStorageMail.java:49)
2011-04-07 18:06:53,868 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2011-04-07 18:06:53,868 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
2011-04-07 18:06:53,868 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
2011-04-07 18:06:53,868 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.emc.documentum.fs.rt.context.impl.ReflectionServiceInvoker.invoke(ReflectionServiceInvoker.java:40)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.emc.documentum.fs.rt.impl.tx.TxInvocationHandler.invoke(TxInvocationHandler.java:29)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.emc.documentum.fs.rt.context.impl.UcfServiceInvocationHandler.handleUCF(UcfServiceInvocationHandler.java:69)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.emc.documentum.fs.rt.context.impl.UcfServiceInvocationHandler.invoke(UcfServiceInvocationHandler.java:49)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.emc.documentum.fs.rt.context.impl.SoapServiceInvocationHandler.invoke(SoapServiceInvocationHandler.java:56)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.emc.documentum.fs.rt.context.impl.OperationOptionsHandler.invoke(OperationOptionsHandler.java:59)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.emc.documentum.fs.rt.context.impl.FileRegistryCleanupHandler.invoke(FileRegistryCleanupHandler.java:25)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.emc.documentum.fs.rt.context.impl.ServiceContextCleanupHandler.invoke(ServiceContextCleanupHandler.java:31)
2011-04-07 18:06:53,868 ERROR [STDERR] at $Proxy123.importMailArchive(Unknown Source)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.invisiblecrm.smartfolder.dfs.ws.ws.SyncStorageMailWebService.importMailArchive(SyncStorageMailWebService.java:128)
2011-04-07 18:06:53,868 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
2011-04-07 18:06:53,868 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
2011-04-07 18:06:53,868 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
2011-04-07 18:06:53,868 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.api.server.InstanceResolver$1.invoke(InstanceResolver.java:246)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.server.InvokerTube$2.invoke(InvokerTube.java:146)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.server.sei.EndpointMethodHandler.invoke(EndpointMethodHandler.java:257)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.server.sei.SEIInvokerTube.processRequest(SEIInvokerTube.java:93)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:595)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:554)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:539)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:436)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.server.WSEndpointImpl$2.process(WSEndpointImpl.java:243)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:444)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:244)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:135)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.transport.http.servlet.WSServletDelegate.doGet(WSServletDelegate.java:129)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.transport.http.servlet.WSServletDelegate.doPost(WSServletDelegate.java:160)
2011-04-07 18:06:53,868 ERROR [STDERR] at com.sun.xml.ws.transport.http.servlet.WSServlet.doPost(WSServlet.java:75)
2011-04-07 18:06:53,868 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
2011-04-07 18:06:53,868 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
2011-04-07 18:06:53,868 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
2011-04-07 18:06:53,868 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
2011-04-07 18:06:53,868 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:179)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
2011-04-07 18:06:53,869 ERROR [STDERR] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
2011-04-07 18:06:53,869 ERROR [STDERR] at java.lang.Thread.run(Thread.java:595)
2011-04-07 18:06:53,906 INFO [STDOUT] 18:06:53,906 INFO [MailMessageHandlerForCollaboration] Msg saved 09bc614e80027aba
2011-04-07 18:06:54,015 INFO [STDOUT] 18:06:54,015 INFO [MessageService] mail message saved, the object id: 09bc614e80027aba
2011-04-07 18:06:54,029 INFO [STDOUT] 18:06:54,029 INFO [LiteTypeManager] Server is fresher (0, 3,254)
2011-04-07 18:06:54,029 INFO [STDOUT] 18:06:54,029 INFO [LiteTypeManager] Flush type lta_email_message_archive from maps.
2011-04-07 18:06:54,037 INFO [STDOUT] 18:06:54,037 INFO [ServerSession] UID: 0; Sending requests to client
2011-04-07 18:06:54,038 INFO [STDOUT] 18:06:54,038 INFO [ServerSession] Sent Request: Exit
2011-04-07 18:08:14,165 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - first pass <Thu, 7 Apr 2011 18:08:14>
2011-04-07 18:08:14,166 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] StatusModule: first pass
2011-04-07 18:08:14,166 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_3] - TORecoveryModule - first pass
2011-04-07 18:08:14,166 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.firstpass] Local XARecoveryModule - first pass
2011-04-07 18:08:24,176 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] Periodic recovery - second pass <Thu, 7 Apr 2011 18:08:24>
2011-04-07 18:08:24,176 DEBUG [com.arjuna.ats.arjuna.logging.arjLogger] AtomicActionRecoveryModule: Second pass
2011-04-07 18:08:24,176 DEBUG [com.arjuna.ats.txoj.logging.txojLoggerI18N] [com.arjuna.ats.internal.txoj.recovery.TORecoveryModule_6] - TORecoveryModule - second pass
2011-04-07 18:08:24,176 DEBUG [com.arjuna.ats.jta.logging.loggerI18N] [com.arjuna.ats.internal.jta.recovery.info.secondpass] Local XARecoveryModule - second pass
Request all the masters to help me out.