2007-08-23 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.Hosting / ChangeLog
1 2007-08-23  Marek Habersack  <mhabersack@novell.com>
2
3         * ApplicationHost.cs: set AppDomainSetup.PrivateBinPath to "bin"
4         if running on Windows or with MONO_IOMAP in effect, and to
5         "Bin:bin" otherwise.
6
7 2007-08-21  Marek Habersack  <mhabersack@novell.com>
8
9         * ApplicationHost.cs: AppDomainSetup.PrivateBinPath should contain
10         a list of paths relative to AppDomainSetup.ApplicationBase, not a
11         full path.
12         We no longer check if the bin directories exist, the user can
13         create them while the application is running.
14
15 2007-07-21  Marek Habersack  <mhabersack@novell.com>
16
17         * ApplicationHost.cs: ClearDynamicBaseDirectory becomes an
18         internal method.
19
20 2007-07-12  Marek Habersack  <mhabersack@novell.com>
21
22         * HostingEnvironment.cs: allow relative paths to be
23         passed. Matches both MSDN and the MS.NET behavior. Fixes bug
24         #82061.
25
26 2007-05-09 Igor Zelmanovich <igorz@mainsoft.com>
27
28         * ApplicationHost.cs:
29         added MonoNotSupported attribute for TARGATE_JVM.       
30
31 2007-04-13  Marek Habersack  <mhabersack@novell.com>
32
33         * ApplicationHost.cs: clear the dynamic base directory before
34         creating the host. Fixes bug #80635
35
36 2007-04-05  Marek Habersack  <mhabersack@novell.com>
37
38         * ApplicationHost.cs: make ApplicationName/domain id really
39         unique.
40
41 2007-02-21  Marek Habersack  <grendello@gmail.com>
42
43         * ApplicationHost.cs: support both Bin and bin directories, prefer
44         the former.
45
46 2007-02-19  Marek Habersack  <grendello@gmail.com>
47
48         * ApplicationHost.cs: Use a deterministic application name, so
49         that the temporary location is always in the same place for the
50         given app.
51
52 2007-01-30  Marek Habersack  <grendello@gmail.com>
53
54         * ApplicationHost.cs: Define AppDomain data item "DataDirectory" - used
55         by the ADO.NET |DataDirectory| connection string placeholder. Present
56         by default in MS.NET.
57
58 2007-01-20  Miguel de Icaza  <miguel@novell.com>
59
60         * ApplicationManager.cs: Remove unused variable.
61         (ShutdownAll) remove unused variables.
62
63         * ApplicationHost.cs: Protect create_dir lock 
64
65 2007-01-19  Marek Habersack  <grendello@gmail.com>
66
67         * SimpleWorkerRequest.cs: If path is empty, return the physical
68         application directory. Fixes bug #80544.
69
70 2007-01-17  Adar Wesley <adarw@mainsoft.com>
71
72         * ApplicationHost.cs: tweaking CreateApplicationHost to throw the 
73         right exceptions so the tests will pass.
74
75 2007-01-11  Adar Wesley <adarw@mainsoft.com>
76
77         * ApplicationHost.cs: fixed AppDomain initialization of physical
78         path to be in file system semantics
79
80 2006-12-22  Marek Habersack  <grendello@gmail.com>
81
82         * HostingEnvironment.cs: implemented the SetCultures methods.
83
84 2006-12-19 Igor Zelmanovich <igorz@mainsoft.com>
85
86         * ServletWorkerRequest.cs: fixed:
87         Path.Combine is used in GetFilePathTranslated to consider 
88         platform-depended PathSeparator char.
89
90 2006-12-07  Vladimir Krasnov  <vladimirk@mainsoft.com>
91
92         * ServletWorkerRequest.jvm.cs: fixed request uri unescaping in
93         ServletWorkerRequest ctor
94
95 2006-11-24  Miguel de Icaza  <miguel@novell.com>
96
97         * ApplicationHost.cs: In 2.0, as Todd reports the default is
98         "Web.Config", try that before we tell people to use MONO_IOMAP=all ;-)
99
100 2006-11-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
101
102         * ApplicationHost.cs: the new Directory code throws if the directory
103         exists, so handle that as gracefully as possible.
104
105 2006-08-23 Konstantin Triger <kostat@mainsoft.com>
106
107         * ServletWorkerRequest.jvm.cs: fix default page resolution.
108
109 2006-08-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
110
111         * BareApplicationHost.cs:
112         * ApplicationManager.cs: remove unloaded domains.
113
114 2006-03-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
115
116         * SimpleWorkerRequest.cs: use UrlUtils instead of Path. Several fixes
117         to make PathInfo + SimpleWorkerRequest work as in MS.
118
119 2006-03-15  Vladimir Krasnov  <vladimirk@mainsoft.com>
120
121         * ServletWorkerRequest.jvm.cs: fixed ctor, UrlDecode applied on 
122         requested url
123         fixed GetRawUrl, removed protocol, hostname and port
124         fixed GetUriPath, _requestUri is always initialized
125
126 2006-03-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
127
128         * ApplicationHost.cs: ShadowCopyDirectories is not a URL. Set
129         PrivateBinPath to the same value.
130
131 2006-03-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
132
133         * BareApplicationHost.cs: initialize paths from AppDomain data. New
134         GetCodeGenDir().
135         * ApplicationHost.cs: in 2.0 the physical path is turned into an
136         absolute path.
137
138 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
139
140         * ApplicationManager.cs: new internal method to create/reuse a
141         BareApplicationHost from ClientBuildManager.
142
143 2006-02-28  Chris Toshok  <toshok@ximian.com>
144
145         * IAppDomainFactory.cs: corcompare work.
146
147         * IAppManagerAppDomainFactory.cs: same
148
149         * IISAPIRuntime.cs: same.
150
151 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
152
153         * ApplicationManager.cs: implemented ShutdownAll().
154         * HostingEnvironment.cs: remove MonoTODO.
155
156 2006-02-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
157
158         * BareApplicationHost.cs: class used as an entry point into each
159         application domiain from the ApplicationManager.
160         * ApplicationManager.cs: implemented most of the remaining methods.
161         * HostingEnvironment.cs: object handling methods are now implemented.
162
163 2006-02-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
164
165         * DefaultVirtualPathProvider.cs: add some comments/TODO.
166         * HostingEnvironment.cs: initialize the default value for
167         VirtualPathProvider.
168
169 2006-02-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
170
171         * HostingEnvironment.cs: MapPath is done.
172
173 2006-02-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
174
175         * DefaultVirtualDirectory.cs: implemented missing bits.
176         * DefaultVirtualFile.cs: fix ctor scope.
177         * DefaultVirtualPathProvider.cs: implemented GetFile and GetDirectory.
178
179 2006-02-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
180
181         * DefaultVirtualDirectory.cs:
182         * DefaultVirtualPathProvider.cs:
183         * VirtualFile.cs:
184         * DefaultVirtualFile.cs: almost done with the default
185         VirtualPathProvider which just maps to on-disk directories/files.
186
187 2006-02-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
188
189         * SimpleWorkerRequest.cs: implemented RootWebConfigPath.
190         * HostingEnvironment.cs: implemented RegisterVirtualPathProvider and
191         a few other defaults.
192
193 2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
194
195         * AppManagerAppDomainFactory.cs: stubbed out.
196
197         * ApplicationInfo.cs:
198         * ApplicationManager.cs: add 2 new classes.
199
200 2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
201
202         * VirtualPathProvider.cs: implemented OpenFile.
203         * VirtualFile.cs: removed stuff cut&pasted from VirtualDirectory.
204
205         * SimpleWorkerRequest.cs: 
206         * HostingEnvironment.cs: class status fixes.
207
208 2006-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
209
210         * IProcessHostFactoryHelper.cs:
211         * IProcessPingCallback.cs:
212         * IProcessHost.cs:
213         * IProcessHostSupportFunction.cs:
214         * IHttpWorkerRequestHandler.cs:
215         * IQueueHost.cs:
216         * IApplicationHost.cs: removed all this. They are not longer part of the
217         public API.
218
219 2006-01-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
220
221         * VirtualDirectory.cs:
222         * VirtualPathProvider.cs:
223         * VirtualFileBase.cs:
224         * VirtualFile.cs: implemented this base classes.
225
226         * HostingEnvironment.cs: implemented a few properties by using the ones
227         in HttpRuntime.
228
229 2006-01-24  Konstantin Triger <kostat@mainsoft.com>
230
231         * ServletWorkerRequest.jvm.cs: convert .invoke requests to PathInfo,
232                 remove ToUpper usage.
233
234 2006-01-19  Konstantin Triger <kostat@mainsoft.com>
235
236         * ServletWorkerRequest.jvm.cs: refactoring.
237
238 2005-11-28  Robert Jordan  <robertj@gmx.net>
239
240         * SimpleWorkerRequest.cs: fixed MapPath () for the case
241         app_virtual_dir.Length == 1 && path.Length == 1.
242         * SimpleWorkerRequest.cs: implemented SendResponseFromMemory ().
243
244 2005-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
245
246         * ApplicationHost.cs: make this work with paths that that
247         contain non-ASCII characters. Fixes bug #76807.
248
249 2005-11-02  Chris Toshok  <toshok@ximian.com>
250
251         * HostingEnvironment.cs: completely NIE'ed implementation of
252         HostingEnvironment, just to get an MS example provider to compile.
253
254 2005-11-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
255
256         * ApplicationHost.cs: use the AbsolutePath from the Uri to remove the
257         schema prefix if present.
258
259 2005-09-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
260
261         * SimpleWorkerRequest.cs: all tests pass now.
262
263 2005-09-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
264
265         * ApplicationHost.cs: append a directory separator char to the physical
266         path. Fixes bug #76187.
267
268 2005-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
269
270         * SimpleWorkerRequest.cs: fix GetUriPath() for paths ending in '/'.
271
272 2005-09-10  Sebastien Pouliot  <sebastien@ximian.com>
273
274         * AppDomainFactory.cs: Added LinkDemand for Minimal. Added Demand for
275         UnmanagedCode on ctor. Added TODO on unimplemented method.
276         * ApplicationHost.cs: Added LinkDemand for Minimal. Added Demand for 
277         UnmanagedCode on ctor. Removed duplicate null checks.
278         * ISAPIRuntime.cs: Fixed inheritance (added MarshalByRefObject and 
279         IRegisteredObject) for 2.0. Added LinkDemand for Minimal. Added Demand 
280         for UnmanagedCode on ctor.
281         * SimpleWorkerRequest.cs: Added LinkDemand and InheritanceDemand (not
282         sealed) for Minimal. Added Demands for UnmanagedCode on ctors. Added
283         FileIOPermission for PathDiscovery before returning processed paths.
284
285 2005-09-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
286
287         * ApplicationHost.cs: set the domain's DynamicBase property instead of
288         guessing it in BaseCompiler.
289
290 2005-09-08  Eyal Alalouf  <eyala@mainsoft.com>
291         * ServletWorkerRequest.jvm.cs: Implement SendResponseFromFile
292
293 2005-07-24  Eyal Alalouf  <eyala@mainsoft.com>
294         * ServletWorkerRequest.jvm.cs: Put Console.WriteLine in #if DEBUG
295
296 2005-07-18  Eyal Alalouf  <eyala@mainsoft.com>
297
298         * Added ServletWorkerRequest.jvm.cs
299
300 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
301
302         * IISAPIRuntime.cs: GUID changed.
303
304 2004-08-03  Atsushi Enomoto  <atsushi@ximian.com>
305
306         * IApplicationHost.cs : missing namespace import.
307
308 2004-08-02  Duncan Mak  <duncan@ximian.com>
309
310         * IApplicationHost.cs (MapPath): Add [In] attribute.
311
312         * IAppManagerAppDomainFactory.cs:
313         * IProcessHostSupportFunction.cs: signature fixes.
314         
315 2004-08-02  Duncan Mak  <duncan@ximian.com>
316
317         * IApplicationHost.cs:
318         * IHttpWorkerRequestHandler.cs:
319         * IProcessHost.cs:
320         * IProcessHostFactoryHelper.cs:
321         * IProcessHostSupportFunction.cs:
322         * IProcessPingCallback.cs:
323         * IQueueHost.cs:
324         * IRegisteredObject.cs: Added interfaces.
325         
326 2004-06-18  Gert Driesen <drieseng@users.sourceforge.net>
327
328         * IAppDomainFactory.cs: added missing marshalling attributes
329         * IISAPIRuntime.cs: added missing marshalling attributes
330
331 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
332
333         * AppDomainFactory.cs: set the Dynamic base for the AppDomain.
334
335 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
336
337         * SimpleWorkerRequest.cs: patch from Aleksey Demakov that fixes
338         MapPath when the virtual directory is the root virtual directory.
339
340 2004-01-14  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
341
342         * IISAPIRuntime.cs: Fixed wrong attribute
343
344 2004-01-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
345
346         * SimpleWorkerRequest.cs: Added missing attribute
347         * IISAPIRuntime.cs: Added attributes, fixed signature
348         * IAppDomainFactory.cs: Added attributes, fixed signature
349
350 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
351
352         * ApplicationHost.cs: set hostingInstallDir.
353         * SimpleWorkerRequest.cs: implemented a couple of properties.
354
355 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
356
357         * SimpleWorkerRequest.cs: fixed GetFilePathTranslated and added a
358         paranoid condition to ExtractPathInfo.
359
360 2003-06-25  Eric Lindvall <eric@5stops.com>
361
362         * SimpleWorkerRequest.cs: 
363                 -adds PATH_INFO support
364                 - updates GetFilePathTranslated() to make use of Path.Combine()
365                 - gets rid of the null check in GetPathInfo() (we're setting
366                 _PathInfo to String.Empty now)
367                 - fixed CreatePath() so that it doesn't return String.Empty if
368                   the _AppVirtualPath is not "/" (to match MS runtime -- does
369                   anyone know why it was returning String.Empty?)
370
371 2003-03-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
372
373         * AppDomainFactory.cs: hacks to work-around our buggy System.Uri.
374
375 2003-03-17 George Kodinov <gkodinov@openlinksw.co.uk>
376        
377         * AppDomainFactory.cs: place the correct full path for Web.config when
378         in Application host
379
380 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
381
382         * AppDomainFactory.cs: Web.config takes precedence over web.config.
383
384         * ApplicationHost.cs: removed hacks to work around an old bug.
385
386 2003-02-04  Tim Haynes <thaynes@openlinksw.com>
387
388         * SimpleWorkerRequest.cs: changed the initialised values of
389         _App{Install,Virtual}Path variables
390
391 2002-09-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
392
393         * System.Web.Hosting/SimpleWorkerRequest.cs: we are now able to compile
394         pages and use HttpApplication, HttpRuntime and SimpleWorkerRequest.
395
396 2002-09-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
397
398         * ApplicationHost.cs:
399         * SimpleWorkerRequest.cs: workaround for bug #31245. 
400
401 2002-08-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
402
403         * ApplicationHost.cs: little fixes.
404
405 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
406
407         * ApplicationHost.cs: use Assembly instead of Module.
408
409 2002-08-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
410
411         * AppDomainFactory.cs: implemented.
412         * ApplicationHost.cs: implemented.
413         * SimpleWorkerRequest.cs: a few little fixes and reformatted. It's now
414         fully implemented.
415
416 2002-07-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
417
418         * AppDomainFactory.cs:
419         * IAppDomainFactory.cs:
420         * IISAPIRuntime.cs:
421         * ISAPIRuntime.cs: make them compile.
422
423 2002-04-10  Patrik Torstensson <patrik.torstensson@labs2.com>
424
425         * ApplicationHost.cs: Test implementation to support testing.
426         * SimpleWorkerRequest.cs: Rewrite and a almost full implementation.
427
428 2001-08-30  Bob Smith  <bob@thestuff.net>
429
430         * AppDomainFactory.cs: Stubbed.
431         * ApplicationHost.cs: Stubbed.
432         * IAppDomainFactory.cs: Stubbed.
433         * IISAPIRuntime.cs: Stubbed.
434         * ISAPIRuntime.cs: Implemented.
435         * SimpleWorkerRequest.cs: Implemented.