T
tmasood
Guest
Hi, REST services can only use the session-free application model. Connection procedures do not apply to this model, so they are ignored. REST services are most appropriate when requests are mostly independent of each other so a large amount of context does not have to be maintained between requests. For services where a great deal of state information needs to be set up in a connect procedure and maintained over multiple requests, consider other service transports such as SOAP or AppService (classic AppServer) / APSV (PAS). These transports can use the session-managed application model where a connect procedure can be used to set up context management. I hope this helps you.
Continue reading...
Continue reading...