hi,
I've got a webproject that calls a webservice 4 times to check information
in an CRM system. These checks are made in an asynchronous process. These
processes call an instance of the webservice class, there all the functions
of the webservice are grouped in functions.
the first three times, it works perfectely also in the production
environment, that is on a different domain/server. The fourth time, the
asyncronous process starts, makes an instance of the "webservice " class and
calls the function "ConfirmRegistr ation", but when it comes to the rule
dim sResult as string=oService .Confirm(arg1,a rg2;arg3)
The compiler stops at the catch section of the try catch, saying that the
object reference is not set to an instance of an object.
The webservice works perfectely, as I've tested seperately. But in this case
the compiler doesn't even call the service, it jumps out of it due to this
error.
Does anyone have an idea regarding this?
Thanks,
I've got a webproject that calls a webservice 4 times to check information
in an CRM system. These checks are made in an asynchronous process. These
processes call an instance of the webservice class, there all the functions
of the webservice are grouped in functions.
the first three times, it works perfectely also in the production
environment, that is on a different domain/server. The fourth time, the
asyncronous process starts, makes an instance of the "webservice " class and
calls the function "ConfirmRegistr ation", but when it comes to the rule
dim sResult as string=oService .Confirm(arg1,a rg2;arg3)
The compiler stops at the catch section of the try catch, saying that the
object reference is not set to an instance of an object.
The webservice works perfectely, as I've tested seperately. But in this case
the compiler doesn't even call the service, it jumps out of it due to this
error.
Does anyone have an idea regarding this?
Thanks,
Comment