M
mithu
I have a web service(C#) which involves processing lot of information thru a
third party component. I have couple of issues with my web service.
Issue 1:
My web service calls a third party component. The whole operation including
getting results to the user takes 16 mins. But even after changing the
timeouts to 30 Mins, i was getting time out error just after couple of
minutes. It works only after I changed all the time outs to > 30 Mins. Why do
I need timeouts > than the processing time? who takes precedence?
machine.config or web.config? The timeouts worked only after I changed my
machine.config? Am I wrong in assuming that you an override machine.config
with web.config as long as the value is less than machine.config?
Issue 2:
I get page can not be displayed in my browser just three minutes after
my web service call the third party component(which is a com component). But
I dont see any error in the event log. I added debug statements to trace the
path of execution. Even though I get page can not be displayed, I could see
the process is completed succesfully( I insert debug statement to sql
server...I see all of them)... I tried to make the call to the third party
component,asynchronous one. It still didnt solve my problem.
The sequesce of actions....
web server dumps the input to sql server(which in turn is used by the third
party component)
web server calls app server(where the web service resides)
web service calls the thrid pary component ....(it is a HTTPWebRequest)
..
Waits for response from third party component
--page can not be displayed in couple minutes) ---
( but can see the output dumped to the log table.dont see any error)
I changed memorylimit, maxRequestLength,responseDeadlockInterval as
discussed in so many articles. It didnt help me. It is eating up my time and
brain. I dont really know what the problem is. I am desperate for some help.
Would greatly appreciate any feedback.
third party component. I have couple of issues with my web service.
Issue 1:
My web service calls a third party component. The whole operation including
getting results to the user takes 16 mins. But even after changing the
timeouts to 30 Mins, i was getting time out error just after couple of
minutes. It works only after I changed all the time outs to > 30 Mins. Why do
I need timeouts > than the processing time? who takes precedence?
machine.config or web.config? The timeouts worked only after I changed my
machine.config? Am I wrong in assuming that you an override machine.config
with web.config as long as the value is less than machine.config?
Issue 2:
I get page can not be displayed in my browser just three minutes after
my web service call the third party component(which is a com component). But
I dont see any error in the event log. I added debug statements to trace the
path of execution. Even though I get page can not be displayed, I could see
the process is completed succesfully( I insert debug statement to sql
server...I see all of them)... I tried to make the call to the third party
component,asynchronous one. It still didnt solve my problem.
The sequesce of actions....
web server dumps the input to sql server(which in turn is used by the third
party component)
web server calls app server(where the web service resides)
web service calls the thrid pary component ....(it is a HTTPWebRequest)
..
Waits for response from third party component
--page can not be displayed in couple minutes) ---
( but can see the output dumped to the log table.dont see any error)
I changed memorylimit, maxRequestLength,responseDeadlockInterval as
discussed in so many articles. It didnt help me. It is eating up my time and
brain. I dont really know what the problem is. I am desperate for some help.
Would greatly appreciate any feedback.