I'm porting my ASP.NET application to Mono. I built it from SVN trunk under Debian 5.0.

I allow anonymous access to Logout.aspx and styles.css using Web.config directives:

<location path="Logout.aspx">
    <system.web>
        <authorization>
            <allow users="*" />
        </authorization>
    </system.web>
</location>
<location path="styles.css">
    <system.web>
        <authorization>
            <allow users="*" />
        </authorization>
    </system.web>
</location>

It works fine under Visual Studio Web Server, IIS6 and IIS7 but doesn't under XSP2 2.5.0.0. Are there any workarounds or ways to do the same task but differently?

I mean doesn't work - requesting redirects to Login.aspx

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

The bug seems to have been fixed on the 9th of jan. See the details in mono's bugzilla

Unfortunately it does not seem to work on (sub)directories, so css and js directories are still not accessible after logging in.

link|improve this answer
Yea, you're right. We got success in the mailing list discussion. Thanks! – abatishchev Jan 14 '10 at 11:05
As a workaround, you can add multiple <location> elements to cover each subdirectory. – Ates Goral Jun 23 '10 at 19:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.