This is fixed in Version 1.2.
We made time interval a property in the ObjectContext class so the app can set it.
We added a member variable in ObjectContext and HttpHandler.
Users can now set the variable in sample app as below.
[proxy setTimeOutInterval:60.0];
If user don't set it, the default timeout will be 30.0.
(ObjectContext.m -
Line 167:
[self setTimeOutInterval:30.0];)
|