Flex: client / server messaging question (RPC or socket ?)
- by Patrick
hi,
I'm building a Flex application, which is going to perform many server requests (let's say, that almost all interactions require an update from server).
At the moment I'm using remote procedure calls for it. But I was wondering if using a socket would be better.
In other terms, is maybe better to keep the connection alive rather then performing many calls in sequence ?
For my demo app I only have 1 client. Is the number of clients connecting to the server a factor for this choice ?
thanks