Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

for themeing purposes, I'm doing the following steps:

1) Custom view engine derived directly from RazorViewEngine for making MVC search Views in custom locations. Works.

2) Custom virtual path provider (derived directly from VirtualPathProvider) with overridden FileExists, GetFile, GetCacheDependency, GetFileHash

3) Custom virtual file (derived directly from VirtualFile) with overridden Open()

The goal is pretty simple: include the requested host into the location of searched views. It works fine for the first request. Unfortunately, on the following requests, the output seems to be cached and makes ASP.NET try to load a file which may not be present.

Example:

  • Request on hostA: file in custom location present and loaded - all fine.
  • Request on hostB (directly after request to hostA): file not present in custom location. HTTP404 is thrown (even if CustomVirtualPathProvider.FileExists returns FALSE!)
  • Request on hostB (after recycling AppPool): file still not present in custom location, request works fine.
  • Request on hostA (again without recycling): webpage is displayed like the file is not present, disregarding FileExists telling TRUE.

Output caching in IIS is disabled, webpage is not precompiled. What could be wrong?
Thanks for any hints.

EDIT: Maybe it's important: on IIS-Express, it works perfectly. IIS7 shows the described cache-problem.

EDIT2: Is it bad practice to reference two different files (event if one of the both is not present) via the same URI? Ex: ~/Views/Dynamic/Footer.cshtml (present on hostA, not present on hostB)

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.