Re: [Mono-dev] DriveInfo

2006-02-09 Thread Christopher Bergström
Jonathan Pryor wrote: On Thu, 2006-02-09 at 14:40 +1300, Thong Nguyen wrote: I notice that there is already a UnixDriveInfo. I'm implementing a System.IO.DriveInfo that currently just reflects on UnixDriveInfo. As a sanity check, you should make sure your DriveInfo members reflect

[Mono-dev] Security spokesperson

2006-02-02 Thread Christopher Bergström
[snip] Sebastien Pouliot wrote: I wish that security was more popular and btw I'm seeking contributors for creating a security is cool marketing campaign ;-) [snip] Need a spokesperson for this? Let me be first in line. Another developer and I have started working on a custom patchset

[Mono-dev] HashPasswordForStoringInConfigFile adding SHA256 SHa512

2006-01-30 Thread Christopher Bergström
I noticed that the MS implementation for HashPasswordForStoringInConfigFile only gives the choice between SHA1 and MD5.. Would anyone object if I implemented SHA256 and SHA512? C. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] Using WMI

2006-01-19 Thread Christopher Bergström
Andrs G. Aragoneses wrote: Hello. I am using .NET2005 for developing an application. This application must know the IP address of the localhost and this was done, some days ago, by resolving the DNS of localhost. However, now I have needed to know the netmask information of each IP address

[Mono-dev] Is this a bug?

2006-01-14 Thread Christopher Bergström
Sometimes I noticed that stack trace isn't so useful on some of my ASP.Net pages.. (Good code) public string SortOrder (string Field) (Bad code) public static string SortOrder (string Field) MS Error public static string SortOrder (string Field) Compiler Error Message: CS0120: An object

Re: [Mono-dev] Validator controls expected results?

2006-01-04 Thread Christopher Bergström
Dieter Bremes wrote: Christopher Bergström wrote: Per the documentation.. If I have display=None and a asp:ValidationSummary / control then the validator control should not display results inline, but the JS still executes. I found a work-around by EnableClientScript=false.. bug

[Mono-dev] Validator controls expected results?

2006-01-03 Thread Christopher Bergström
Per the documentation.. If I have display=None and a asp:ValidationSummary / control then the validator control should not display results inline, but the JS still executes. I found a work-around by EnableClientScript=false.. bug? This is in Firefox latest version.. (Haven't tested in

[Mono-dev] Open discussion for mono setuid per vhost

2005-12-27 Thread Christopher Bergström
So far I've been discussing this offlist with another Mono/.Net developer... I'm interested in open/honest feedback or code snippets which might help accomplish this.. So far there are two ways which seem reasonable so far and please pardon me if I'm missing some points.. 1) Mono wrapper

[Mono-dev] gtk-sharp ./configure quick question (Very puzzled)

2005-12-25 Thread Christopher Bergström
I'm getting the build error from below.. (Actually, this is what I think is causing an error much lower) /usr/include/vte/vte.h:28:18: glib.h: No such file or directory /usr/include/vte/vte.h:29:25: pango/pango.h: No such file or directory /usr/include/vte/vte.h:30:21: gtk/gtk.h: No such file

[Mono-dev] Note about configure/Make on SVN mod_mono

2005-12-25 Thread Christopher Bergström
I'm thinking something in my build setup could be broked SVN mod_mono seems to configure fine and finds apr-config.. However when building it gives that apr.h missing error.. Even with the below configure it still does it. ./configure --prefix=/usr --with-apr-config=/usr/bin/apr-config

Re: [Mono-dev] XSP debugging

2005-11-17 Thread Christopher Bergström
Gonzalo Paniagua Javier wrote: On Wed, 2005-11-16 at 23:43 +0100, Marek Habersack wrote: On Wed, Nov 16, 2005 at 11:00:05AM -0600, Carlos Solorzano scribbled: Whats the easiest way to do some debugging of XSP, is there a way to turn on logs for XSP? personally I use log4net

Re: [Mono-dev] how to improve mono performance

2005-11-16 Thread Christopher Bergström
On Wed, 16 Nov 2005 20:30:23 -0800 (PST) zhu shi song [EMAIL PROTECTED] wrote: Dear lists, I've got one test example and tested it using linux mono and windows .NET on the same machine. The results showed that the performance of linux mono is much bad than windows .NET. I'd like to

Re: [Mono-dev] Questions about each site getting a mono process/503 errors

2005-11-14 Thread Christopher Bergström
Joshua Tauberer wrote: Christopher Bergström wrote: I've read that documentation 10x and even just a few minutes ago to see if there was any revisions.. You may* be able to get a subdirectories working their own process, but I have yet to get it working with domains.. Okay, I got

Re: [Mono-dev] Questions about each site getting a mono process

2005-11-14 Thread Christopher Bergström
Joshua Tauberer wrote: Christopher Bergström wrote: I can get vhosts to work.. I can't get vhosts to work with each site on their own process. What I said will put each vhost on its own process. kewl.. that worked.. btw.. When I setup my vhosts.. Putting the entries in the actual

[Mono-dev] MONO_LOG_LEVEL variable = debug | info results in no http responses

2005-11-13 Thread Christopher Bergström
I've been having intermittent trouble since upgrading to 1.1.10-2 in that everything now appears to be working correctly, but then eventually everything dies and goes over to 503 errors again. Any of the /mono?restart= options fixes this, but I'm trying to collect more information in order

Re: [Mono-dev] Quick question about new features in mono control panel

2005-11-13 Thread Christopher Bergström
Joshua Tauberer wrote: Ah, what I meant was you can control access to the mono/?restart=... URLs that when accessed actually do the restarting, so you can control which links are functional in that way. Anything more is probably going to be based on a local policy decision. We could add a

Re: [Mono-dev] Questions about mod-mono-server process/AppDomain loading/unloading

2005-11-13 Thread Christopher Bergström
Joshua Tauberer wrote: Christopher Bergström wrote: Here's what I outline and I think would be great.. (Feedback welcomed) A) Either updates to bin/*.dll or web.config not requiring a restart of Mono process Figuring out when the files change is not a problem, but... Yeah.. I realized

Re: [Mono-dev] Questions about each site getting a mono process/503 errors

2005-11-13 Thread Christopher Bergström
Joshua Tauberer wrote: Christopher Bergström wrote: Is there any current way to put each site on it's own process? ( I think this might be key to a temp solution if it's _easy_) Manually, following www.mono-project.com/Mod_mono. I've read that documentation 10x and even just a few minutes

[Mono-dev] Regression with custom web controls

2005-11-12 Thread Christopher Bergström
Scenario.. Mono version 1.1.10-2 Page foobar.aspx contains %@ Register TagPrefix=Custom Namespace=wbCtl_NetSyncro_Menu Assembly = CustomControls % Custom:NetSyncroMenuBuilder StoreNumber=1 runat=server/ bin/ contains the CustomControls.dll The CustomControls.dll does a number of things. 1)

Re: [Mono-dev] Regression with custom web controls (solved)

2005-11-12 Thread Christopher Bergström
Gonzalo Paniagua Javier wrote: Are you using 'PERSISTSECURITYINFO' or 'PERSIST SECURITY INFO'? If so, a fixed System.Data.dll is available at http://primates.ximian.com/~gonzalo/System.Data.dll.gz. Download it, gunzip and 'gacutil -i System.Data.dll'. Good news is it fixed it, but the maybe

[Mono-dev] Howto debug Mono and dev tools

2005-11-10 Thread Christopher Bergström
Quick questions 1) What are the recommended tools for debugging mod_mono/xsp/mono? If it's mono debugger or just recompile with --debug options I apologize for such an obvious question. I especially need to know for a server with X11 forwarding off. (I've been reading about Mono debugger, but have

[Mono-dev] Mono 1.1.10 + SLES == HTTP 503 error

2005-11-09 Thread Christopher Bergström
I just upgraded tried to upgrade to 1.1.10 and I might need some help.. Currently getting a 503 error on all my sites.. Details #1 I was using rug to install the update which didn't warn me about this new feature** and when I went to look for a changelog I'm still looking. Please point me

[Mono-dev] Help please.. Links to old versions of 1.1.8.3

2005-11-09 Thread Christopher Bergström
>From this page.. http://www.mono-project.com/OldReleases I click on the link http://www.mono-project.com/index.php?title=1.1.8.3action=""> Clearly my goal isn't to edit this page.. Using my batman decoder ring I get working, but some of the files change naming convention