We have an ASP.NET web service (net 2.0 / 3.5) that gives a message in a couple of weeks
" System.Web.Services.Protocols.SoapException: the server could not process the request. ---> System.IO.FileNotFoundException: could not find the file 'c: \ windows \ Temp \ xxxxxx.dll '"
where the xxxxxx.dll file name is a random string that changes every time a problem occurs.
As soon as an error occurs, even the iisreset command does not fix the problem. Rebooting the server fixes the problem within a few weeks. But then it happens again.
I have seen many links where temporary file storage is a problem as a result of the dynamic compilation of XmlSerializer. Our web service code consumes a Java web service, except that there is no explicit use of the XmlSerializer class.
Any ideas / tips?
Thanks in advance!
source
share