cancel
Showing results for 
Search instead for 
Did you mean: 

status from backend for upload from backend

Former Member
0 Kudos

Hi! I am creating a syncnBo instance on the client.It is updated with the backend when I call the synchronizeWithBackend() method. Now I need to get a confirmation from the backend.Whether the data is successfully uploaded or not.So that I can display it on the client JSP page. Where can we get the status of the data upload from the client.

I have implemented the messageReplyObserver interface.

and try to see if am getting the MessageReplyType.SUCCESS.Is this the correct approach?

Even the status MessageReplyType is returned in the next synchronization.

So Could you please suggest me the correct approach for checking the for uploading the syncbo instance

Thanks in Advance,

Veerabhadram

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Veerabhadram,

When you have created a syncBo instance on the client the Middleware will respond with a SyncReply and not a MessageReply. You need to implement the SyncReplyObserver for this.

You will get this only during the next sync because your

SyncBo is in asynchronous mode. If it was synchronous you would get the reply in the same sync.

Best Regards,

Karthik

Former Member
0 Kudos

Hi Karthik! Thanks for your reply.

Answers (0)