Performance issues with WebService and compact Framework

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I developped a WebService in C# which is used by 2 applications. One is running on the "normal" Framework, the other on Compact FrameWork of Windows CE. From the Compact FrameWork, the first time a webmethod is called, we have to wait at least 3sec before having the response even if the method does absolutly nothing. After the first call, performance are not very good but acceptable.

A solution I can have is to call every method of my WebService on the application laod, but I don't find it efficient...

I think I made a mistake in configuration or in call of my WebMethods. Could you help me?

Thanks in advance

Steph
 
This is a recognised 'feature' of webservices, the first access always seems
to exhibit this behaviour.

Chris


Steph said:
Hello,

I developped a WebService in C# which is used by 2 applications. One is
running on the "normal" Framework, the other on Compact FrameWork of Windows
CE. From the Compact FrameWork, the first time a webmethod is called, we
have to wait at least 3sec before having the response even if the method
does absolutly nothing. After the first call, performance are not very good
but acceptable.
A solution I can have is to call every method of my WebService on the
application laod, but I don't find it efficient...
 

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

Back
Top