ASP.NET, URL Rewriting and threads on Linux?
Posted
by acidzombie24
on Server Fault
See other posts from Server Fault
or by acidzombie24
Published on 2010-05-21T17:19:45Z
Indexed on
2010/05/21
17:32 UTC
Read the original article
Hit count: 291
Right now converting my normal sql(ite) syntax into compatible MS Server syntax is driving me mad.
My code seems to be mono compatible judging by MoMA. However in global.asax i start several threads in Application_Start to use as a service and excessive url rewrites in Application_BeginRequest (everything is rewriting into default.aspx which calls C# code/class baded on the url). The urls do not have extensions or my have false extentions ie mysite.com/username/page/title.lol - id
I need it all to go to BeginRequest. I also need files to be downloadable. Usually the path will be rewritten as from /file/user/filename
to /file/u/s/user/file
. Would this be supported on linux+mono+a good webserver?
© Server Fault or respective owner