web services deployment and configuration on server?

  • Thread starter Thread starter Joanne
  • Start date Start date
J

Joanne

Hi,

I have a web service that my Pocket PC app consumes. There are other web
services on the same server that are for other devices but for the same
project. If I have more than one web service under the same IIS folder do
they use the same thread or thread pool on the server or would each web
service use its own thread anyway? I guess im just trying to find out if web
services are grouped under IIS would they all fail if one fails?

Thanks
 
Not sure. As the implementation of a web service is completely transparent
to the Pocket PC, you'll probably have more luck asking this question on an
ASP.NET newsgroup (assuming that your web services are ASP.NET-based - they
don't have to be), like
microsoft.public.dotnet.framework.aspnet.webservices, or on the forums at
http://asp.net.
 
In order to make your web services more robust you can expose them via
separate virtual directories and either set process isolation level to high
(IIS 5.x) or assign these applications to different application pools.
Web services (.asmx files) located inside the same virtual directory will be
loaded inside the same appdomain and probably affect each other
 
Back
Top