Re: [Mono-list] Paths to temporary files

2004-11-25 Thread Arnaud Bienvenu
Charles Martin a écrit : Well guys, I'm still struggling with that permission issue and I wish to permanently resolve this error : System.UnauthorizedAccessException: Access to the path /root/tmp/nobody-temp-aspnet/e828334c is denied. I guess you launch apache manually from user root (on

RE: [Mono-list] mod_mono

2004-11-25 Thread Steve Deobald
Hi Darren, Gonz, Joseph, everyone, While we're on the topic, I figured I'd query Gonzalo on an issue the br-mono.org guys have been having recently. I'm hosting them with the #50049 workaround, as I am a few people, but their development is pretty heavy. It seems that when they update assemblies

Re: [Mono-list] mod_mono

2004-11-25 Thread Angel Marin
On Wed, Nov 24, 2004 at 10:13:52PM -0800, Darren Martz wrote: Angel Marin is working on it and is using the TCP socket, not the unix socket which, btw, is available from certain version of the windows API, but not likely to be used in Angel's port. Due to the large performance

RE: [Mono-list] mod_mono

2004-11-25 Thread Darren Martz
Well, it uses tcp socket, as is the straightforward port from current code. And the first thing I wanted to have was mod_mono compiling and working under windows. Using named-pipes is a non-trivial implementation as all the code in mod_mono expects apr_socket to be used. Then in order

[Mono-list] Npgsql 0.7beta3 updated to svn.

2004-11-25 Thread Francisco Figueiredo Jr.
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, I just commited 0.7beta3 local changes to svn. Please, give it a try and let me know if you have any problems with it. I will update soon website info about Npgsql to reflect new features and status. - -- Regards, Francisco Figueiredo Jr.

[Mono-list] Mono on OpenBSD - again

2004-11-25 Thread Marc Matteo
Hi all, I've been able to get Mono successfully compiled and installed on OpenBSD with a minimal amount of work. I can even compile and run most C# apps. However, when using the -pkg option things don't go so well: I get a mono in free(): error: modified (chunk-) pointer error. Also, when

[Mono-list] Events using Remoting

2004-11-25 Thread =?ISO-8859-1?Q?Andr=E9s_Ot=F3n?=
Hello, I have a problem using events with MarshalByRefObject classes. I explain it: I have two programs server and client and one lib to share something classes. At lib I have the abstract class A : MarshalByRefObject. The server register at http channel this class and implement it. The client

[Mono-list] orkut + mono ?

2004-11-25 Thread Harsh Busa
Hello Folks I m just curious if Orkut using Mono ? Their webpages seem to be in aspx ( asp.net ?) http://www.orkut.com/Settings.aspx while Netcraft shows they to be running on linux servers http://uptime.netcraft.com/up/graph/?host=orkut.com Happy Coding Harsh --

Re: [Mono-list] orkut + mono ?

2004-11-25 Thread Atsushi Eno
Hi, I m just curious if Orkut using Mono ? Their webpages seem to be in aspx ( asp.net ?) http://www.orkut.com/Settings.aspx while Netcraft shows they to be running on linux servers http://uptime.netcraft.com/up/graph/?host=orkut.com Does not seem so (just a proxy?)

Re: [Mono-list] orkut + mono ?

2004-11-25 Thread mb
Harsh Busa wrote: Hello Folks I m just curious if Orkut using Mono ? Their webpages seem to be in aspx ( asp.net ?) http://www.orkut.com/Settings.aspx while Netcraft shows they to be running on linux servers http://uptime.netcraft.com/up/graph/?host=orkut.com Happy Coding Harsh [EMAIL

[Mono-list] Re: Compiling dotLucene with mono (thanks Arnaud)

2004-11-25 Thread cuentas
Thanks Arnaud, I will try with Monodevelop. Regards! p.d Sorry by my late response, i was out for a while ---Original Message--- From: [EMAIL PROTECTED] Subject: Mono-list digest, Vol 1 #2178 - 7 msgs Sent: 19 Nov 2004 11:30:29 Send Mono-list mailing list submissions to [EMAIL

RE: [Mono-list] orkut + mono ?

2004-11-25 Thread Torstensson, Patrik
Hm. They are running IIS 6.0 probably on Windows. Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Cheers, Patrik -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Harsh Busa Sent: den 25 november 2004 19:00 To: mono Subject: [Mono-list] orkut + mono ?

[Mono-list] re: mod_mono

2004-11-25 Thread Daniel Lopez
So why consider changing the syntax? The entries are completely unique to Linux requiring a new set of commands for a Win32 port. The outcome of using these commands is to control unique processes of mod-mono-server regardless of the host platform. This is our way of controlling groups of

[Mono-list] Problem with XSLTTranfsorm

2004-11-25 Thread Ariel Rios
I have problems using XSLTTransform. I have the following code. I expect to be able to use the var modoAccion inside the xslt but it is null. The code works correctly under .net. modoAccion=INICIAL; System.Console.WriteLine (estoy aca + modoAccion); XsltArgumentList xslArg = new

Re: [Mono-list] Problem with XSLTTranfsorm

2004-11-25 Thread Joshua Tauberer
Hi, Ariel. Do you have an xsl:param node for modoAccion at the top-level of your transform? (i.e. xsl:param name=modoAccion/) Also, what do you mean it is null? If you're not getting the string value, you should be seeing a message about the variable not being defined. Happy thanksgiving

Re: [Mono-list] Problem with XSLTTranfsorm

2004-11-25 Thread Atsushi Eno
Hi, (B (BCan you please provide reproducible stylesheet and input document (Bas well? If possible, entering a new bug to bugzilla would be nice. (B (BAtsushi Eno (B (BAriel Rios wrote: (B I have problems using XSLTTransform. I have the following (B code. I expect to be able to use the var

[Mono-list] StringDictionary Class

2004-11-25 Thread Ryan
I'm trying to use the System.Collections.Specialized.StringDictionary class but when I try to use the Item property it say it doesn't contain a definition for it. The documentation doesn't mark it as incomplete though. The same goes for ListDictionary.Item Are these incomplete or and I doing

Re: [Mono-list] StringDictionary Class

2004-11-25 Thread Marcus
Short version: The Item property is really an indexer, which permits array-like access to the data structure. For example, code fragment below should print ``Apple'': StringDictionary dict = new StringDictionary(); dict.Add(a, Apple);

[Mono-list] mod_mono not recompiling when I edit files

2004-11-25 Thread Jon-Eirik Pettersen
Suddenly mod-mono-server stopped recompiling files when I edit them. I have to killall -TERM mono after every edit to recompile them. Anything may cause this? ___ Mono-list maillist - [EMAIL PROTECTED]