how to enhance the web services performance

M

Mullin Yu

hi,

i'm a web services having several functions and take around 25 seconds to
return the soap resposne back to the caller.

but, the response time fo the performance requirement is 3 seconds which is
far from current one. i want to know is there any method that the web
services can return something back to the caller first and then really send
back the soap response.

it's because the response time only take the first http response back.

any ideas?

thanks!
 
M

Mullin Yu

but, if the caller isn't a NET application, it sends the plain HTML request
through HTTP, can i still do so?

thanks!


Ray Parker said:
Why not make the ASync call:

Instead of

myService.MyMethod();

use

myService.BeginMyMethod();

Then you can return right away and respond when the call is complete.
 
K

Kondratyev Denis

Nope, in client create application create thread which call web service
method. Your application will run during thread wait web method. Then web
service method return data your thread signal to main application about it
(via events or so).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top