How is the JobDone sub linked to the HttpJob object? If the "sJ" in the Initialize call is the event name for callbacks, then sub JobDone should be declared as sub sJ_JobDone (at least, that's how callbacks normally work).
My point is that there is no obvious connection between your Js instance and your JobDone sub. Normally, the event name is the link, but it requires you to declare your JobDone sub as <eventname>_JobDone - in your example, you would declare Js_JobDone as the sub name, so that the HttpJob object can find the sub to raise the event.
My point is that there is no obvious connection between your Js instance and your JobDone sub. Normally, the event name is the link, but it requires you to declare your JobDone sub as <eventname>_JobDone - in your example, you would declare Js_JobDone as the sub name, so that the HttpJob object can find the sub to raise the event.
My point is that there is no obvious connection between your Js instance and your JobDone sub. Normally, the event name is the link, but it requires you to declare your JobDone sub as <eventname>_JobDone - in your example, you would declare Js_JobDone as the sub name, so that the HttpJob object can find the sub to raise the event.