Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a DataSnap Server with DSServerClass.LifeCycle=Session (exposes a descent class of TDSServerModule).

When the client connects the TDSServerModule, is created and remains in memory as long as session was, - this made a datasnap connection (tunneling) - thats ok.

When connect by a Android (Mobile connected), and the TDSServerModule is created/destroyed by call (instance).. This makes a REST connection...

I have a small demo with this.

Any idea to resolve this problem...

Thanks in advance, Pedro Lopes

share|improve this question

1 Answer

up vote 3 down vote accepted

REST is by definition stateless. From documentation on Server Class LifeCycle:

For a REST client connection, if Session LifeCycle is used on the server class, it behaves like Invocation LifeCycle.

It is by-design. What is your problem precisely?

share|improve this answer
Thanks, my problem is reading a big dataset. I have the fooling steps: 1 - Open, preparate; 2 - Load 40 rows 3 - repeat until eof () – Pedro Lopes Jul 30 '12 at 8:29
In that case you have to transfer state from client to server. For example define custom servermethod with input parameters StartRow and EndRow and returning the corresponding dataset with all rows in between. This technique is called 'incremental fetching'. – Erwin Jul 30 '12 at 10:24
but starting the query in every call is to slow... perhaps I must store the connection and the query in session variable... is it this a good approach? – Pedro Lopes Jul 30 '12 at 11:15
1  
Hard to tell on forehand what is bottleneck. But if mobile-device client needs hundreds of data rows it is not bad idea I think to reconsider design. Anyway, Alister Christie has nice video on 'Preserving State in DataSnap REST Servers'. learndelphi.tv/video/064/RestServer.html Good luck! – Erwin Jul 30 '12 at 12:23
1  
Do not store the full dataset in the session. You can use a cache which holds the records so all sessions can share it. Otherwise your server will run out of memory very soon. Avoid session data whenever possible. – mjn Aug 2 '12 at 11:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.