Hallo, Ian hat gesagt: // Ian wrote: > under public_html i have a directory MyContext and i also have a directory > i created called test. Inside test i have a file called test.psp which is > basically just a hello world page. > > If i go to the url server/~merk/test/test.psp it instead pulls up the page > in MyContext/Main.py > > If i go to the url server/~merk/test/test.psp/test/test.psp then i get my > test page. > > Actually, if i go to server/~merk/test/anything.psp/test/test.psp i get my > test page as well. > > Can someone give me a clue what i am doing wrong here? Because i'm pretty > sure i'm totally clueless now ;p
You have activated the "ExtraPathInfo" setting, right? This has subtle effects on handling of Contexts, of which the most subtle is, that it is better to include Context- and Servlet-name in a request. So http://server/~merk/MyContext/test/test/ should work and show the same as http://server/~merk/MyContext/test/test.psp or http://server/~merk/MyContext/test/test.psp/ ciao -- Frank Barknecht _ ______footils.org__ ------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100006ave/direct;at.asp_061203_01/01 _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
