Re: [Mono-devel-list] MSMQ

2005-04-13 Thread Jonathan Stowe
On Wed, 2005-04-13 at 14:34, [EMAIL PROTECTED] wrote: All, Is there an equivalent feature in mono/linux to MSMQ? I don't have a specific project in mind as yet, just getting a general feel of what I can do. No (MSMQ is not available on the majority of the target systems), however you might

Re: [Mono-list] §RE: [Mono-list] Suggestion: warning member variable notinitialized

2003-06-07 Thread Jonathan Stowe
. /// /summary [STAThread] static void Main(string[] args) { new Class1().Method(); } private DateTime t; } Prints 01.01.0001 00:00:00. But try comparing that to 0 or null ;-) /J\ -- Jonathan

RE: [Mono-list] Problems with ModMono

2003-06-10 Thread Jonathan Stowe
Message: Stack Trace: System.IO.DirectoryNotFoundException: Directory '/home/hngo/xsp/server/test' not found. This could be a permission or apache configuration issue. Does the user the webserver run as have permission to that directory ? /J\ -- Jonathan Stowe | http

RE: [Mono-list] Problems with ModMono

2003-06-10 Thread Jonathan Stowe
PROTECTED] Sent: Tuesday, June 10, 2003 9:59 AM To: Ngo HH (Hao) at Aera Cc: 'Jonathan Stowe'; '[EMAIL PROTECTED]' Subject: Re: [Mono-list] Problems with ModMono Does the directory /home/hngo/xsp/server/test exist? Which permissions does it have that directory and its parent directories

RE: [Mono-list] Problems with ModMono

2003-06-10 Thread Jonathan Stowe
this will be remedied at some point. /J\ -- Jonathan Stowe | http://www.gellyfish.com | This space for rent | ___ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman

[Mono-list] gcc 2.96 on Red-Hat

2003-06-18 Thread Jonathan Stowe
fairly sure that the fix I am using is breaking the tests. /J\ -- Jonathan Stowe | http://www.gellyfish.com | This space for rent | ___ Mono-list maillist - [EMAIL PROTECTED] http

Re: [Mono-list] gcc 2.96 on Red-Hat

2003-06-19 Thread Jonathan Stowe
On Thu, 19 Jun 2003, Paolo Molaro wrote: On 06/18/03 Jonathan Stowe wrote: I appear to be a victim of the evil combination of gcc 2.96 on Redhat not liking the EmptyStruct test. Are fixes being solicited for this or is the advice to upgrade the gcc (which I would rather not do right now

RE: [Mono-list] Simple code - differences in output between mono .Net

2004-03-03 Thread Jonathan Stowe
On Wed, 2004-03-03 at 15:13, [EMAIL PROTECTED] wrote: I would assume that the GetLogicalDrives() method on linux would require returning the mount points, as these can then be enumerated as necessary - for e.g. /dev/cdrom, /dev/usbdrive etc. This approach seems much more usable from a

[Mono-list] Weird Exception in mod_mono

2004-03-03 Thread Jonathan Stowe
I am getting this and I can't find any reports in the list or elsewhere of anything quite the same: System.InvalidOperationException: Process has not been started. in 0x00065 System.Diagnostics.Process:get_ExitCode () in 0x00050 (wrapper remoting-invoke-with-check)

RE: [Mono-list] Simple code - differences in output between mono .Net

2004-03-04 Thread Jonathan Stowe
On Thu, 2004-03-04 at 09:39, Iain McCoy wrote: On Thu, 2004-03-04 at 03:13, Jonathan Stowe wrote: StreamReader mtab = new StreamReader(/etc/mtab); ArrayList stuff = new ArrayList(); string[] fields; while ( (line = mtab.ReadLine()) != null

Re: [Mono-list] C# SOAP implementation - AXIS

2004-03-30 Thread Jonathan Stowe
On Tue, 2004-03-30 at 06:32, Mahen Perera wrote: Hi all! We are a team involved in developing an implementation of SOAP using C#, in the .NET framework. We are still in the early stages. I'm probably missing some subtlety here but the .NET framework already implements SOAP, I'm not quite

Re: [Mono-list] C# SOAP implementation - AXIS

2004-04-01 Thread Jonathan Stowe
and managing Application Domains is implemeted in MONO. From: Jonathan Stowe To: Mahen Perera CC: Mono-List Subject: Re: [Mono-list] C# SOAP implementation - AXIS Date: Tue, 30 Mar 2004 09:22:39 +0100 On Tue, 2004-03-30 at 06:32, Mahen Perera wrote: Hi all

Re: [Mono-list] Installing mono - without su rights

2004-04-05 Thread Jonathan Stowe
On Thu, 2004-04-01 at 20:39, Tom Wilkie wrote: Hi there I don't know if this can be done - I assume it can. I have access to a linux box on the web, just a user account, and I wanted to install mono on it. I managed to get glib and pkgconfig compiled and installed under ~/mono/ and

Re: [Mono-list] Mono Virtual Hosts

2004-05-12 Thread Jonathan Stowe
On Wed, 2004-05-12 at 17:30, Andrew Arnott wrote: Does CVS fix the Virtual Hosts problem yet? I want to host multiple Mono web sites, as opposed to merely virtual directories. Here is someones hack that supposedly fixes it. Just wondering if its in CVS yet. It's not in the CVS no. I would

Re: [Mono-list] SQLDataReader error

2004-05-12 Thread Jonathan Stowe
On Wed, 2004-05-12 at 18:27, Ellis, Edward wrote: I get the following error: ** (GetAnalysisTime_C.exe:31073): WARNING **: Missing method get_HasRows in assembly /home/d3j409/GetAnalysisTime_C.exe typeref index 26 ** ERROR **: file mini.c: line 3191 (mono_method_to_ir): assertion failed:

Re: [Mono-list] Bus error xsp-0.13 [was: Problems with xsp-0.12 tarball?]

2004-05-13 Thread Jonathan Stowe
On Wed, 2004-05-12 at 04:59, Scott Muc wrote: Thanks for the quick reply Cory! I've tried downloading it several times. I take it they don't have any md5sums located on their site? I'll try to stick with xsp-0.13 then. I just need to figure out why it does the following: spark# mono

[Mono-list] A couple of Remoting Questions

2004-05-11 Thread Jonathan Stowe
I have been playing around with remoting and a couple of things have come up I am trying a test based in the example in MS SDK: Client: using System; using System.Runtime.Remoting; using System.Runtime.Remoting.Channels; using System.Runtime.Remoting.Channels.Http; namespace RemotingTest {

RE: [Mono-list] A couple of Remoting Questions

2004-05-11 Thread Jonathan Stowe
On Tue, 2004-05-11 at 11:35, RoBiK wrote: 3) Here ist the soap specification http://www.w3.org/TR/soap/ and here http://msdn.microsoft.com/library/en-us/dnsoap/html/understandsoap.asp an article from microsoft regarding soap (with good examples). For monitoring purpouses you can find a couple

Re: [Mono-list] Problem installation on Mandrake 9.2

2004-05-07 Thread Jonathan Stowe
On Thu, 2004-05-06 at 17:20, Alejandro Ospina wrote: Hi. I downloaded the sources and I made the procedure on a Mandrake 9.2 box. But I got an error in mini.c Er, what was the error? The only problem I have seen with Mandrake 9.2 build is that you need to supply '--with-nptl=no' to configure

Re: [Mono-list] Building MonoDevelop failure

2004-05-07 Thread Jonathan Stowe
On Fri, 2004-05-07 at 02:15, Ed Mack wrote: Hi, I've just downloaded all the Fedora pkgs from go-mono.com, and also gecko-sharp-0.3 and gtksourceview-sharp-0.2 to satisfy monodevelop-0.3's configure script. But, on compiling it dies with the following error: cp MonoDevelop.SourceEditor.dll

[Mono-list] Problems on FreeBSD with Beta 1

2004-05-07 Thread Jonathan Stowe
Firstly it appears that you have to change the data/config file to map to libc.so.4 rather than libc.so.6 on FreeBSD 4.9 before anything will work. Secondly gacutil appears to have problems during make install: MONO_PATH=. ../../mono/mini/mono --config ../../data/config ./../gacutil.exe /i

Re: [Mono-list] Help About Mono

2004-04-29 Thread Jonathan Stowe
On Thu, 2004-04-29 at 06:59, Shakil Islam Rousseau wrote: Ive installed the rpm mono-0.28-1.ximian.6.1.i586.rpm mono-devel-0.28-1.ximian.6.1.i586.rpm in Mandrake 9.2. But i cant compile any file. do i have to change the default config file ? is it possible for you guys to send me a little

Re: [Mono-list] Question about attributes

2004-04-29 Thread Jonathan Stowe
On Thu, 2004-04-29 at 07:56, [EMAIL PROTECTED] wrote: Hi, First : Thanks for the explanation ;-) But my question what about which attributes using in order to document methods or function in my code. For example, if you want the Visual Studio .Net Property Panel to be able to display

Re: [Mono-list] Installation of Apache Mono module 0.8

2004-05-01 Thread Jonathan Stowe
On Thu, 2004-04-29 at 17:24, Jamie Lory wrote: I am trying to install Apache Mono module 0.8 and I am getting this error when I type: ./configure --prefix=/usr configure: line 19: syntax error near unexpected token `elif' configure: line 19: `elif test -n ${BASH_VERSION+set} (set -o

Re: [Mono-list] xml schema support

2004-05-20 Thread Jonathan Stowe
On Thu, 2004-05-20 at 11:01, Mahen Perera wrote: hi... This is regarding the System.Xml.Schema namespace. The current implementation of XmlSchema class gives an exception in the Read(XmlTextReader, ValidationEventHandler) method when the parsed XmlTextReader refers to a xml schema with the

Re: [Mono-list] Mono Beta 1 on mandrake 9.2

2004-05-21 Thread Jonathan Stowe
On Fri, 2004-05-21 at 02:35, Tracy Barlow wrote: ASP simply does not work. There are no error messages, Mozilla simply reports that the file is of type application/x-asp-net and that it does not know what to do with it. Works fine for me. Can you provide more details. /J\

Re: [Mono-list] webservices

2004-05-25 Thread Jonathan Stowe
On Tue, 2004-05-25 at 11:30, KiOrKY wrote: ho, how work the webserivces on mono? You need to install mod_mono and xsp, but beyond that the web services work essentially the same as under IIS with the .asmx files. where can i find tutorial? There are example .asmx files in the xsp samples.

[Mono-list] Problem installing Beta 1 on Debian ( was Re: [Mono-list] webservices / need help on installing mono)

2004-05-25 Thread Jonathan Stowe
: everything is going fine either this compilators used: gcc 3.0- 3.1- 3.2- 3.3- 3.4 kernel 2.4.26 Regards Jonathan Stowe [EMAIL PROTECTED] a crit : On Tue, 2004-05-25 at 11:30, KiOrKY wrote: gt; ho, gt; how work the webserivces on mono? You need to install

Re: [Mono-list] xsp problem

2004-05-27 Thread Jonathan Stowe
On Wed, 2004-05-26 at 14:17, master wrote: Hi, i just trying to install the xsp server, the configure went well but when i do the make i get the following : /usr/local/bin/mcs -debug+ -debug:full -nologo -r:System.Web.dll -r:Mono.Pos ix.dll /d:MODMONO_SERVER /out:mod-mono-server.exe error

Re: [Mono-list] xsp problem

2004-05-27 Thread Jonathan Stowe
: Jonathan Stowe [EMAIL PROTECTED] To: master [EMAIL PROTECTED] Cc: Mono-List [EMAIL PROTECTED] Sent: Thursday, May 27, 2004 11:40 AM Subject: Re: [Mono-list] xsp problem On Thu, 2004-05-27 at 10:11, master wrote: or i get sometimes [Thu May 27 11:07:50 2004] [error] (61

Re: [Mono-list] xsp problem

2004-05-27 Thread Jonathan Stowe
/IfModule Please re-read the INSTALL file - this is not the complete configuration required as described in there. SPecifically the MonoApplication directive. - Original Message - From: Jonathan Stowe [EMAIL PROTECTED] To: master [EMAIL PROTECTED] Cc: Mono-List [EMAIL PROTECTED] Sent

Re: [Mono-list] Managed access to Dbase files?

2004-06-03 Thread Jonathan Stowe
On Thu, 2004-06-03 at 15:53, Abram Gillespie wrote: Hi everyone, Does anyone know a purely managed .Net way to query *.dbf files? I'm using MapServer to do some web GIS stuff with ESRI shapefiles, but would like to use Mono's ASP.NET for querying. Any ideas? I have started work on a

Re: [Mono-list] webservices / error401 / credentials / modmono

2004-06-07 Thread Jonathan Stowe
On Mon, 2004-06-07 at 08:38, KiOrKY wrote: but for: does mono implement credentials because when i want to use a distant webservice on an IIS server i get ann 401 (access refused) error. But when i accept anonymous request this 401 error disappear! the code of the webservice: Is the IIS

Re: [Mono-list] webservices / error401 / credentials / modmono

2004-06-07 Thread Jonathan Stowe
PROTECTED] a crit : Former == first of two things, Latter == second. In this case Basic Authentication and Windows Authentication. On Mon, 7 Jun 2004 11:38:16 +0200, KiOrKY lt;[EMAIL PROTECTED]gt; wrote: gt; gt; i had tried both. Whats Former? gt; Jonathan Stowe lt;[EMAIL PROTECTED

Re: [Mono-list] Message Queues

2004-06-17 Thread Jonathan Stowe
On Wed, 2004-06-16 at 23:30, Stephen Bardsley wrote: Greeting: I would like to learn about messaging in Mono (e.g. System.Messaging.MessageQueue). Where can I find some info or examples specific to Mono. [EMAIL PROTECTED] System.Messaging]$ grep NotImplementedException *cs | wc -l

Re: [Mono-list] Mac OS X / Mono Beta 3 Issue

2004-06-17 Thread Jonathan Stowe
On Thu, 2004-06-17 at 04:03, Abram Gillespie wrote: I'm on Mac OS 10.2 and trying to install Beta 3. I get through all of make but make install gives me: Unhandled Exception: System.DllNotFoundException: libc in 0x000dc (wrapper managed-to-native) Mono.Tools.Driver:symlink

Re: [Mono-list] Message Queues

2004-06-17 Thread Jonathan Stowe
On Thu, 2004-06-17 at 10:56, KiOrKY wrote: but i dont know if this free part is able to cover distribued transactions (its the use of com+ i want mono to do !)! regards You might also want to look at JOTM: http://jotm.objectweb.org/ Of course none of this matters unless someone

Re: [Mono-list] ikvm / java

2004-06-17 Thread Jonathan Stowe
On Thu, 2004-06-17 at 14:21, yvind Hvamstad wrote: As a side note. What webmail are you using? It doesn't work very well does it? It looks like NOCC: http://nocc.sourceforge.net/ I ought to get around to writing a webmail in c# really. /J\

RE: [Mono-list] mod_mono demo configuration Question

2004-06-18 Thread Jonathan Stowe
On Fri, 2004-06-18 at 04:58, amerigo5 amerigo5 wrote: No. That didn't work. Is there anything am I missing here? Thanks. George It looks like your Location /demo1 tag is probably wrong. /demo1 should not be the virtual directory, but the physical directory on the hard drive. Try that.

Re: [Mono-list] bsd questions

2004-06-18 Thread Jonathan Stowe
On Fri, 2004-06-18 at 08:44, KiOrKY wrote: hi, is mono running and working as well on bsd than on linux ? Any port is sheduled? The FreeBSD ports collection has beta 2 at the moment (you will have to cvsup your ports collection to get it), however there are some threading problems which are

Re: [Mono-list] mono installation

2004-06-21 Thread Jonathan Stowe
On Mon, 2004-06-21 at 10:08, geoff rainey wrote: Hello, I have installed the following: platform - whitebox linux mono 0.31 xsp 0.12 mod_mono 0.10 all installed from source. I am receiving the following error when viewing index.aspx and other errors with other aspx files, any idea

Re: [Mono-list] mod_mono demo configuration Question

2004-06-21 Thread Jonathan Stowe
On Sun, 2004-06-20 at 20:19, Sergey Moiseev wrote: still no normal auto-restart production version. Because of that beta 3 still not suitable for asp.net development in production. That stops process of normal migration from php to asp.net. That's a pity. The stopping and re-starting is a

Re: [Mono-list] Problem with libmod_mono.so

2004-07-01 Thread Jonathan Stowe
On Thu, 2004-07-01 at 14:27, [EMAIL PROTECTED] wrote: I've created the folder apache in /usr/local/ and then I've installed mod_mono-0.11 with successfully. Now I've problems with apache: [EMAIL PROTECTED] root]# apachectl start Syntax error on line 201 of /etc/httpd/conf/httpd.conf:

Re: [Mono-list] site web down for a while

2004-07-02 Thread Jonathan Stowe
On Fri, 2004-07-02 at 13:45, KiOrKY wrote: the site seems to be down for download since this morning. is there any others http (just http) mirrors? On Fri, 2004-07-02 at 14:51, KiOrKY wrote: the site seems to be down for download since this morning. is there any others http (just http)

Re: [Mono-list] make install building mcs package

2004-07-02 Thread Jonathan Stowe
On Fri, 2004-07-02 at 14:51, Yuri Leikind wrote: On Fri, 02 Jul 2004 07:24:28 -0600 Raja R Harinath [EMAIL PROTECTED] wrote: I don't see anything wrong with this behaviour :-) Perfectly expected. Please check the PATH of root. Please read my letter a bit more attentively,

Re: [Mono-list] make install building mcs package

2004-07-02 Thread Jonathan Stowe
On Fri, 2004-07-02 at 14:49, Yuri Leikind wrote: Didn't you notice the which command I issued: [EMAIL PROTECTED]:~/src/mcs-1.0$ which mcs /opt/bin/mcs Haven't you noticed I HAVE ALREADY BUILT the package, and I would not have been able to do it without mcs in my path.

Re: [Mono-list] Sending an email

2004-07-05 Thread Jonathan Stowe
On Sun, 2004-07-04 at 09:10, Pedro Santos wrote: Hello. I am using the SmtpMail class to send an email. However I get this exception: System.Net.Sockets.SocketException: Connection refused in 0x0011b System.Net.Sockets.Socket:Connect (System.Net.EndPoint) in 0x00017

Re: [Mono-list] mono site not shown in IE?

2004-07-05 Thread Jonathan Stowe
On Mon, 2004-07-05 at 12:51, Mihail Belanov wrote: Recently I tried to access www.mono-project.com using IE but got a blank page. When I changed browser to Mozilla the site was shown normally and downloading speed of mono was good. Then had I used IE and there is blank page again. Maybe there

Re: [Mono-list] executable on MAC OS X?

2004-07-08 Thread Jonathan Stowe
On Thu, 2004-07-08 at 05:15, Brian OBrien wrote: I just compiled helloworld.cs on my MAC OS X machine and to my surprise I ended up with a .exe file... Not quite what I was expecting... Yes it is a .NET CLI assembly - you need to run it with: mono foo.exe How do I get a mac executable?

Re: [Mono-list] Monodevelop err.

2004-07-12 Thread Jonathan Stowe
On Mon, 2004-07-12 at 15:54, Etienne Boucher wrote: Did you try running it as root? I get missing assembly warning running any .NET program (even mcs) when not being root after installing with Red Carpet. I'm still waiting for someone to tell me how I can fix that. As root chmod -R go+r

Re: [Mono-list] WebService, SessionState and CookieContainer.

2004-07-16 Thread Jonathan Stowe
On Fri, 2004-07-16 at 09:14, [EMAIL PROTECTED] wrote: snip The Web services code is: Contatore.asmx.cs The client application code is: CounterCLI.aspx.cs Could anybody help me please? Your attachments appear to be formatted formatted as RTF please could you send them again. /J\

Re: [Mono-list] WebService, SessionState and CookieContainer.

2004-07-16 Thread Jonathan Stowe
On Fri, 2004-07-16 at 09:14, [EMAIL PROTECTED] wrote: snip The Web services code is: Contatore.asmx.cs The client application code is: CounterCLI.aspx.cs Could anybody help me please? Your attachments appear to be formatted formatted as RTF please could you send them again. /J\

RE: [Mono-list] missing native feel ?

2004-07-16 Thread Jonathan Stowe
On Thu, 2004-07-15 at 18:38, Thomas R. Corbin wrote: For me, the .dll is fine, it's the .exe. Then wrap it in a shell script just as you say do with Java programs - I don't see what the problem is here. /J\ ___ Mono-list maillist - [EMAIL

RE: [Mono-list] missing native feel ?

2004-07-16 Thread Jonathan Stowe
On Thu, 2004-07-15 at 22:16, Thomas R. Corbin wrote: It would be nice if there was a standard beginning wrapper that could be used until or unless something more advanced is needed. Rename this to the same as your .exe file (but without the extension) and put it in the same directory:

Re: [Mono-list] parsing an incomplete xml

2004-07-19 Thread Jonathan Stowe
On Mon, 2004-07-19 at 03:36, Krisztian PIFKO wrote: On Sun, 2004-07-18 at 21:21 -0400, Stephen Caldwell wrote: Well if you have some way of knowing how big the stream is, then maybe buffer it all and then parse it, or you might have to create a parsing class which can better handle

Re: [Mono-list] System.Web.Mail not found!

2004-07-19 Thread Jonathan Stowe
On Mon, 2004-07-19 at 08:03, Israel Fdez Cabrera wrote: Hi all, this is my first message to the list, and I'm not sure if this is the right list for this question but, here it is any way and U tell me if I'm in the wrong place :) I just download and installed Mono 1.0 in my SuSE 9.1 Box.

Re: [Mono-list] XSP and Mod_Mono Server Problems

2004-07-22 Thread Jonathan Stowe
On Thu, 2004-07-22 at 13:08, Biju Arjunan wrote: I have installed Mono1.0 on Redhat Fedora Core 1,MonoDevelop, C# complilers etc are working fine, but when I tried to make xsp or mod_mono ready for developing webservices I am facing the following problems. Prob No 1 -- I

Re: [mono-list] Patch to mono-1-0 Mono for approval -- libgc/configure.in

2004-07-28 Thread Jonathan Stowe
On Wed, 2004-07-28 at 05:09, John Merryweather Cooper wrote: See Changelog patch in attached diff for details. This patch selects the correct compiler flags for compiling libgc with pthreads on FreeBSD. Are these likely to go into the Ports for 4.9 anytime real soon now? /J\

Re: [Mono-list] Re: Welcome to the Mono-list mailing list

2004-08-04 Thread Jonathan Stowe
On Tue, 2004-08-03 at 21:33, Enrique Catala Bauls wrote: Please, i cant compile mono-1.0 :( When i run the configure script, i have this configuration: GC: included ICU: yes. Version: 2.6 __thread:yes SIGALTSTACK: no Engine:

Re: [Mono-list] ./libs/libmod_mono.so is not a DSO

2004-08-06 Thread Jonathan Stowe
On Fri, 2004-08-06 at 08:53, Darrell Blake wrote: mod_mono does not work (not even compile) on windows. Patches welcome. Not even in Cygwin? It's a Unix environment. Well strictly speaking Cygwin is just a .dll that provides sufficient POSIX/X-OPEN/SVID/whatever APIs to be able to

Re: [Mono-list] Installing XSP on FreeBSD 4.7

2004-08-09 Thread Jonathan Stowe
On Sun, 2004-08-08 at 22:17, Ken Swift wrote: This is more of a curosity question...why do I have to install XSP, if I am going to be using the mod_mono Apache module? The XSP package contains the mod-mono-server.exe (as well as all the examples) which

Re: [Mono-list] command

2004-08-09 Thread Jonathan Stowe
On Mon, 2004-08-09 at 14:15, Fabian wrote: Hi!. If i'm not wrong, if i want to execute a shell command like ls -lh I must paste the following code: System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.EnableRaisingEvents=false;

Re: AW: [Mono-list] Strings.InStr

2004-08-17 Thread Jonathan Stowe
On Tue, 2004-08-17 at 08:15, Jochen Wezel wrote: I only tried on MS.NET, but it should be the same on Mono: SNIP- using Microsoft.VisualBasic; public class Test { public static void Main() { System.Console.WriteLine (Strings.InStr(Hello World, W, 0));

RE: [Mono-list] Syslog Access

2004-08-17 Thread Jonathan Stowe
On Tue, 2004-08-17 at 06:06, Iain McCoy wrote: On Tue, 2004-08-17 at 14:35, Craig Dayton wrote: Perhaps exploring the possibility of using PerlNet a product marketed by ActiveState might be a cost effective solution. With PerlNet, one can define an Interface to any module on CPAN and

Re: [Mono-list] XSP stops working

2004-08-18 Thread Jonathan Stowe
On Tue, 2004-08-17 at 18:42, Jochen Wezel wrote: Hi Gonzalo, again! I know, I know, today, I'm killing your last nerves. But I'm heavily testing now my applications since VB.NET is now able to run in ASP.NET ;-) Do you know what this exception is? I simply removed one DLL (the

Re: [Mono-list] Problem with mod_mono1.01

2004-08-19 Thread Jonathan Stowe
On Thu, 2004-08-19 at 09:43, [EMAIL PROTECTED] wrote: Hi, I've installed packages of the 1.01 version for fedora core 2 and the Apache Mono module mod_mono-1.0.1.tar.gz...it seems with non problem: --- [EMAIL PROTECTED] root]# mono /usr/bin/mod-mono-server.exe --root

Re: [Mono-list] Reply to address

2004-08-19 Thread Jonathan Stowe
On Thu, 2004-08-19 at 12:08, Dick Porter wrote: On Thu, 2004-08-19 at 02:38, Maynard Kuona wrote: If I hit reply, then it will attempt to reply to Dick Porter, and not to [EMAIL PROTECTED] Incidentally, I am using Ximian Evolution, the same mailer by the guys who own this list! Evolution

Re: [Mono-list] Problem with a web serivce method.

2004-08-23 Thread Jonathan Stowe
On Mon, 2004-08-23 at 13:43, [EMAIL PROTECTED] wrote: The remote server returned an error: (500) Internal Server Error. Unable to retreive error information from ODBC driver manager What it means? There is a problem with your ODBC configuration, can you make a small console example that

Re: [Mono-list] Problem with a web serivce method.

2004-08-23 Thread Jonathan Stowe
On Mon, 2004-08-23 at 15:08, [EMAIL PROTECTED] wrote: Isql is an utility of unixODBC Er yes, but I meant a c# example that run at the console and not a webservice. It will probably be enough to do just: using System; using System.Data; class Foo { public static void Main() {

Re: [Mono-list] Problem with a web serivce method.

2004-08-24 Thread Jonathan Stowe
(or wherever that is on your system) rather than in ~/.odbc.ini . If you have already done this then it could be that the user your apache runs as cannot read the /etc/odbc.ini /J\ Scrive Jonathan Stowe [EMAIL PROTECTED]: On Mon, 2004-08-23 at 15:08, [EMAIL PROTECTED] wrote: Isql

Re: [Mono-list] aspnet_regiis.exe

2004-08-25 Thread Jonathan Stowe
On Wed, 2004-08-25 at 08:22, Jochen Wezel wrote: Hi all! When is there a tool available to automate the installation of ASP.NET into web servers? Er there is, in the installer for mod_mono - you probably want to abstract that stuff into a stand alone program. Especially, I think at -

Re: [Mono-list] Howto clear the console

2004-08-31 Thread Jonathan Stowe
On Mon, 2004-08-30 at 04:06, Ian MacLean wrote: Anyway how can I do this on linux, or better yet, platform independant. I think you'll probably need to P/Invoke to ncurses to do this on *nix Portable.NET has a curses binding already, though I've not tried to use this with mono,

Re: [Mono-list] mod-mono hangs

2004-09-08 Thread Jonathan Stowe
On Wed, 2004-09-08 at 16:39, Tomek Soroka wrote: ps. I've sent this mail some hours ago, but I don't see it on list. have You any problems with mono list? I haven't seen any mail on the list all day until this one so I guess it has been waiting patiently for a mailserver to do its thing. --

Re: [Mono-list] mod-mono hangs

2004-09-08 Thread Jonathan Stowe
On Wed, 2004-09-08 at 16:39, Tomek Soroka wrote: ps. I've sent this mail some hours ago, but I don't see it on list. have You any problems with mono list? I haven't seen any mail on the list all day until this one so I guess it has been waiting patiently for a mailserver to do its thing. --

Re: [Mono-list] Howto clear the console

2004-09-08 Thread Jonathan Stowe
On Tue, 2004-08-31 at 16:45, Jonathan Stowe wrote: On Mon, 2004-08-30 at 04:06, Ian MacLean wrote: Anyway how can I do this on linux, or better yet, platform independant. I think you'll probably need to P/Invoke to ncurses to do this on *nix Portable.NET has a curses

Re: [Mono-list] Is Mono ready to compete with MS .NET in realbusiness?

2004-10-01 Thread Jonathan Stowe
is not as intuitive as a few mouse clicks ;-) Jonathan Stowe wrote: Vim is *not* a development environment. No it may not be, but, combined with the set of tools I have available on my computer, it is part of one. Emacs with ECB and semantic, for Java C[++] comes quite close though

Re: [Mono-list] Crystal Reports 10

2004-10-01 Thread Jonathan Stowe
On Fri, 2004-10-01 at 09:32, Golo Haas wrote: Hi there, I want to use Crystal Reports 10 within an ASP.NET application which is hosted by Apache using mod_mono (on SuSE 9.1). As there is no Linux version of Crystal Reports, it will be installed on a Windows machine. So my

Re: [Mono-list] console interface

2004-10-20 Thread Jonathan Stowe
On Tue, 2004-10-19 at 19:58, Alejandro Mery wrote: Hi, i would like to know if there is any kind of console interface for mono. i am looking for something like clipper (xbase like foxpro). in fact i'm coding on clip (www.itk.ru) a native clipper compiler for unix-like, because i need the

Re: [Mono-list] Ask Microsoft: Mono support

2004-10-27 Thread Jonathan Stowe
On Wed, 2004-10-27 at 09:04, RoBiK wrote: Just found an article regarding comment from microsoft on mono... http://searchvb.techtarget.com/originalContent/0,289142,sid8_gci1019210,00.h tml Mono is an attempt by Novell to reverse engineer parts of Microsoft's .NET Framework.

Re: [Mono-list] Ask Microsoft: Mono support

2004-10-27 Thread Jonathan Stowe
On Wed, 2004-10-27 at 11:23, Jonathan Pryor wrote: On Wed, 2004-10-27 at 05:13, Jonathan Stowe wrote: On Wed, 2004-10-27 at 09:04, RoBiK wrote: http://searchvb.techtarget.com/originalContent/0,289142,sid8_gci1019210,00.h tml Mono is an attempt by Novell to reverse

Re: [Mono-list] OpenLDAP with mono

2004-12-01 Thread Jonathan Stowe
On Wed, 2004-12-01 at 08:17, Amish Munshi wrote: Greetings, I am using mono 1.0.4 on Novell Linux desktop, using the article available at http://www.novell.com/coolsolutions/cooldev/features/ a_net_cplus_ldap_library_cdev.html I am trying to connect to OpenLDAP using the following code

Re: [Mono-list] OpenLDAP with mono

2004-12-02 Thread Jonathan Stowe
On Wed, 2004-12-01 at 12:46, Amish Munshi wrote: On Wednesday 01 December 2004 18:09, you wrote: I think if you take the try{} catch{} out you will get a clearer idea of where the problem lies - this exception appears to be from LdapException.ToString() which whilst a problem is meaning you

Re: [Mono-list] I have Welcome, but monodoc.ashx doesn't work

2005-01-26 Thread Jonathan Stowe
On Tue, 2005-01-25 at 16:55, Michael George wrote: SuSE 9.1 mono 1.0.5 and all the current versions from the SuSE 9.1 RPM page I have mono installed and apache configured to access it. I have the Welcome to Mono XSP! page. However, some of the pages do not load or work right. e.g.:

RE: [Mono-list] Xcopy deployment of dlls

2005-01-27 Thread Jonathan Stowe
On Thu, 2005-01-27 at 09:30, Chris Aitken wrote: Is mono supposed to support xcopy deployment? Yes. I have to restart xsp (actually apache2 with mod_mono) everytime I add a new dll to my ./bin/ directory. That's not XCOPY Deployment, at least as I understand it. XCOPY

Re: [Mono-list] xsp.exe as windows service

2005-02-02 Thread Jonathan Stowe
On Tue, 2005-02-01 at 17:36, marius popa wrote: I have started apache and xsp (unsing mod_proxy module) and want to put xsp.exe to run as serivice at startup What should i do ? add service code for xsp ? Yep, I guess this would be possible however you might have to compile the xsp.exe using

Re: [Mono-list] Visual Studio.net 2005 Enterprise Beta 1

2005-02-03 Thread Jonathan Stowe
On Thu, 2005-02-03 at 00:10, Daniel Morgan wrote: I found you can get Visual Studio.net 2005 Enterprise Beta 1 for free at http://lab.msdn.microsoft.com/vs2005/get/order/default.aspx?Locale=en-us Or http://lab.msdn.microsoft.com/vs2005/get/emeaorder/default.aspx If you happen to be in those

Re: [Mono-list] mono and systray icon

2005-02-14 Thread Jonathan Stowe
On Mon, 2005-02-14 at 14:51, Alex Roman wrote: On Mon, 2005-02-14 at 09:37 -0500, Alex C wrote: i believe the mwf team is working on this. check this link out http://svn.myrealbox.com/blog/archive/2005/01/28/keep_feeling_fascination. alex c. Thanks, I looked at that, but I do not want

Re: [Mono-list] i'd like unsubscribe

2005-02-15 Thread Jonathan Stowe
On Mon, 2005-02-14 at 21:41, Charli wrote: I'd like unsubscribe for this list and i don't know how. thanks ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list Note this URL above - you should

Re: RE: [Mono-list] Cannot find Assembly ASP

2005-04-08 Thread Jonathan Stowe
On Fri, 2005-04-08 at 06:55, Gilles FAVIER wrote: Seb, You made it!! It works, it compiles with the exact command lien you gave me, it is true 'ill have to study that point between assemblies and namespaces... IT would be to great if it worked... i have the compilation succeeded but

RE: [Mono-list] RE: Forums

2005-04-12 Thread Jonathan Stowe
On Tue, 2005-04-12 at 16:22, Dilton McGowan II wrote: I'm letting my complaint ride, that email lists are old fashioned and cumbersome. :-) To be honest it's probably your mail client that is old-fashioned and cumbersome :-) My client (strangely enough from the same people that brought you

Re: [Mono-list] Server variables

2005-04-19 Thread Jonathan Stowe
On Mon, 2005-04-18 at 15:25, nelson wrote: Hi, I'm playing with ServerVariablesCollection.cs to make it more Apache friendly, and I'm having some trouble retrieving some values. I follow the problem to mod_mono and now i'm stuck. The problem is I can retrieve somo values and not others. I