cancel
Showing results for 
Search instead for 
Did you mean: 

Error on Syncronize

0 Kudos

<b>Hi all,</b>

An error is happening in my application. my net is unstable and nor always I obtain to complete to the synchronization. When I sending one solicitation and happens error, suggests the user to restart the process again. What it happens is that when it executes and complete the transaction, the MI submits 2 times to r/3.

<b>att.,

Douglas</b>

Accepted Solutions (1)

Accepted Solutions (1)

stefan_schwing
Active Participant
0 Kudos

I see. Unfortunately, that is not possible. Once you created a generic sync container and put it into the outbound queue, you can't delete it afterwards. It's like putting a letter into the mailbox, once you put it in, there is no way to get it out - unless you break the mailbox ;-

You can avoid sending multiple containers with the code provided, but you cannot get rid of the already submitted ones and only sent the lastone.

sorry and cheers

stefan

0 Kudos

Thanks Stefan Schwing, I go to decide in the way as it informed, in case that a problem in the net happens me, I will send the requested data and to cancel the last request.

Answers (6)

Answers (6)

stefan_schwing
Active Participant
0 Kudos

Sorry, I guess we misunderstand each other. With my additonal if statement, you DO create a container in case there is no old one pending. If there is an old container which has not been answered yet, your code will not create an additional container to avoid that the backedn is queried twice for the exacts same data.

cheers

stefan

0 Kudos

Hi,

Ok, what I need I am that when will have a request, I I want to clean this existing request ja and to only order ONE (the last one).

regards,

Douglas

stefan_schwing
Active Participant
0 Kudos

Hi,

if your method "confirmaRecebimento" is called everytime the user starts a synchronization,then you should do the following:

Add a new if-statement before you create the new container, like this:

if(!InboundProcessorRegistry.isAlreadyInOutboundQueue(Z_MDK_REC_CREATE) {return;}

This way, you only create a new sync container to be sent to the backend if the previous one has not yet been acknowledged.

cheers

stefan

0 Kudos

hi,

I need send only the last register, with your source i don't create outbondcontainer and don't send to backend. can i help?

regards

Douglas

stefan_schwing
Active Participant
0 Kudos

Hi,

if this code is called everytime the uses presses "sync", then you will see the behaviour you described. So it would be good to know from where this method is called. Anyhow, you could use this method <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/go/km/docs/library/mobile/mobile%20infrastructure/mobile%20development%20kit%202.5/content/javadoc/com/sap/ip/me/api/sync/inboundprocessorregistry.html#isalreadyinoutboundqueue(java.lang.String, com.sap.ip.me.api.conf.Visibilit">isAlreadyInOutboundQueue</a> to avoid creating containers over and over for your app if there are still pending containers.

cheers

stefan

0 Kudos

for all the calls, must be a different container. They are called different without relation one with the other. how I must make in my code ?

stefan_schwing
Active Participant
0 Kudos

Hi,

could it be that your applicatio ncode creates a generic sync container everytime the synchronisation is triggered by the user ? This would explain why, everytime you have a failed sync, an additional conatiner is created.

cheers

stefan

0 Kudos

My source code is:

public String confirmaRecebimento(ZrecCreateBean bean)
		throws SofttekException {

		try {

			OutboundContainerFactory outfactory =
				OutboundContainerFactory.getInstance();

			if (outfactory != null) {

				OutboundContainer out =
					outfactory.createOutboundContainer(
						VisibilityType.SEPARATED,
						Z_MDK_REC_CREATE,
						OutboundContainer.TYPE_REQUEST);

					for(int i=0;i<bean.size();i++) {
					ZrecCreateBean objBean = new ZrecCreateBean();
					objBean = bean.getCurrent();
					out.addItem(
						"TI_RET",
						objBean.getZ_LGNUM()
							+ objBean.getZ_MATNR()
							+ objBean.getZ_BWLVS()
							+ StringFormat.InsertSpaceEnd(
								objBean.getZ_CHARG(),
								10)
							+ StringFormat.InsertSpaceEnd(
								objBean.getZ_VLPLA(),
								10)
							+ StringFormat.InsertSpaceEsq(
								objBean.getZ_VLTYP(),
								3)
							+ StringFormat.InsertSpaceEnd(
								objBean.getZ_NLPLA(),
								10)
							+ StringFormat.InsertSpaceEsq(
								objBean.getZ_NLTYP(),
								3)
							+ StringFormat.InsertSpaceEsq(
								objBean.getZ_LGPLA(),
								10)
							+ StringFormat.InsertSpaceEsq(
								objBean.getZ_LGTYP(),
								3)
							+ StringFormat.InsertSpaceEsq(
								objBean.getZ_LGORT(),
								4)
							+ StringFormat.InsertSpaceEsq(
								objBean.getZ_WERKS(),
								4)
							+ StringFormat.InsertSpaceEsq(
								objBean.getZ_ANFME(),
								10)
							+ objBean.getZ_ZALTME());
					bean.getNext();
				}
				out.close();
				ZMOB_WRP_REC_CREATE.reset();
				SyncManager sm = SyncManager.getInstance();
				
				sm.synchronizeWithBackend();
				
			}

		} catch (IllegalArgumentException e) {

			aLogger.log(
				Severities.ERROR,
				"IllegalArgumentException: " + e.getMessage());
			throw new SofttekException(e.getMessage());

		} catch (SyncException e) {

			aLogger.log(Severities.ERROR, "SyncException: " + e.getMessage());
			throw new SofttekException(e.getMessage());

		}

		//verifica resposta do r/3
		if (ZMOB_WRP_REC_CREATE.getsReturn() == "1") {
			SofttekException ex = new SofttekException();
			ex.addMessage(ZMOB_WRP_REC_CREATE.getMensagem());
			throw ex;
		}
		//verifica se chegou mensagem de erro
		if (ZMOB_WRP_REC_CREATE.getMensagem() != null
			&& ZMOB_WRP_REC_CREATE.getMensagem() != "") {
			SofttekException ex = new SofttekException();
			ex.addMessage(ZMOB_WRP_REC_CREATE.getMensagem());
			throw ex;
		} else {
			//PROCESSAMENTO NAO CONCRETIZADO
			
			//ponto container de dados não lido por falta de comunicação
			return ERRO_DADONAOLIDO;
		}
	}

Former Member
0 Kudos

Hi Douglas,

As sandeep said, MI sends the delta data from last synchronization, this concept is called as delta Synchronization. If you sync it once and lose the connection, and sync back for the subsequent connection, the delta data will get loaded to backend.

once restart your client.

can you look into MEREP_MON for the errors?

Divya

sandeep_rs
Advisor
Advisor
0 Kudos

Hi Douglas,

If a sync is broken in between, then MI will try to resend the information again the next time you try. The protocols between the MI client and middleware ensures that the same data is not used for two updates.

Can you please set the trace level to 'ALL' and send us the exception you see in the trace file.

Thanks and Best Regards,

Sandeep

0 Kudos

hi Sandeep

here is the trace code with a try lose and other try sucessful..

Página inicial

Rastrear

I ***** LOG / TRACE SWITCHED ON

I ***** Mobile Engine version: MI 25 SP 13 Patch 00 Build 200507282032

I ***** Current timezone: America/Sao_Paulo

I Trace severity: All (1000)

D AbstractMEHttpServlet:dispatch request to '/jsp/trace/trace.jsp'

D Set current application to 'MOBILEENGINE_JSP'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-8".

D AbstractMEHttpServlet:getEvent() done with event name = ''

D AbstractMEHttpServlet:dispatch request to '/jsp/home/home.jsp'

D Set current application to 'MOBILEENGINE_JSP'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-10".

D AbstractMEHttpServlet:getEvent() done with event name = ''

D AbstractMEHttpServlet:dispatch request to 'http://127.0.0.1:4444/ZMDKRECEBIMENTO/start'

D Deactivated application MOBILEENGINE_JSP

D Set current application to 'ZMDKRECEBIMENTO'

P Activate application ZMDKRECEBIMENTO

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-8".

D AbstractMEHttpServlet:getEvent() done with event name = ''

D AbstractMEHttpServlet:dispatch request to '/recebimento.jsp'

D Set current application to 'ZMDKRECEBIMENTO'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-8".

D AbstractMEHttpServlet:getEvent() done with event name = 'boxorigem'

D AbstractMEHttpServlet:dispatch request to '/jsp/recboxorigem.jsp'

D Set current application to 'ZMDKRECEBIMENTO'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-10".

D AbstractMEHttpServlet:getEvent() done with event name = ''

D AbstractMEHttpServlet:dispatch request to '/jsp/recebimentmaterial.jsp'

D Set current application to 'ZMDKRECEBIMENTO'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-8".

D AbstractMEHttpServlet:getEvent() done with event name = ''

D AbstractMEHttpServlet:dispatch request to '/jsp/recebimentmaterial.jsp'

D Set current application to 'ZMDKRECEBIMENTO'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-10".

D AbstractMEHttpServlet:getEvent() done with event name = 'boxdestino'

D AbstractMEHttpServlet:dispatch request to '/jsp/recboxdestino.jsp'

D Set current application to 'ZMDKRECEBIMENTO'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-8".

D AbstractMEHttpServlet:getEvent() done with event name = ''

D Opened temporary container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)out 000000h.sync for write (container id = 01131aa6d1046f5c286c)

D Write container header to file (container id = 01131aa6d1046f5c286c): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outz000003r.sync

D Closed container file (container id = 01131aa6d1046f5c286c) and rename container file to E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003r.sync

P Created outbound container for user (SHARED) and method ZMDK_WRP_REC_CREATE

P Created outbound container for conversationId FEB7E3AAF420D445AFD89B03E390359B / FEB7E3AAF420D445AFD89B03E390359B (User: (SHARED), MSD: Name: / ZMDKRECEBIMENTO (V. 2.01), Target=, Type=com.sap.ip.me.core.JspApplicationType)

I Synchronize with backend called, Thread=Thread-8

I Thread=Thread-8 took lock for synchronization.

P Use following gateway for synchronization: http://wasaepd01:8001

D UrlConnectionTest: returning instance for same host wasaepd01

D UrlConnectionTest: lastHostChecked was wasaepd01

D UrlConnectionTest: lastTimeOfCheck was 1181562673062

D UrlConnectionTest: last check was 473484 ms ago

D UrlConnectionTest: try number: 1

D UrlConnectionTestThread: method run() started...

D E:Arquivos de programasSAP Mobile Infrastructureproxyauth.txt does not exist, therefore no Proxy-Authorization is set.

D UrlConnectionTest: try number: 2

D UrlConnectionTest: try number: 3

D UrlConnectionTest: try number: 4

D UrlConnectionTest: try number: 5

D UrlConnectionTest: try number: 6

D UrlConnectionTest: try number: 7

D UrlConnectionTest: try number: 8

D UrlConnectionTest: try number: 9

D UrlConnectionTest: try number: 10

D UrlConnectionTest: try number: 11

D UrlConnectionTest: try number: 12

D UrlConnectionTest: it took 6000 ms to test the connection

P UrlConnectionTest: Connection could not be established!!!

W Cannot connect to gateway

com.sap.ip.me.api.services.HttpConnectionException: URL connection test timeout

at com.sap.ip.me.api.services.IOUtils.isConnectable(IOUtils.java:664)

at com.sap.ip.me.sync.SyncManagerImpl.doConnectionTest(SyncManagerImpl.java:532)

at com.sap.ip.me.sync.SyncManagerImpl.synchronizeWithBackend(SyncManagerImpl.java:383)

at com.sap.ip.me.sync.SyncManagerImpl.synchronizeWithBackend(SyncManagerImpl.java:285)

at com.sap.ip.me.api.sync.SyncManager.synchronizeWithBackend(SyncManager.java:79)

at br.com.gerdau.rec.rfc.ZMOB_WRP_REC_CREATE.confirmaRecebimento(ZMOB_WRP_REC_CREATE.java:175)

at br.com.gerdau.rec.RecebimentoServlet.confirmaRecebimento(RecebimentoServlet.java:676)

at br.com.gerdau.rec.RecebimentoServlet.doHandleEvent(RecebimentoServlet.java:454)

at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGetThreadSafe(AbstractMEHttpServlet.java:412)

at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGet(AbstractMEHttpServlet.java:675)

at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doPost(AbstractMEHttpServlet.java:695)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)

at com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.service(AbstractMEHttpServlet.java:326)

at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)

at org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:405)

at org.apache.tomcat.core.Handler.service(Handler.java:287)

at org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)

at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:806)

at org.apache.tomcat.core.ContextManager.service(ContextManager.java:752)

at org.apache.tomcat.service.http.HttpConnectionHandler.processConnection(HttpConnectionHandler.java:213)

at org.apache.tomcat.service.TcpWorkerThread.runIt(PoolTcpEndpoint.java:416)

at org.apache.tomcat.util.ThreadPool$ControlRunnable.run(ThreadPool.java:501)

at java.lang.Thread.run(Thread.java:534)

I Synchronization finished, Thread=Thread-8

D AbstractMEHttpServlet:dispatch request to '/jsp/message.jsp'

A URLConnectionThread: caught exception java.net.ConnectException: Connection timed out: connect

java.net.ConnectException: Connection timed out: connect

at java.net.PlainSocketImpl.socketConnect(Native Method)

at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)

at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)

at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)

at java.net.Socket.connect(Socket.java:452)

at java.net.Socket.connect(Socket.java:402)

at sun.net.NetworkClient.doConnect(NetworkClient.java:139)

at sun.net.www.http.HttpClient.openServer(HttpClient.java:402)

at sun.net.www.http.HttpClient.openServer(HttpClient.java:618)

at sun.net.www.http.HttpClient.(HttpClient.java:306)

at sun.net.www.http.HttpClient.(HttpClient.java:267)

at sun.net.www.http.HttpClient.New(HttpClient.java:339)

at sun.net.www.http.HttpClient.New(HttpClient.java:320)

at sun.net.www.http.HttpClient.New(HttpClient.java:315)

at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:521)

at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:498)

at com.sap.ip.me.api.services.UrlConnectionTest$UrlConnectionTestThread.run(UrlConnectionTest.java:332)

D Set current application to 'ZMDKRECEBIMENTO'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-10".

D AbstractMEHttpServlet:getEvent() done with event name = 'boxorigem'

D AbstractMEHttpServlet:dispatch request to '/jsp/recboxorigem.jsp'

D Set current application to 'ZMDKRECEBIMENTO'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-8".

D AbstractMEHttpServlet:getEvent() done with event name = ''

D AbstractMEHttpServlet:dispatch request to '/jsp/recebimentmaterial.jsp'

D Set current application to 'ZMDKRECEBIMENTO'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-10".

D AbstractMEHttpServlet:getEvent() done with event name = ''

D AbstractMEHttpServlet:dispatch request to '/jsp/recebimentmaterial.jsp'

D Set current application to 'ZMDKRECEBIMENTO'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-8".

D AbstractMEHttpServlet:getEvent() done with event name = 'boxdestino'

D AbstractMEHttpServlet:dispatch request to '/jsp/recboxdestino.jsp'

D Set current application to 'ZMDKRECEBIMENTO'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-10".

D AbstractMEHttpServlet:getEvent() done with event name = ''

D Opened temporary container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)out 000000i.sync for write (container id = 01131aa74b73790e8280)

D Write container header to file (container id = 01131aa74b73790e8280): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outz000003s.sync

D Closed container file (container id = 01131aa74b73790e8280) and rename container file to E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003s.sync

P Created outbound container for user (SHARED) and method ZMDK_WRP_REC_CREATE

P Created outbound container for conversationId FEB7E3AAF420D445AFD89B03E390359B / FEB7E3AAF420D445AFD89B03E390359B (User: (SHARED), MSD: Name: / ZMDKRECEBIMENTO (V. 2.01), Target=, Type=com.sap.ip.me.core.JspApplicationType)

I Synchronize with backend called, Thread=Thread-10

I Thread=Thread-10 took lock for synchronization.

P Use following gateway for synchronization: http://wasaepd01:8001

D UrlConnectionTest: returning instance for same host wasaepd01

D UrlConnectionTest: lastHostChecked was wasaepd01

D UrlConnectionTest: lastTimeOfCheck was 1181563146546

D UrlConnectionTest: last check was 31297 ms ago

D UrlConnectionTest: try number: 1

D UrlConnectionTestThread: method run() started...

D E:Arquivos de programasSAP Mobile Infrastructureproxyauth.txt does not exist, therefore no Proxy-Authorization is set.

D UrlConnectionTest: try number: 2

D UrlConnectionTestThread: URL protocol is http

D UrlConnectionTestThread: HTTP responsecode is 200

D UrlConnectionTest: it took 1000 ms to test the connection

P UrlConnectionTest: Connection could be established!!!

P URL connection test was successfull!!!

D Synchronisation: Fire SyncEvent 0

P Thread Thread-10 switched context to MI4558444649475545 / 890A084C789BD242BE0EF4CCA2A4B74E (User: EXDFIGUE, MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.core.StatusUpdater on ConversationId MI4558444649475545

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 16706762

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 16706762

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.services.os.AgentManager$AgentSyncEventListener on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 7068128

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 7068128

D PersistenceManagerImpl.commit()

D Opened temporary container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)out 000000j.sync for write (container id = 01131aa74f5ba6c7507e)

D Write container header to file (container id = 01131aa74f5ba6c7507e): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outz000003t.sync

D Closed container file (container id = 01131aa74f5ba6c7507e) and rename container file to E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003t.sync

P Created outbound container for user (SHARED) and method AGENT_PARAMETERS

P Created outbound container for conversationId MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.sync.LogSender on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 11350939

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 11350939

D PersistenceManagerImpl.commit()

D Opened temporary container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)out 000000k.sync for write (container id = 01131aa74f6b6bad7ce5)

D Write container header to file (container id = 01131aa74f6b6bad7ce5): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outz000003u.sync

D Closed container file (container id = 01131aa74f6b6bad7ce5) and rename container file to E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003u.sync

P Created outbound container for user (SHARED) and method CENTRAL_TRACING

P Created outbound container for conversationId MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)

I AppLog severity: Warning (60)

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.core.RegistryInboundProcessingLog$RegistryInboundProcessingLogSyncEventListener on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 3791498

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 3791498

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.ccms.LastSuccessfulSyncAlert on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 3853415

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 3853415

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.smartsync.core.SyncAdapter on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 4301103

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 4301103

D PersistenceManagerImpl.commit()

D Smart Sync received SyncEvent of type 0 for ConvId MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 12406332

D PersistenceManagerImpl.beginTransaction():false

D Performing Smart Sync outbound processing for Context com.sap.ip.me.smartsync.core.Context:

P Begin transaction for outbound containers

D GlobalResetProcessing was set to DEFAULT

D Conversation id is complete (serverCommunicationId=05DFF40679CABF458D250847C70D06EA clientId=MI2853484152454429)

D Added 0 download requests to Generic Sync outbound queue.

P Commit transaction for outbound containers

P Move containers from transactional outbound folder to outbound folder

P Save conversation ids

D commit() called on instance 12406332

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.ccms.AlertManagerImpl on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 5994703

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 5994703

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Repetitive sync is turned off

P Synchronization started for user (SHARED)

D PackageManager: create package with maximum 2147483647 items

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outc000000b.sync was successful

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outc000000c.sync was successful

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outc000000d.sync was successful

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outc000000e.sync was successful

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outc000000f.sync was successful

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outc000000g.sync was successful

D PackageManager: filled package with 6 acknowledge received container(s)

D PackageManager: filled package with 6 acknowledge container(s)

D Opened container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003p.sync for read (container id = 01131aa1bb70ee1d19ab)

D Closed container file (container id = 01131aa1bb70ee1d19ab)

D Opened container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003q.sync for read (container id = 01131aa1bb9f9e55ab34)

D Closed container file (container id = 01131aa1bb9f9e55ab34)

D Opened container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003r.sync for read (container id = 01131aa6d1046f5c286c)

D Closed container file (container id = 01131aa6d1046f5c286c)

D Opened container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003s.sync for read (container id = 01131aa74b73790e8280)

D Closed container file (container id = 01131aa74b73790e8280)

D Opened container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003t.sync for read (container id = 01131aa74f5ba6c7507e)

D Closed container file (container id = 01131aa74f5ba6c7507e)

D Opened container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003u.sync for read (container id = 01131aa74f6b6bad7ce5)

D Closed container file (container id = 01131aa74f6b6bad7ce5)

D PackageManager: filled package with 25 container items or headers

D PackageManager: filled package with 2 notify container(s)

D Package file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outpackage.out exists and can be read

P Synchronisation started

D Begin: Dumping file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outpackage.out

MISYNC0x1251300

01131a9facc4f3ff1c1c

C

ZMDK_WRP_REC_CREATE

FEB7E3AAF420D445AFD89B03E390359B

4B4165423827F44A84F8929D1B266450

-1

NEW_PROTOCOL

0

-1

1

-1

-1

01131a9facd4138718de

C

CLIENT_ALERT

05DFF40679CABF458D250847C70D06EA

5EFFDB676600DD4989425DC6908C1FD7

-1

NEW_PROTOCOL

0

-1

2

-1

-1

01131a9facd579f88088

C

CENTRAL_TRACING

05DFF40679CABF458D250847C70D06EA

8345BDCD53425A4598F0D5EB3934A21A

-1

NEW_PROTOCOL

0

-1

9

-1

-1

01131a9face47d585e77

C

ZMDK_WRP_REC_CREATE

FEB7E3AAF420D445AFD89B03E390359B

961D2FDAB8DB0645B0FCE79079D68445

-1

NEW_PROTOCOL

0

-1

1

-1

-1

01131a9face58b26dece

C

AGENT_PARAMETERS

05DFF40679CABF458D250847C70D06EA

F58DAD4DF92CE849B342D8E5DB5D40FF

-1

NEW_PROTOCOL

0

-1

3

-1

-1

01131a9face63b9bdf5b

C

AGENT_PARAMETERS

05DFF40679CABF458D250847C70D06EA

F7F04E8E9AD555499B1A9BD47A39911A

-1

NEW_PROTOCOL

0

-1

3

-1

-1

01131a9facf355f91f5e

A

AGENT_PARAMETERS

05DFF40679CABF458D250847C70D06EA

9545A37371963C4F835A8C6D9959E8F4

-1

NEW_PROTOCOL

0

-1

1

-1

-1

01131a9facf49662a55c

A

CLIENT_ALERT

05DFF40679CABF458D250847C70D06EA

B8148A49CF7FFB43B0F9E9FA37581D04

-1

NEW_PROTOCOL

0

-1

2

-1

-1

01131a9fad03c92af324

A

AGENT_PARAMETERS

05DFF40679CABF458D250847C70D06EA

0A617CC745BFD04C8136916A2F3BB58F

-1

NEW_PROTOCOL

0

-1

1

-1

-1

01131a9fad041f058af5

A

CENTRAL_TRACING

05DFF40679CABF458D250847C70D06EA

887A95CE631C9340B8F3016315862553

-1

NEW_PROTOCOL

0

-1

0

-1

-1

01131aa05681e12770d9

A

ZMDK_WRP_REC_CREATE

FEB7E3AAF420D445AFD89B03E390359B

865529B17C652F4FB0301E4C4FE16D54

-1

NEW_PROTOCOL

0

-1

3

-1

-1

01131aa1b6fc736e9b65

A

ZMDK_WRP_REC_CREATE

FEB7E3AAF420D445AFD89B03E390359B

D31056299A69274CBAB4D4ECD817AD0F

-1

NEW_PROTOCOL

0

-1

3

-1

-1

01131aa1bb70ee1d19ab

R

AGENT_PARAMETERS

05DFF40679CABF458D250847C70D06EA

-1

NEW_PROTOCOL

0

-1

3

-1

-1

TIMESTAMP

0

000000;19700101

DEVICEID

0

1F31B0EE349C344EBF119792C1311857

USER

0

EXDFIGUE

01131aa1bb9f9e55ab34

R

CLIENT_ALERT

05DFF40679CABF458D250847C70D06EA

-1

NEW_PROTOCOL

0

-1

2

-1

-1

INBOUND_CONTAINER

0

1F31B0EE349C344EBF119792C1311857 EXDFIGUE 200706110853330TracefileSize 64 CLIENT

INBOUND_CONTAINER

1

1F31B0EE349C344EBF119792C1311857 EXDFIGUE 200706110853330STARTUP 1 CLIENT

01131aa6d1046f5c286c

R

ZMDK_WRP_REC_CREATE

FEB7E3AAF420D445AFD89B03E390359B

-1

NEW_PROTOCOL

0

-1

1

-1

-1

TI_RET

0

10000000000000085363198826531320 SAIDAPROD 9020204 002 D100AFP 64824KG

01131aa74b73790e8280

R

ZMDK_WRP_REC_CREATE

FEB7E3AAF420D445AFD89B03E390359B

-1

NEW_PROTOCOL

0

-1

1

-1

-1

TI_RET

0

10000000000000085363198826531320 SAIDAPROD 9020204 002 D100AFP 64824KG

01131aa74f5ba6c7507e

R

AGENT_PARAMETERS

05DFF40679CABF458D250847C70D06EA

-1

NEW_PROTOCOL

0

-1

3

-1

-1

TIMESTAMP

0

000000;19700101

DEVICEID

0

1F31B0EE349C344EBF119792C1311857

USER

0

EXDFIGUE

01131aa74f6b6bad7ce5

R

CENTRAL_TRACING

05DFF40679CABF458D250847C70D06EA

-1

NEW_PROTOCOL

0

-1

9

-1

-1

PASSPORT

0

DEPLID

0

1F31B0EE349C344EBF119792C1311857

USERNAME

0

EXDFIGUE

TIMEZONE

0

MSGCNT

0

0

MSGTYP

0

W

COMPONENT

0

MI/Security

TIMESTAMP

0

20070611115333.578

TRACE

0

Error while creating MIAUTH sync bo (no SyncBoDescriptor for MIAUTH available); contact SAP support

01131aa750074f4626a2

N

99822DCD3044E745833C89DAF4922E37

-1

NEW_PROTOCOL

0

-1

0

-1

-1

01131aa75017de8fb21c

N

27E988D7DC5EBE4CBD21E5070394C630

-1

NEW_PROTOCOL

0

-1

0

-1

-1

D End: Dumping file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outpackage.out

I Outbound file size for user (SHARED) is 3999

P Do not use http proxy (system properties update)

P Use following gateway for synchronization: http://wasaepd01:8001

I GzipDataCompression: Gzip data compression is switched on

P Sending outbound file compressed to server.

P Outbound file was compressedly sent.

P Receiving inbound file compressed from server.

P Inbound file was compressedly received.

I Inbound file size for user (SHARED) is 4334

P Synchronisation successfully connected

D Begin: Dumping file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)ininbound.sync

MISYNC0x0251300

JCO-library-version: 1.1.16; Creation time: 0000-00-00 00:00:00

085937

57

26AC1D633CE4D54199C5C06105629D40

C

ZMDK_WRP_REC_CREATE

FEB7E3AAF420D445AFD89B03E390359B

01131aa05681e12770d9

0

NEW_PROTOCOL

0

-1

3

0

0

0000-00-00

00:00:00

2007-06-11

08:59:37

2DD0A7DA71E84145B728450A073C88AE

C

AGENT_PARAMETERS

05DFF40679CABF458D250847C70D06EA

01131a9fad03c92af324

0

NEW_PROTOCOL

0

-1

1

0

0

0000-00-00

00:00:00

2007-06-11

08:59:37

5FC7DEC560406E4E9FB45A54A072CD7C

C

AGENT_PARAMETERS

05DFF40679CABF458D250847C70D06EA

01131a9facf355f91f5e

0

NEW_PROTOCOL

0

-1

1

0

0

0000-00-00

00:00:00

2007-06-11

08:59:37

8F42FD79F8760049BE341ACE83C09BD2

C

CENTRAL_TRACING

05DFF40679CABF458D250847C70D06EA

01131a9fad041f058af5

0

NEW_PROTOCOL

0

-1

0

0

0

0000-00-00

00:00:00

2007-06-11

08:59:37

AA880BB6CCF57C4399394A67C9E9DA46

C

CLIENT_ALERT

05DFF40679CABF458D250847C70D06EA

01131a9facf49662a55c

0

NEW_PROTOCOL

0

-1

2

0

0

0000-00-00

00:00:00

2007-06-11

08:59:37

E80E1A3D69FD8E468DA8B24C1E720750

C

ZMDK_WRP_REC_CREATE

FEB7E3AAF420D445AFD89B03E390359B

01131aa1b6fc736e9b65

0

NEW_PROTOCOL

0

-1

3

0

0

0000-00-00

00:00:00

2007-06-11

08:59:37

0511B475A8FD7B4EB964363D2F2CCC8B

A

CLIENT_ALERT

05DFF40679CABF458D250847C70D06EA

01131aa1bb9f9e55ab34

0

NEW_PROTOCOL

0

-1

2

0

0

0000-00-00

00:00:00

2007-06-11

08:59:37

O

0CC4ED338D3370458A98F37FB1A90222

A

CENTRAL_TRACING

05DFF40679CABF458D250847C70D06EA

01131aa74f6b6bad7ce5

0

NEW_PROTOCOL

0

-1

9

0

0

0000-00-00

00:00:00

2007-06-11

08:59:38

O

11550EC56042914C9AAE7701C904B1F2

A

ZMDK_WRP_REC_CREATE

FEB7E3AAF420D445AFD89B03E390359B

01131aa74b73790e8280

0

NEW_PROTOCOL

0

-1

1

0

0

0000-00-00

00:00:00

2007-06-11

08:59:38

O

5474BBA4375A1848962F0F1043631B2E

A

AGENT_PARAMETERS

05DFF40679CABF458D250847C70D06EA

01131aa74f5ba6c7507e

0

NEW_PROTOCOL

0

-1

3

0

0

0000-00-00

00:00:00

2007-06-11

08:59:38

O

7E04D2D482DE0D4983844D8E957811C3

A

AGENT_PARAMETERS

05DFF40679CABF458D250847C70D06EA

01131aa1bb70ee1d19ab

0

NEW_PROTOCOL

0

-1

3

0

0

0000-00-00

00:00:00

2007-06-11

08:59:37

O

910C47E1ACA63441B21D430F171870A4

A

ZMDK_WRP_REC_CREATE

FEB7E3AAF420D445AFD89B03E390359B

01131aa6d1046f5c286c

0

NEW_PROTOCOL

0

-1

1

0

0

0000-00-00

00:00:00

2007-06-11

08:59:38

O

61484116F05B1245B16938AAA79A416F

R

AGENT_PARAMETERS

05DFF40679CABF458D250847C70D06EA

01131aa1bb70ee1d19ab

0

NEW_PROTOCOL

0

-1

1

0

0

2007-06-11

08:59:37

2007-06-11

08:59:37

S

TIMESTAMP

0000000000

000000;19700101

C3E0963EB02BF44A972EFE0E5B9A656F

R

CLIENT_ALERT

05DFF40679CABF458D250847C70D06EA

01131aa1bb9f9e55ab34

0

NEW_PROTOCOL

0

-1

2

0

0

2007-06-11

08:59:37

2007-06-11

08:59:37

S

RESULT

0000000000

RESULT

0000000001

8F37BC2317C189488730A7FA3CC25363

R

AGENT_PARAMETERS

05DFF40679CABF458D250847C70D06EA

01131aa74f5ba6c7507e

0

NEW_PROTOCOL

0

-1

1

0

0

2007-06-11

08:59:38

2007-06-11

08:59:38

S

TIMESTAMP

0000000000

000000;19700101

DA2EB330C96F2A4690134886C700112A

R

CENTRAL_TRACING

05DFF40679CABF458D250847C70D06EA

01131aa74f6b6bad7ce5

0

NEW_PROTOCOL

0

-1

0

0

0

2007-06-11

08:59:38

2007-06-11

08:59:38

S

55B8D89AC5EE1F4CA01C8108578331FE

R

ZMDK_WRP_REC_CREATE

FEB7E3AAF420D445AFD89B03E390359B

01131aa74b73790e8280

0

NEW_PROTOCOL

0

-1

3

0

0

2007-06-11

08:59:38

2007-06-11

08:59:38

S

P_ERRO

0000000000

Documentos criados:,0000547454

P_RETORNO

0000000000

0

TI_RET

0000000000

10000000000000085363198826531320 SAIDAPROD 9020204 002 D100AFP 64824KG

DAA290B4A6B4F54883A01F75377A75D7

R

ZMDK_WRP_REC_CREATE

FEB7E3AAF420D445AFD89B03E390359B

01131aa6d1046f5c286c

0

NEW_PROTOCOL

0

-1

3

0

0

2007-06-11

08:59:38

2007-06-11

08:59:38

S

P_ERRO

0000000000

Documentos criados:,0000547453

P_RETORNO

0000000000

0

TI_RET

0000000000

10000000000000085363198826531320 SAIDAPROD 9020204 002 D100AFP 64824KG

D End: Dumping file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)ininbound.sync

D Initial buffer size of BinaryReader is 4334

P Read current inbound counter from file: 56

P Received sync counter 57 is valid

P Inbound file ready to be parsed

P Number of pending inbound containers before inbound processing = 0

P Synchronisation: Start processing inbound data

P Process acknowledge container: 26AC1D633CE4D54199C5C06105629D40

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outa000000f.sync was successful

P Process acknowledge container: 2DD0A7DA71E84145B728450A073C88AE

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outa000000d.sync was successful

P Process acknowledge container: 5FC7DEC560406E4E9FB45A54A072CD7C

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outa000000b.sync was successful

P Process acknowledge container: 8F42FD79F8760049BE341ACE83C09BD2

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outa000000e.sync was successful

P Process acknowledge container: AA880BB6CCF57C4399394A67C9E9DA46

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outa000000c.sync was successful

P Process acknowledge container: E80E1A3D69FD8E468DA8B24C1E720750

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outa000000g.sync was successful

P Process acknowledge container: 0511B475A8FD7B4EB964363D2F2CCC8B

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003q.sync was successful

A Deletion of outbound container header file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outz000003q.sync was successful

D Write container header to file (container id = 01131aa759102fa23b38): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outc000000h.sync

P Created outbound container for user (SHARED) and method CLIENT_ALERT

P Created outbound container for conversationId MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)

P Process acknowledge container: 0CC4ED338D3370458A98F37FB1A90222

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003u.sync was successful

A Deletion of outbound container header file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outz000003u.sync was successful

D GUID generation last time (1181563181328) was >= than current time (1181563181328) --> use this time instead 1181563181329

D Write container header to file (container id = 01131aa75911252e877b): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outc000000i.sync

P Created outbound container for user (SHARED) and method CENTRAL_TRACING

P Created outbound container for conversationId MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)

P Process acknowledge container: 11550EC56042914C9AAE7701C904B1F2

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003s.sync was successful

A Deletion of outbound container header file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outz000003s.sync was successful

D Write container header to file (container id = 01131aa7591f55a0cfbe): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outc000000j.sync

P Created outbound container for user (SHARED) and method ZMDK_WRP_REC_CREATE

P Created outbound container for conversationId FEB7E3AAF420D445AFD89B03E390359B / FEB7E3AAF420D445AFD89B03E390359B (User: (SHARED), MSD: Name: / ZMDKRECEBIMENTO (V. 2.01), Target=, Type=com.sap.ip.me.core.JspApplicationType)

P Process acknowledge container: 5474BBA4375A1848962F0F1043631B2E

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003t.sync was successful

A Deletion of outbound container header file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outz000003t.sync was successful

D GUID generation last time (1181563181343) was >= than current time (1181563181343) --> use this time instead 1181563181344

D Write container header to file (container id = 01131aa759209e424b0b): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outc000000k.sync

P Created outbound container for user (SHARED) and method AGENT_PARAMETERS

P Created outbound container for conversationId MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)

P Process acknowledge container: 7E04D2D482DE0D4983844D8E957811C3

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003p.sync was successful

A Deletion of outbound container header file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outz000003p.sync was successful

D Write container header to file (container id = 01131aa7592f1bc3e095): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outc000000l.sync

P Created outbound container for user (SHARED) and method AGENT_PARAMETERS

P Created outbound container for conversationId MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)

P Process acknowledge container: 910C47E1ACA63441B21D430F171870A4

A Deletion of outbound container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003r.sync was successful

A Deletion of outbound container header file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outz000003r.sync was successful

D GUID generation last time (1181563181359) was >= than current time (1181563181359) --> use this time instead 1181563181360

D Write container header to file (container id = 01131aa7593013d0dcf7): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outc000000m.sync

P Created outbound container for user (SHARED) and method ZMDK_WRP_REC_CREATE

P Created outbound container for conversationId FEB7E3AAF420D445AFD89B03E390359B / FEB7E3AAF420D445AFD89B03E390359B (User: (SHARED), MSD: Name: / ZMDKRECEBIMENTO (V. 2.01), Target=, Type=com.sap.ip.me.core.JspApplicationType)

I -

-


InboundContainer created: Type:R,Id:61484116F05B1245B16938AAA79A416F,SId:-1,Items:0,MaxI:1

P SyncInboundProcessing started for method AGENT_PARAMETERS

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

P Process container: Type:R,Id:61484116F05B1245B16938AAA79A416F,SId:-1,Items:0,MaxI:1

I -

-


InboundContainer created: Type:R,Id:61484116F05B1245B16938AAA79A416F,SId:-1,Items:0,MaxI:1

P Container processed without exceptions

P original context restored

P SyncInboundProcessing finished successfully for method AGENT_PARAMETERS

D Write container header to file (container id = 01131aa7593ff76b870a): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outa000000h.sync

P Created outbound container for user (SHARED) and method AGENT_PARAMETERS

P Created outbound container for conversationId MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)

I -

-


InboundContainer created: Type:R,Id:C3E0963EB02BF44A972EFE0E5B9A656F,SId:-1,Items:0,MaxI:2

P SyncInboundProcessing started for method CLIENT_ALERT

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

P Process container: Type:R,Id:C3E0963EB02BF44A972EFE0E5B9A656F,SId:-1,Items:0,MaxI:2

I -

-


InboundContainer created: Type:R,Id:C3E0963EB02BF44A972EFE0E5B9A656F,SId:-1,Items:0,MaxI:2

I AlertInboundProcessor: Result 1 =

I AlertInboundProcessor: Result 2 =

P Container processed without exceptions

P original context restored

P SyncInboundProcessing finished successfully for method CLIENT_ALERT

D GUID generation last time (1181563181375) was >= than current time (1181563181375) --> use this time instead 1181563181376

D Write container header to file (container id = 01131aa7594026330b2c): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outa000000i.sync

P Created outbound container for user (SHARED) and method CLIENT_ALERT

P Created outbound container for conversationId MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)

I -

-


InboundContainer created: Type:R,Id:8F37BC2317C189488730A7FA3CC25363,SId:-1,Items:0,MaxI:1

P SyncInboundProcessing started for method AGENT_PARAMETERS

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

P Process container: Type:R,Id:8F37BC2317C189488730A7FA3CC25363,SId:-1,Items:0,MaxI:1

I -

-


InboundContainer created: Type:R,Id:8F37BC2317C189488730A7FA3CC25363,SId:-1,Items:0,MaxI:1

P Container processed without exceptions

P original context restored

P SyncInboundProcessing finished successfully for method AGENT_PARAMETERS

D Write container header to file (container id = 01131aa7594e411cf795): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outa000000j.sync

P Created outbound container for user (SHARED) and method AGENT_PARAMETERS

P Created outbound container for conversationId MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)

I -

-


InboundContainer created: Type:R,Id:DA2EB330C96F2A4690134886C700112A,SId:-1,Items:0,MaxI:0

P SyncInboundProcessing started for method CENTRAL_TRACING

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

P Process container: Type:R,Id:DA2EB330C96F2A4690134886C700112A,SId:-1,Items:0,MaxI:0

P Container processed without exceptions

P original context restored

P SyncInboundProcessing finished successfully for method CENTRAL_TRACING

D GUID generation last time (1181563181390) was >= than current time (1181563181390) --> use this time instead 1181563181391

D Write container header to file (container id = 01131aa7594f60a1833b): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outa000000k.sync

P Created outbound container for user (SHARED) and method CENTRAL_TRACING

P Created outbound container for conversationId MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)

I -

-


InboundContainer created: Type:R,Id:55B8D89AC5EE1F4CA01C8108578331FE,SId:-1,Items:0,MaxI:3

P SyncInboundProcessing started for method ZMDK_WRP_REC_CREATE

P Thread Thread-10 switched context to FEB7E3AAF420D445AFD89B03E390359B / FEB7E3AAF420D445AFD89B03E390359B (User: (SHARED), MSD: Name: / ZMDKRECEBIMENTO (V. 2.01), Target=, Type=com.sap.ip.me.core.JspApplicationType) (stack level 1)

P Process container: Type:R,Id:55B8D89AC5EE1F4CA01C8108578331FE,SId:-1,Items:0,MaxI:3

I -

-


InboundContainer created: Type:R,Id:55B8D89AC5EE1F4CA01C8108578331FE,SId:-1,Items:0,MaxI:3

P Container processed without exceptions

P original context restored

P SyncInboundProcessing finished successfully for method ZMDK_WRP_REC_CREATE

D Write container header to file (container id = 01131aa766002944a05c): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outa000000l.sync

P Created outbound container for user (SHARED) and method ZMDK_WRP_REC_CREATE

P Created outbound container for conversationId FEB7E3AAF420D445AFD89B03E390359B / FEB7E3AAF420D445AFD89B03E390359B (User: (SHARED), MSD: Name: / ZMDKRECEBIMENTO (V. 2.01), Target=, Type=com.sap.ip.me.core.JspApplicationType)

I -

-


InboundContainer created: Type:R,Id:DAA290B4A6B4F54883A01F75377A75D7,SId:-1,Items:0,MaxI:3

P SyncInboundProcessing started for method ZMDK_WRP_REC_CREATE

P Thread Thread-10 switched context to FEB7E3AAF420D445AFD89B03E390359B / FEB7E3AAF420D445AFD89B03E390359B (User: (SHARED), MSD: Name: / ZMDKRECEBIMENTO (V. 2.01), Target=, Type=com.sap.ip.me.core.JspApplicationType) (stack level 1)

P Process container: Type:R,Id:DAA290B4A6B4F54883A01F75377A75D7,SId:-1,Items:0,MaxI:3

I -

-


InboundContainer created: Type:R,Id:DAA290B4A6B4F54883A01F75377A75D7,SId:-1,Items:0,MaxI:3

P Container processed without exceptions

P original context restored

P SyncInboundProcessing finished successfully for method ZMDK_WRP_REC_CREATE

D Write container header to file (container id = 01131aa76d6373847e85): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outa000000m.sync

P Created outbound container for user (SHARED) and method ZMDK_WRP_REC_CREATE

P Created outbound container for conversationId FEB7E3AAF420D445AFD89B03E390359B / FEB7E3AAF420D445AFD89B03E390359B (User: (SHARED), MSD: Name: / ZMDKRECEBIMENTO (V. 2.01), Target=, Type=com.sap.ip.me.core.JspApplicationType)

D Processed 6 not arranged, 0 arranged, 12 acknowledge containers and 0 sub containers

P original context restored

P Number of pending inbound containers after inbound processing = 0

P Synchronisation: Processing of inbound data finished

D There are no more packages waiting

D resetting the info which outbound containers are already created for user (SHARED)

P original context restored

P Synchronization finished for user (SHARED)

P Synchronization started for user EXDFIGUE

D PackageManager: old package file E:Arquivos de programasSAP Mobile InfrastructuresyncEXDFIGUEoutpackage.out was successfully deleted

D PackageManager: create package with maximum 2147483647 items

D PackageManager: filled package with 0 acknowledge received container(s)

D PackageManager: filled package with 0 acknowledge container(s)

D PackageManager: filled package with 0 container items or headers

D GUID generation last time (1181563186593) was >= than current time (1181563186593) --> use this time instead 1181563186594

D GUID generation last time (1181563186609) was >= than current time (1181563186609) --> use this time instead 1181563186610

D PackageManager: filled package with 4 notify container(s)

D Package file E:Arquivos de programasSAP Mobile InfrastructuresyncEXDFIGUEoutpackage.out exists and can be read

P Synchronisation started

D Begin: Dumping file E:Arquivos de programasSAP Mobile InfrastructuresyncEXDFIGUEoutpackage.out

MISYNC0x1251300

01131aa76da19d1d2bfa

EXDFIGUE

N

D6AD6088EA8CFA4E90A77A74EECA6616

-1

NEW_PROTOCOL

0

-1

0

-1

-1

01131aa76da2f6cf8c93

EXDFIGUE

N

890A084C789BD242BE0EF4CCA2A4B74E

-1

NEW_PROTOCOL

0

-1

0

-1

-1

01131aa76db1c9bd6c84

EXDFIGUE

N

16649B2EB6715942AFECE1617927698C

-1

NEW_PROTOCOL

0

-1

0

-1

-1

01131aa76db2a7651fc1

EXDFIGUE

N

5E7C57A41716D64A9329B1C062141786

-1

NEW_PROTOCOL

0

-1

0

-1

-1

D End: Dumping file E:Arquivos de programasSAP Mobile InfrastructuresyncEXDFIGUEoutpackage.out

I Outbound file size for user EXDFIGUE is 486

P Do not use http proxy (system properties update)

P Use following gateway for synchronization: http://wasaepd01:8001

I GzipDataCompression: Gzip data compression is switched on

P Sending outbound file compressed to server.

P Outbound file was compressedly sent.

P Receiving inbound file compressed from server.

P Inbound file was compressedly received.

I Inbound file size for user EXDFIGUE is 109

P Synchronisation successfully connected

D Begin: Dumping file E:Arquivos de programasSAP Mobile InfrastructuresyncEXDFIGUEininbound.sync

MISYNC0x0251300

JCO-library-version: 1.1.16; Creation time: UNDEFINED DATE UNDEFINED TIME

085945

58

D End: Dumping file E:Arquivos de programasSAP Mobile InfrastructuresyncEXDFIGUEininbound.sync

D Initial buffer size of BinaryReader is 109

P Read current inbound counter from file: 57

P Received sync counter 58 is valid

P Inbound file ready to be parsed

P Number of pending inbound containers before inbound processing = 0

P Synchronisation: Start processing inbound data

D Processed 0 not arranged, 0 arranged, 0 acknowledge containers and 0 sub containers

P original context restored

P Number of pending inbound containers after inbound processing = 0

P Synchronisation: Processing of inbound data finished

D There are no more packages waiting

D resetting the info which outbound containers are already created for user EXDFIGUE

P original context restored

P Synchronization finished for user EXDFIGUE

D Synchronisation: Fire SyncEvent 10

P Thread Thread-10 switched context to MI4558444649475545 / 890A084C789BD242BE0EF4CCA2A4B74E (User: EXDFIGUE, MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.core.StatusUpdater on ConversationId MI4558444649475545

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 33228044

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 33228044

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.services.os.AgentManager$AgentSyncEventListener on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 17336859

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 17336859

D PersistenceManagerImpl.commit()

D Opened temporary container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)out 000000l.sync for write (container id = 01131aa7710c3aeb72cc)

D Write container header to file (container id = 01131aa7710c3aeb72cc): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outz000003v.sync

D Closed container file (container id = 01131aa7710c3aeb72cc) and rename container file to E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003v.sync

P Created outbound container for user (SHARED) and method AGENT_PARAMETERS

P Created outbound container for conversationId MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.sync.LogSender on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 27471524

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 27471524

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.core.RegistryInboundProcessingLog$RegistryInboundProcessingLogSyncEventListener on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 4920025

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 4920025

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.ccms.LastSuccessfulSyncAlert on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 12750007

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 12750007

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.smartsync.core.SyncAdapter on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 10769461

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 10769461

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.ccms.AlertManagerImpl on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 9727266

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 9727266

D PersistenceManagerImpl.commit()

D Successfully added container for method CLIENT_ALERT and user (SHARED) to the outbound queue

D Opened temporary container file E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)out 000000m.sync for write (container id = 01131aa7713bd413c028)

D Write container header to file (container id = 01131aa7713bd413c028): E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outz000003w.sync

D Closed container file (container id = 01131aa7713bd413c028) and rename container file to E:Arquivos de programasSAP Mobile Infrastructuresync(SHARED)outi000003w.sync

P Created outbound container for user (SHARED) and method CLIENT_ALERT

P Created outbound container for conversationId MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType)

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Repetitive sync is turned off

D Synchronisation: Fire SyncEvent 2

P Thread Thread-10 switched context to MI4558444649475545 / 890A084C789BD242BE0EF4CCA2A4B74E (User: EXDFIGUE, MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.core.StatusUpdater on ConversationId MI4558444649475545

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 15606014

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 15606014

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.services.os.AgentManager$AgentSyncEventListener on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 28848200

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 28848200

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.sync.LogSender on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 23715172

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 23715172

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.core.RegistryInboundProcessingLog$RegistryInboundProcessingLogSyncEventListener on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 21362147

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 21362147

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.ccms.LastSuccessfulSyncAlert on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 1191324

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 1191324

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.smartsync.core.SyncAdapter on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 24156236

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 24156236

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.ccms.AlertManagerImpl on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 18796902

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 18796902

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

D Synchronisation: Fire SyncEvent 1

P Thread Thread-10 switched context to MI4558444649475545 / 890A084C789BD242BE0EF4CCA2A4B74E (User: EXDFIGUE, MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.core.StatusUpdater on ConversationId MI4558444649475545

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 4565548

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 4565548

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.services.os.AgentManager$AgentSyncEventListener on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 27735295

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 27735295

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.sync.LogSender on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 8940240

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 8940240

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.core.RegistryInboundProcessingLog$RegistryInboundProcessingLogSyncEventListener on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 1878808

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 1878808

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.ccms.LastSuccessfulSyncAlert on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 2418689

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 2418689

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.smartsync.core.SyncAdapter on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 17857541

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 17857541

D PersistenceManagerImpl.commit()

D Smart Sync received SyncEvent of type 1 for ConvId MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 20865574

D PersistenceManagerImpl.beginTransaction():false

D Performing Smart Sync sync done activities for Context com.sap.ip.me.smartsync.core.Context:

D PersistenceManagerImpl.get(IClassDescriptor,ICondition):(IClassDescriptor(Name: syncBoResponse)),(respType =0)

D PersistenceManagerImpl.get(IClassDescriptor,ICondition):(IClassDescriptor(Name: syncBoResponse)),(respType =2)

D PersistenceManagerImpl.get(IClassDescriptor,ICondition):(IClassDescriptor(Name: syncBoResponse)),(respType =1)

D Sending Message Reply "SYNC_END" to to observer com.sap.ip.me.security.permission.AuthBoObserver@5db5ae

D Check if AuthSyncBo is already deployed

D AuthSyncBo is deployed

D Create AuthSyncBo instance

W Error while creating MIAUTH sync bo (no SyncBoDescriptor for MIAUTH available); contact SAP support

D commit() called on instance 20865574

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

P Thread Thread-10 switched context to MI2853484152454429 / 05DFF40679CABF458D250847C70D06EA (User: (SHARED), MSD: Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType) (stack level 1)

I SyncEvent Performing com.sap.ip.me.ccms.AlertManagerImpl on ConversationId MI2853484152454429

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 10340902

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 10340902

D PersistenceManagerImpl.commit()

P original context restored

D Smart Sync framework: entering new context :5E7C57A41716D64A9329B1C062141786 - FEB7E3AAF420D445AFD89B03E390359B

I Synchronization finished, Thread=Thread-10

D AbstractMEHttpServlet:dispatch request to '/jsp/message.jsp'

D Set current application to 'ZMDKRECEBIMENTO'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-8".

D AbstractMEHttpServlet:getEvent() done with event name = 'boxorigem'

D AbstractMEHttpServlet:dispatch request to '/jsp/recboxorigem.jsp'

D Set current application to 'ZMDKRECEBIMENTO'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-10".

D AbstractMEHttpServlet:getEvent() done with event name = 'sairinicio'

D AbstractMEHttpServlet:dispatch request to 'http://127.0.0.1:4444'

D Deactivated application ZMDKRECEBIMENTO

P Set current MSD to Name: / MOBILEENGINE_JSP (V. 251300), Target=, Type=com.sap.ip.me.core.FrameworkApplicationType

D Set current application to 'MOBILEENGINE_JSP'

P Activate application MOBILEENGINE_JSP

D Smart Sync framework: entering new context :MI2853484152454429 - MI2853484152454429

D Get IPersistenceManager for ConversationID: MI2853484152454429

D beginTransaction() called with doWait=false for instance 4040784

D PersistenceManagerImpl.beginTransaction():false

D PersistenceManagerImpl.get(IQuery):(Type: (IClassDescriptor(Name: meta_topRow)))(Condition: (ALWAYS TRUE))(Order: ((IAttributeDescriptor(Name: downloadOrder)) asc))(Start index: 0)(Max results: -1)

D commit() called on instance 4040784

D PersistenceManagerImpl.commit()

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-8".

D AbstractMEHttpServlet:getEvent() done with event name = ''

D AbstractMEHttpServlet:dispatch request to '/jsp/home/home.jsp'

D Deactivated application MOBILEENGINE_JSP

D Set current application to 'MOBILEENGINE_JSP'

P Activate application MOBILEENGINE_JSP

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-11".

D AbstractMEHttpServlet:getEvent() done with event name = ''

D AbstractMEHttpServlet:dispatch request to '/jsp/trace/trace.jsp'

D Set current application to 'MOBILEENGINE_JSP'

D AbstractMEHttpServlet:doGetThreadSafe() called Thread = " Thread-8".

D AbstractMEHttpServlet:getEvent() done with event name = ''

0 Kudos

How to do for no resend the information again?

this is my question? in source code? in configuration on MI Server?

thank's

Douglas