Which activity is the one which 'created' the class? I'm running into "Object Context is Paused" with a class that uses HTTP, I dim the class variable (x) in Main (same results trying Dim from Starter service.) and I call the x.Initialize from MAIN, which works fine (= httpjob returns values to the class object).
However, when I try to call a sub in the class (after it is initialized) also from MAIN to refresh the class data, the JobDone never hooks and I get the "Object Context is Paused, Ignoring CallSubDelayed: JobDone"
EDIT: Tried just running initialize for the refresh case also, it fails same. It seems like once the class is initialized, the object context is paused.
SOLVED!: I did not realize that the Class Initialization was where the object is bound to an activity/service. I was initializing from an different activity than MAIN. I incorrectly thought that where the class variable was DIM'ed was the activity that mattered.
Gentry