2007-02-21 Marek Habersack * ApplicationHost.cs: support both Bin and bin directories, prefer the former. 2007-02-19 Marek Habersack * ApplicationHost.cs: Use a deterministic application name, so that the temporary location is always in the same place for the given app. 2007-01-30 Marek Habersack * ApplicationHost.cs: Define AppDomain data item "DataDirectory" - used by the ADO.NET |DataDirectory| connection string placeholder. Present by default in MS.NET. 2007-01-20 Miguel de Icaza * ApplicationManager.cs: Remove unused variable. (ShutdownAll) remove unused variables. * ApplicationHost.cs: Protect create_dir lock 2007-01-19 Marek Habersack * SimpleWorkerRequest.cs: If path is empty, return the physical application directory. Fixes bug #80544. 2007-01-17 Adar Wesley * ApplicationHost.cs: tweaking CreateApplicationHost to throw the right exceptions so the tests will pass. 2007-01-11 Adar Wesley * ApplicationHost.cs: fixed AppDomain initialization of physical path to be in file system semantics 2006-12-22 Marek Habersack * HostingEnvironment.cs: implemented the SetCultures methods. 2006-12-19 Igor Zelmanovich * ServletWorkerRequest.cs: fixed: Path.Combine is used in GetFilePathTranslated to consider platform-depended PathSeparator char. 2006-12-07 Vladimir Krasnov * ServletWorkerRequest.jvm.cs: fixed request uri unescaping in ServletWorkerRequest ctor 2006-11-24 Miguel de Icaza * ApplicationHost.cs: In 2.0, as Todd reports the default is "Web.Config", try that before we tell people to use MONO_IOMAP=all ;-) 2006-11-07 Gonzalo Paniagua Javier * ApplicationHost.cs: the new Directory code throws if the directory exists, so handle that as gracefully as possible. 2006-08-23 Konstantin Triger * ServletWorkerRequest.jvm.cs: fix default page resolution. 2006-08-10 Gonzalo Paniagua Javier * BareApplicationHost.cs: * ApplicationManager.cs: remove unloaded domains. 2006-03-23 Gonzalo Paniagua Javier * SimpleWorkerRequest.cs: use UrlUtils instead of Path. Several fixes to make PathInfo + SimpleWorkerRequest work as in MS. 2006-03-15 Vladimir Krasnov * ServletWorkerRequest.jvm.cs: fixed ctor, UrlDecode applied on requested url fixed GetRawUrl, removed protocol, hostname and port fixed GetUriPath, _requestUri is always initialized 2006-03-03 Gonzalo Paniagua Javier * ApplicationHost.cs: ShadowCopyDirectories is not a URL. Set PrivateBinPath to the same value. 2006-03-01 Gonzalo Paniagua Javier * BareApplicationHost.cs: initialize paths from AppDomain data. New GetCodeGenDir(). * ApplicationHost.cs: in 2.0 the physical path is turned into an absolute path. 2006-02-28 Gonzalo Paniagua Javier * ApplicationManager.cs: new internal method to create/reuse a BareApplicationHost from ClientBuildManager. 2006-02-28 Chris Toshok * IAppDomainFactory.cs: corcompare work. * IAppManagerAppDomainFactory.cs: same * IISAPIRuntime.cs: same. 2006-02-28 Gonzalo Paniagua Javier * ApplicationManager.cs: implemented ShutdownAll(). * HostingEnvironment.cs: remove MonoTODO. 2006-02-22 Gonzalo Paniagua Javier * BareApplicationHost.cs: class used as an entry point into each application domiain from the ApplicationManager. * ApplicationManager.cs: implemented most of the remaining methods. * HostingEnvironment.cs: object handling methods are now implemented. 2006-02-10 Gonzalo Paniagua Javier * DefaultVirtualPathProvider.cs: add some comments/TODO. * HostingEnvironment.cs: initialize the default value for VirtualPathProvider. 2006-02-02 Gonzalo Paniagua Javier * HostingEnvironment.cs: MapPath is done. 2006-02-02 Gonzalo Paniagua Javier * DefaultVirtualDirectory.cs: implemented missing bits. * DefaultVirtualFile.cs: fix ctor scope. * DefaultVirtualPathProvider.cs: implemented GetFile and GetDirectory. 2006-02-01 Gonzalo Paniagua Javier * DefaultVirtualDirectory.cs: * DefaultVirtualPathProvider.cs: * VirtualFile.cs: * DefaultVirtualFile.cs: almost done with the default VirtualPathProvider which just maps to on-disk directories/files. 2006-02-01 Gonzalo Paniagua Javier * SimpleWorkerRequest.cs: implemented RootWebConfigPath. * HostingEnvironment.cs: implemented RegisterVirtualPathProvider and a few other defaults. 2006-01-30 Gonzalo Paniagua Javier * AppManagerAppDomainFactory.cs: stubbed out. * ApplicationInfo.cs: * ApplicationManager.cs: add 2 new classes. 2006-01-30 Gonzalo Paniagua Javier * VirtualPathProvider.cs: implemented OpenFile. * VirtualFile.cs: removed stuff cut&pasted from VirtualDirectory. * SimpleWorkerRequest.cs: * HostingEnvironment.cs: class status fixes. 2006-01-30 Gonzalo Paniagua Javier * IProcessHostFactoryHelper.cs: * IProcessPingCallback.cs: * IProcessHost.cs: * IProcessHostSupportFunction.cs: * IHttpWorkerRequestHandler.cs: * IQueueHost.cs: * IApplicationHost.cs: removed all this. They are not longer part of the public API. 2006-01-25 Gonzalo Paniagua Javier * VirtualDirectory.cs: * VirtualPathProvider.cs: * VirtualFileBase.cs: * VirtualFile.cs: implemented this base classes. * HostingEnvironment.cs: implemented a few properties by using the ones in HttpRuntime. 2006-01-24 Konstantin Triger * ServletWorkerRequest.jvm.cs: convert .invoke requests to PathInfo, remove ToUpper usage. 2006-01-19 Konstantin Triger * ServletWorkerRequest.jvm.cs: refactoring. 2005-11-28 Robert Jordan * SimpleWorkerRequest.cs: fixed MapPath () for the case app_virtual_dir.Length == 1 && path.Length == 1. * SimpleWorkerRequest.cs: implemented SendResponseFromMemory (). 2005-11-28 Gonzalo Paniagua Javier * ApplicationHost.cs: make this work with paths that that contain non-ASCII characters. Fixes bug #76807. 2005-11-02 Chris Toshok * HostingEnvironment.cs: completely NIE'ed implementation of HostingEnvironment, just to get an MS example provider to compile. 2005-11-01 Gonzalo Paniagua Javier * ApplicationHost.cs: use the AbsolutePath from the Uri to remove the schema prefix if present. 2005-09-27 Gonzalo Paniagua Javier * SimpleWorkerRequest.cs: all tests pass now. 2005-09-26 Gonzalo Paniagua Javier * ApplicationHost.cs: append a directory separator char to the physical path. Fixes bug #76187. 2005-09-21 Gonzalo Paniagua Javier * SimpleWorkerRequest.cs: fix GetUriPath() for paths ending in '/'. 2005-09-10 Sebastien Pouliot * AppDomainFactory.cs: Added LinkDemand for Minimal. Added Demand for UnmanagedCode on ctor. Added TODO on unimplemented method. * ApplicationHost.cs: Added LinkDemand for Minimal. Added Demand for UnmanagedCode on ctor. Removed duplicate null checks. * ISAPIRuntime.cs: Fixed inheritance (added MarshalByRefObject and IRegisteredObject) for 2.0. Added LinkDemand for Minimal. Added Demand for UnmanagedCode on ctor. * SimpleWorkerRequest.cs: Added LinkDemand and InheritanceDemand (not sealed) for Minimal. Added Demands for UnmanagedCode on ctors. Added FileIOPermission for PathDiscovery before returning processed paths. 2005-09-10 Gonzalo Paniagua Javier * ApplicationHost.cs: set the domain's DynamicBase property instead of guessing it in BaseCompiler. 2005-09-08 Eyal Alalouf * ServletWorkerRequest.jvm.cs: Implement SendResponseFromFile 2005-07-24 Eyal Alalouf * ServletWorkerRequest.jvm.cs: Put Console.WriteLine in #if DEBUG 2005-07-18 Eyal Alalouf * Added ServletWorkerRequest.jvm.cs 2005-06-08 Gonzalo Paniagua Javier * IISAPIRuntime.cs: GUID changed. 2004-08-03 Atsushi Enomoto * IApplicationHost.cs : missing namespace import. 2004-08-02 Duncan Mak * IApplicationHost.cs (MapPath): Add [In] attribute. * IAppManagerAppDomainFactory.cs: * IProcessHostSupportFunction.cs: signature fixes. 2004-08-02 Duncan Mak * IApplicationHost.cs: * IHttpWorkerRequestHandler.cs: * IProcessHost.cs: * IProcessHostFactoryHelper.cs: * IProcessHostSupportFunction.cs: * IProcessPingCallback.cs: * IQueueHost.cs: * IRegisteredObject.cs: Added interfaces. 2004-06-18 Gert Driesen * IAppDomainFactory.cs: added missing marshalling attributes * IISAPIRuntime.cs: added missing marshalling attributes 2004-05-14 Gonzalo Paniagua Javier * AppDomainFactory.cs: set the Dynamic base for the AppDomain. 2004-03-18 Gonzalo Paniagua Javier * SimpleWorkerRequest.cs: patch from Aleksey Demakov that fixes MapPath when the virtual directory is the root virtual directory. 2004-01-14 Andreas Nahr * IISAPIRuntime.cs: Fixed wrong attribute 2004-01-11 Andreas Nahr * SimpleWorkerRequest.cs: Added missing attribute * IISAPIRuntime.cs: Added attributes, fixed signature * IAppDomainFactory.cs: Added attributes, fixed signature 2003-08-29 Gonzalo Paniagua Javier * ApplicationHost.cs: set hostingInstallDir. * SimpleWorkerRequest.cs: implemented a couple of properties. 2003-08-29 Gonzalo Paniagua Javier * SimpleWorkerRequest.cs: fixed GetFilePathTranslated and added a paranoid condition to ExtractPathInfo. 2003-06-25 Eric Lindvall * SimpleWorkerRequest.cs: -adds PATH_INFO support - updates GetFilePathTranslated() to make use of Path.Combine() - gets rid of the null check in GetPathInfo() (we're setting _PathInfo to String.Empty now) - fixed CreatePath() so that it doesn't return String.Empty if the _AppVirtualPath is not "/" (to match MS runtime -- does anyone know why it was returning String.Empty?) 2003-03-17 Gonzalo Paniagua Javier * AppDomainFactory.cs: hacks to work-around our buggy System.Uri. 2003-03-17 George Kodinov * AppDomainFactory.cs: place the correct full path for Web.config when in Application host 2003-02-17 Gonzalo Paniagua Javier * AppDomainFactory.cs: Web.config takes precedence over web.config. * ApplicationHost.cs: removed hacks to work around an old bug. 2003-02-04 Tim Haynes * SimpleWorkerRequest.cs: changed the initialised values of _App{Install,Virtual}Path variables 2002-09-28 Gonzalo Paniagua Javier * System.Web.Hosting/SimpleWorkerRequest.cs: we are now able to compile pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest. 2002-09-26 Gonzalo Paniagua Javier * ApplicationHost.cs: * SimpleWorkerRequest.cs: workaround for bug #31245. 2002-08-26 Gonzalo Paniagua Javier * ApplicationHost.cs: little fixes. 2002-08-20 Gonzalo Paniagua Javier * ApplicationHost.cs: use Assembly instead of Module. 2002-08-05 Gonzalo Paniagua Javier * AppDomainFactory.cs: implemented. * ApplicationHost.cs: implemented. * SimpleWorkerRequest.cs: a few little fixes and reformatted. It's now fully implemented. 2002-07-12 Gonzalo Paniagua Javier * AppDomainFactory.cs: * IAppDomainFactory.cs: * IISAPIRuntime.cs: * ISAPIRuntime.cs: make them compile. 2002-04-10 Patrik Torstensson * ApplicationHost.cs: Test implementation to support testing. * SimpleWorkerRequest.cs: Rewrite and a almost full implementation. 2001-08-30 Bob Smith * AppDomainFactory.cs: Stubbed. * ApplicationHost.cs: Stubbed. * IAppDomainFactory.cs: Stubbed. * IISAPIRuntime.cs: Stubbed. * ISAPIRuntime.cs: Implemented. * SimpleWorkerRequest.cs: Implemented.