I have a Java web service and I am calling it from my Objective-C++ Cocoa application. I generated stubs using gSOAP. My question is how to link progress bar with request send to remote service through gSOAP proxy class?
Asked
Active
Viewed 87 times
0
-
1Well, what's your specific progress metric? – Jay Apr 17 '14 at 17:53
-
Metric is size of transferred data. Request may be "big". – abg Apr 17 '14 at 18:23
-
1So you might just need e.g. 5 requests to transfer the data, i.e. just 5 opportunities to update the progress bar with real progress information? Depending on how long the whole process actually takes it sounds like you'd want to implement some kind of guessing/predictive scheme to update the progress bar between these points. Kind of like MS installers are giving you some kind of progress that's usually never even close to the eventual time it takes albeit constantly updating.. ;-) – Jay Apr 18 '14 at 07:04