Hi,
We are using NTD to deploy our smart client .NET app over the web. When the
application starts up on a client, there are numerous HTTP requests for
files such as:
"application.resources", "application.resources.dll",
"application.resources.exe", "bin/application.resources", etc.
These requests all returned a HTTP 404 not found. I have been trying to
find a way to eliminate these requests. I currently have in place a
workaround that basically places an empty file with the first name requested
for each assembly. This reduces the number of requests from around 32 per
assembly to 2 per assembly. I would still like to get rid of them
altogether, if possible.
I have read here and there others who have experienced this problem. One of
the solutions I came across was to use the following code:
Thread.CurrentThread.CurrentUICulture =
System.Globalization.CultureInfo.InvariantCulture;
I tried putting this line as the first line in my Sub Main() but the initial
requests did not subside. I think that maybe I am not using it correctly,
but I have been unable to find more information about this.
Any help of how to eliminate these requests would be greatly appreciated.
Thank you,
Marc