tags:

views:

8

answers:

0

Created a WCF Web Service that uses many static Lists. Configured the service as a Singleton Instance service. Using wsHttpBinding and I am using HttpRunTime.Cache to cache data on the IIS 7.5 service Host.

For every call i make to the Service, the service first checks if the Cache is empty, if it is then it populates all the static Lists from Database and then returns the data requested.

However what I notice after deploying the WCF service is that for the First few calls the WCF returns data correctly. I also have Log4net configured to write trace/Log messages to the disk.

I have deployed the WCF service on Windows 2008 R2 OS 64 bit server.

So for the first few calls to the WCF service the service works fine and even Log4net logs correctly. but after a first few calls the WCF stops returning data to the client and even the Log4net stops logging messages to disk.

Are there any WCF patches that i need for the Windows 2008 64 Bit OS?

I am not able to debug the WCF service since the server does not have VS 2008 installed and it is remote server.

Can someone suggest what I could be doing wrong???

Thanks in advance