You need to sign in to do that
Don't have an account?

How to make real time calls to salesforce APIs
Hi,
I am trying to implement real time web services to retrieve a column from Salesforce. I am able to make successful calls. But If i cross 3600 logins with in an hour, it is throwing me invalid login exception. ("Application Login Rate Exceeded"). What is the best way to implement the realtime calls ?
Thanks
Are you logging in everytime you make an API call? You should log in only once and keep the sessionid around and keep it in subsequent calls.
--Vinod.
Thanks a lot for your reply. Where can I get the sample code in java to re use the session to make SF API calls ?
Thanks
I use the Partner WSDL to connect to SF from my client apps..
then each time I start to call SF, I check my timeout time limit, and re-logon, then I reuse the connection to execute the SF api calls.
Sam