[Mono-list] Re: Mono-list digest, Vol 1 #660 - 22 msgs

B Johnson bobjohnson11@comcast.net
Sat, 21 Dec 2002 09:33:17 -0500


Hello,

I was just looking at the features that are available for the ODBC Data
Provider on the web site and  I decided to write up some test code for
"Insert", "Delete", Update". I just compiled my Insert test (Which is using
an Access 200 database) and the code compiles ok with mono but the insert is
not happening. I also compile this same code with CSC and the code does
insert the recode ok.  The OS I am using to test this is windows XP
Professional. I have attached the code I used at the end of my posting.

I also have a question. Is it ok to do more of this kind of ODBC testing? IS
there some sort of test plan to use for these types of test?

Bob J

My test Code:
// created on 12/21/2002 at 8:33 AM

//

// OdbcTest.cs - Test for the ODBC ADO.NET Provider in System.Data.Odbc

//

//

//

//

// Author:

// Bob Johnson <bobjohnson11@comcast.net>

//

using System;

using System.Data;

using System.Data.Odbc;

namespace Test.OdbcInsertTest

{

class OdbcInsertTest

{

[STAThread]

static void Main(string[] args)

{

OdbcConnection dbcon = new OdbcConnection();

// connection string to a Microsoft SQL Server 2000 database

// that does not use a DSN

//dbcon.ConnectionString =

// "DRIVER={SQL Server};" +

// "SERVER=(local);" +

// "Trusted_connection=true;" +

// "DATABASE=pubs;";

// connection string that uses a DSN.

dbcon.ConnectionString =

"DSN=testdb;UID=sa;PWD=";

int rowsAffected;

dbcon.Open();

OdbcCommand dbcmd = new OdbcCommand();

dbcmd.Connection = dbcon;

dbcmd.CommandType = CommandType.Text;

//dbcmd.CommandText = "SELECT LastName FROM address";

dbcmd.CommandText = "Insert into Address" + "(FirstName, LastName, Phone)" +
"values ('Robert', 'Johnson', '212-111-1111')";

rowsAffected= dbcmd.ExecuteNonQuery();

Console.WriteLine ("Rows Affected: " + rowsAffected);

dbcon.Close();


}

}

}

----- Original Message -----
From: <mono-list-admin@ximian.com>
To: <mono-list@ximian.com>
Sent: Friday, December 20, 2002 12:53 PM
Subject: Mono-list digest, Vol 1 #660 - 22 msgs


>
> Send Mono-list mailing list submissions to
> mono-list@ximian.com
>
> To subscribe or unsubscribe via the web, visit
> http://lists.ximian.com/mailman/listinfo/mono-list
> or, via email, send a message with subject or body 'help' to
> mono-list-request@ximian.com
> You can reach the person managing the list at
> mono-list-admin@ximian.com
>
> When replying, please edit your Subject line so it is more specific than
> "Re: Contents of Mono-list digest..."
>
>
> Today's Topics:
>
>   1. libintl-1.dll ??? (Piyush, Garyali (IE10))
>   2. httpModules (kojoadams)
>   3. Re: httpModules (Gonzalo Paniagua Javier)
>   4. Re: XSP (Gonzalo Paniagua Javier)
>   5. RE: Mono/.NET delegate incompatibility (dietmar)
>   6. Re: RE: nunit2.0 problems (Jackson Harper)
>   7. XSP default index files (Gonzalo Paniagua Javier)
>   8. Re: mscoree.dll (Andrew Birkett)
>   9. RE: [OT] mscoree.dll (Jeroen Frijters)
>   10. IBM DB2 and mono C# (Nikolai Smirnov)
>   11. calling external program (Jamin Philip Gray)
>   12. Re: enum examples from TiC# don't compile with mcs
(jpo234@netscape.net)
>   13. Re: IBM DB2 and mono C# (Rodrigo Moya)
>   14. Re: enum examples from TiC# don't compile with mcs (Geoff Taylor)
>   15. Re: enum examples from TiC# don't compile with mcs (Eric J. Peters)
>   16. Re: calling external program (Gonzalo Paniagua Javier)
>   17. couldnt solve problem........ (nkraman)
>   18. Re: couldnt solve problem........ (Gonzalo Paniagua Javier)
>   19. RE: IBM DB2 and mono C# (Daniel Morgan)
>   20. Re: calling external program (Matt Kunze)
>   21. Re: XSP default index files (A Rafael D Teixeira)
>   22. Re: XSP default index files (A Rafael D Teixeira)
>
> --__--__--
>
> Message: 1
> From: "Piyush, Garyali (IE10)" <Piyush.Garyali@honeywell.com>
> To: "mono (E-mail)" <mono-list@ximian.com>
> Date: Thu, 19 Dec 2002 23:02:55 -0700
> charset="iso-8859-1"
> Subject: [Mono-list] libintl-1.dll ???
>
> Hi,
>
> Can someone please help me with a pointer
> or something for the source code for libintl
> (libintl-1.dll)??
>
> I searched the length and breadth of internet
> but somehow failed to find anything.
>
> Thanks in advance,
> Piyush Garyali
>
> Honeywell Labs
>
>
>
> --__--__--
>
> Message: 2
> From: "kojoadams" <kojoadams@hotmail.com>
> To: <mono-list@ximian.com>
> Date: Fri, 20 Dec 2002 03:38:53 -0500
> charset="iso-8859-1"
> Subject: [Mono-list] httpModules
>
> hi all,
>     Is the httpModules conifg section in the web.config of a web
application
> processed?
> kojo.
>
> --__--__--
>
> Message: 3
> Subject: Re: [Mono-list] httpModules
> From: Gonzalo Paniagua Javier <gonzalo@ximian.com>
> To: Monkey Business <mono-list@ximian.com>
> Date: 20 Dec 2002 09:46:07 +0100
>
> El vie, 20-12-2002 a las 09:38, kojoadams escribió:
> > hi all,
> >     Is the httpModules conifg section in the web.config of a web
application
> > processed?
>
> Yes. I will commit soon a change in our machine.config to include the
> module to do forms authentication (the FormsAuthenticationModule class
> is already in CVS, just in case you want to add it to your
> machine.config or web.config).
>
> -Gonzalo
>
>
>
> --__--__--
>
> Message: 4
> Subject: Re: [Mono-list] XSP
> From: Gonzalo Paniagua Javier <gonzalo@ximian.com>
> To: Monkey Business <mono-list@ximian.com>
> <1040254527.1726.43.camel@lalo2.micasa>
> <DAV51hqx82xWpFacOy300003904@hotmail.com>
> <1040268634.1724.62.camel@lalo2.micasa>
> Date: 20 Dec 2002 09:47:18 +0100
>
> El jue, 19-12-2002 a las 04:30, Gonzalo Paniagua Javier escribió:
> > El jue, 19-12-2002 a las 03:50, kojoadams escribió:
> > > Do the tabcontrol.aspx and tabcontrol2.aspx pages work for anyway?
> >
> > Yes. At least under *nix (didn't have time yet to check if there are
> > problems under windows).
>
> Yes, they both work on windows too.
>
> -Gonzalo
>
>
>
> --__--__--
>
> Message: 5
> Subject: RE: [Mono-list] Mono/.NET delegate incompatibility
> From: dietmar <dietmar@ximian.com>
> To: "J. Perkins" <jason@379.com>
> Cc: mono-list <mono-list@ximian.com>
> <1040305159.984.8.camel@gsk-94k9kupb3ej.rdmdev.ha.uk.sbphrd.com>
> <1040326935.988.51.camel@gsk-94k9kupb3ej.rdmdev.ha.uk.sbphrd.com>
> Organization:
> Date: 20 Dec 2002 09:49:48 +0100
>
> Please file a bug.
>
> - Dietmar
>
> On Thu, 2002-12-19 at 20:42, J. Perkins wrote:
> > Hang on a minute, I answered this too soon. I'm not talking about
> > calling a DLL function. [DllImport] works just fine on both Windows
> > and
> > Linux. I am talking about a callback function, from unmanaged ->
> > managed
> > code. That is, a C# delegate passed to and called from unmanaged code
> > via a function pointer. Here's a usenet thread on the subject:
> >
> >  http://makeashorterlink.com/?C417214D2
> >
> > The problem described in this thread is reversed for Mono: the
> > callback
> > must use the cdecl convention. Because of this, there is no way to
> > write
> > a C function that can call a delegate under both .NET and Mono. If I
> > do
> > this:
> >
> >   int SomeCFunction(int (__stdcall *callback)(int, int, int))
> >   {  return callback(1,2,3); }
> >
> > ...it will corrupt the stack when run under Mono on Windows. If I use
> > cdecl instead:
> >
> >   int SomeCFunction(int (*callback)(int, int, int))
> >   { return callback(1,2,3); }
> >
> > ...it will corrupt the stack when run under .NET. Maybe I'm missing
> > something (quite possible), but it appears that Mono must use
> > __stdcall
> > for delegates on Windows.
> >
> > I'll give you guys a chance to sanity check my rambling. If it holds
> > up
> > I will file a bug.
> >
> > Jason
> > 379
> >
> >
> > > > I guess the default calling convention in mono is cdecl.
> > According to
> > > > MSDN, the default calling convention for dllimport should be
> > stdcall
> > > > (which IMHO really only makes sense on windows).
> > > >
> > > > You could try setting the CallingConvention property on the
> > DllImport to
> > > > cdecl.
> >
> >
> >
> >
> > _______________________________________________
> > Mono-list maillist  -  Mono-list@ximian.com
> > http://lists.ximian.com/mailman/listinfo/mono-list
> >
>
>
> --__--__--
>
> Message: 6
> From: "Jackson Harper" <JRHwork@hotmail.com>
> To: "Nick Drochak" <ndrochak@gol.com>,
> "Stefan Saring" <stefan.saring@epost.de>
> Cc: <mono-list@ximian.com>
> Subject: Re: [Mono-list] RE: nunit2.0 problems
> Date: Fri, 20 Dec 2002 00:58:24 -0800
> charset="iso-2022-jp"
>
> The Merge method was implemented. Problem was that the copy constructor
was
> passing it a null reference. I just checked in a fix for this.
>
> Good luck,
>
> Jackson
>
>
> ----- Original Message -----
> From: "Nick Drochak" <ndrochak@gol.com>
> To: "Stefan Saring" <stefan.saring@epost.de>; "Nick Drochak"
> <ndrochak@gol.com>
> Cc: <mono-list@ximian.com>
> Sent: Thursday, December 19, 2002 6:29 PM
> Subject: [Mono-list] RE: nunit2.0 problems
>
>
> > | Unhandled Exception: System.NullReferenceException: A null value was
> > | found where an object instance was required
> > | in <0x00019> 00 System.Security.Policy.Evidence:Merge
> > | (System.Security.Policy.Evidence)
> >
> > Have a look at the code in our Evidence.Merge() method.  Maybe it's not
> > implemented or something.
> >
> > Nick
> >
> >
> > _______________________________________________
> > Mono-list maillist  -  Mono-list@ximian.com
> > http://lists.ximian.com/mailman/listinfo/mono-list
> >
>
> --__--__--
>
> Message: 7
> From: Gonzalo Paniagua Javier <gonzalo@ximian.com>
> To: Monkey Business <mono-list@ximian.com>
> Date: 20 Dec 2002 12:27:52 +0100
> Subject: [Mono-list] XSP default index files
>
> Hi there!
>
> I've just added to the xsp server the ability to redirect directory
> requests such as /directory to /directory/ and for those requests ending
> in / it looks for a set of default index files (currently index.aspx,
> Default.aspx, default.aspx, index.html and index.htm).
>
> If that is not enough we can make that set of files configurable (as
> Gaurav suggested).
>
> Cheers
>
> -Gonzalo
>
>
>
>
>
> --__--__--
>
> Message: 8
> Subject: Re: [Mono-list] mscoree.dll
> From: Andrew Birkett <andy@nobugs.org>
> To: Lynde Gilliam <gilbo@4dv.net>
> Cc: mono-list <mono-list@ximian.com>
> Date: 20 Dec 2002 11:54:23 +0000
>
> On Wed, 2002-12-18 at 20:21, Lynde Gilliam wrote:
> > This site came up when I searched for "mscoree.dll".
>
> mscoree.dll contains Microsoft's JIT engine for .net bytecode
> (presumably "MicroSoft CORe Execution Engine").  If you build a .exe
> using csc, it contains a dependency on mscoree.dll and the executable
> code in your .exe contains a single jump instruction into that dll to
> start the execution of IL code.
>
> You need this mscoree.dll to run .net programs, unless you have mono
> installed in which case you could use 'mono' or 'mint' (the jit and
> interpreter respectively) instead.  Notice that mono's jit isn't in a
> dll, so we can't do the funky bootstrapping step to get from the .exe to
> the jit.  Instead, you run .net programs by "mono foo.exe".
>
> [ Your question isn't very relevant to this list, since it's specific to
> Microsoft's implementation of .NET.  But, since you found mono-list with
> your search, no doubt others will too, so this answer can live in the
> archives for future use .. ]
>
> Andrew
>
> --
> - www.nobugs.org -
>
>
> --__--__--
>
> Message: 9
> From: "Jeroen Frijters" <jeroen@sumatra.nl>
> To: "'Andrew Birkett'" <andy@nobugs.org>
> Cc: "'mono-list'" <mono-list@ximian.com>
> Subject: RE: [Mono-list] [OT] mscoree.dll
> Date: Fri, 20 Dec 2002 13:08:08 +0100
> charset="us-ascii"
>
> Very much off-topic, but I just wanted to correct you a little bit. The
sole
> job of MSCOREE.DLL is to find the appropriate version of the CLR, load
that
> DLL and jump to it. It does not contain the JIT. It is an essential part
of
> Microsoft's side-by-side architecture.
>
> BTW, COR stands for Common Object Runtime.
>
> Regards,
> Jeroen
>
> > -----Original Message-----
> > From: mono-list-admin@ximian.com
> > [mailto:mono-list-admin@ximian.com] On Behalf Of Andrew Birkett
> > Sent: Friday, December 20, 2002 12:54
> > To: Lynde Gilliam
> > Cc: mono-list
> > Subject: Re: [Mono-list] mscoree.dll
> >
> >
> > On Wed, 2002-12-18 at 20:21, Lynde Gilliam wrote:
> > > This site came up when I searched for "mscoree.dll".
> >
> > mscoree.dll contains Microsoft's JIT engine for .net bytecode
> > (presumably "MicroSoft CORe Execution Engine").  If you build a .exe
> > using csc, it contains a dependency on mscoree.dll and the executable
> > code in your .exe contains a single jump instruction into that dll to
> > start the execution of IL code.
> >
> > You need this mscoree.dll to run .net programs, unless you have mono
> > installed in which case you could use 'mono' or 'mint' (the jit and
> > interpreter respectively) instead.  Notice that mono's jit isn't in a
> > dll, so we can't do the funky bootstrapping step to get from
> > the .exe to
> > the jit.  Instead, you run .net programs by "mono foo.exe".
> >
> > [ Your question isn't very relevant to this list, since it's
> > specific to
> > Microsoft's implementation of .NET.  But, since you found
> > mono-list with
> > your search, no doubt others will too, so this answer can live in the
> > archives for future use .. ]
> >
> > Andrew
> >
> > --
> > - www.nobugs.org -
> >
> >
> > _______________________________________________
> > Mono-list maillist  -  Mono-list@ximian.com
> > http://lists.ximian.com/mailman/listinfo/mono-list
> >
>
>
> --__--__--
>
> Message: 10
> From: "Nikolai Smirnov" <nikolaismirnov@mail.ru>
> To: mono-list@ximian.com
> Date: Fri, 20 Dec 2002 14:09:00 +0300
> Reply-To: "Nikolai Smirnov" <nikolaismirnov@mail.ru>
> Subject: [Mono-list] IBM DB2 and mono C#
>
> Dear members of Mono team!
>
> I'm interesting in mono interface to IBM DB2 Universal Database v.8.1.
What is the current state of this provider?
>
> I have an experience in Linux (PC & IBM zSeries), Java 2, JDBC, IBM DB2
UDB (SQLJ, SP & UDF), C#. (My web site is: http://javasphere.hotmail.ru )
> How can I join to Mono team?
>
> Currently, I work with IBM DB2 for Linux for PC and IBM DB2 for Linux for
zSeries (IBM S/390).
>
> Best regards.
> Nikolai Smirnov, Moscow, Russia.
>
>
>
> --__--__--
>
> Message: 11
> Date: Thu, 19 Dec 2002 12:26:39 -0600 (CST)
> From: Jamin Philip Gray <jamin@pubcrawler.org>
> To: mono-list@ximian.com
> Subject: [Mono-list] calling external program
>
>
> I noticed that System.Diagnostics.Process.Start() has not yet been
> implemented.  Is there another way to call an external program from
> within a C# program?
>
> --
> name:   Jamin Philip Gray
> email:  jamin@pubcrawler.org
> icq:    1361499
> aim:    jamingray47
> yahoo:  jamin47
> web:    http://pubcrawler.org
>
> You cannot grow a beard in a moment of passion.
>
> --G.K. Chesterton
>
>
>
>
> --__--__--
>
> Message: 12
> Date: Thu, 19 Dec 2002 12:42:57 -0500
> From: jpo234@netscape.net
> To: Richard.Polton@morganstanley.com
> Cc: mono-list@ximian.com
> Subject: Re: [Mono-list] enum examples from TiC# don't compile with mcs
>
> Richard Polton <Richard.Polton@morganstanley.com> wrote:
>
> >Shouldn't it be
> >
> >(short)Coin.Penny + (short)Coin.Nickel
> >
> >??
> >
>
> I agree. The code looked fishy to me, too.
>
> If the ECMA C# standard does not allow this, then it's still interesting
to learn what csc does with the code. Anybody with a Windows machine at
hand?
>
> Regards
>   Joerg
>
> __________________________________________________________________
> The NEW Netscape 7.0 browser is now available. Upgrade now!
http://channels.netscape.com/ns/browsers/download.jsp
>
> Get your own FREE, personal Netscape Mail account today at
http://webmail.netscape.com/
>
>
> --__--__--
>
> Message: 13
> Subject: Re: [Mono-list] IBM DB2 and mono C#
> From: Rodrigo Moya <rodrigo@ximian.com>
> To: Nikolai Smirnov <nikolaismirnov@mail.ru>
> Cc: Mono List <mono-list@ximian.com>
> Organization:
> Date: 20 Dec 2002 13:34:53 +0100
>
> On Fri, 2002-12-20 at 12:09, Nikolai Smirnov wrote:
> > Dear members of Mono team!
> >
> > I'm interesting in mono interface to IBM DB2 Universal Database v.8.1.
What is the current state of this provider?
> >
> there is nothing done so far about it.
>
> > I have an experience in Linux (PC & IBM zSeries), Java 2, JDBC, IBM DB2
UDB (SQLJ, SP & UDF), C#. (My web site is: http://javasphere.hotmail.ru )
> > How can I join to Mono team?
> >
> writing code is the best way to join the Mono team :-) So, if you want
> to work on the DB2 provider, please do it.
>
> cheers
> --
> Rodrigo Moya <rodrigo@ximian.com>
>
>
> --__--__--
>
> Message: 14
> From: "Geoff Taylor" <geoff@opinionatedgeek.com>
> To: <Richard.Polton@morganstanley.com>
> Cc: <mono-list@ximian.com>
> Subject: Re: [Mono-list] enum examples from TiC# don't compile with mcs
> Date: Fri, 20 Dec 2002 12:50:18 -0000
> charset="iso-8859-1"
> Reply-To: geoff@opinionatedgeek.com
>
> jpo234@netscape.net <jpo234@netscape.net> scribbled:
>
> :: If the ECMA C# standard does not allow this, then it's still
> :: interesting to learn what csc does with the code. Anybody with a
> :: Windows machine at hand?
>
> One quick copy&paste later, it says:
>
> ----------
> >c:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\csc EnumTest.cs
> Microsoft (R) Visual C# .NET Compiler version 7.00.9466
> for Microsoft (R) .NET Framework version 1.0.3705
> Copyright (C) Microsoft Corporation 2001. All rights reserved.
>
> EnumTest.cs(14,32): error CS0019: Operator '+' cannot be applied to
operands
> of
>         type 'EnumTest.Coin' and 'EnumTest.Coin'
> ----------
>
> Cheers,
>
>             Geoff
>
>
>
> --__--__--
>
> Message: 15
> Date: Fri, 20 Dec 2002 08:11:51 -0500
> From: "Eric J. Peters" <erpeters@informationinplace.com>
> To: Geoff Taylor <geoff@opinionatedgeek.com>
> Cc: Richard.Polton@morganstanley.com, mono-list@ximian.com
> Subject: Re: [Mono-list] enum examples from TiC# don't compile with mcs
> Reply-To: erpeters@informationinplace.com
>
> And, just in case anyone is wondering, the same compilation error is spit
out
> by the final beta of Visual Studio 2003.
>
> -Eric.
>
> On Fri, 20 Dec 2002, Geoff Taylor wrote:
>
> > jpo234@netscape.net <jpo234@netscape.net> scribbled:
> >
> > :: If the ECMA C# standard does not allow this, then it's still
> > :: interesting to learn what csc does with the code. Anybody with a
> > :: Windows machine at hand?
> >
> > One quick copy&paste later, it says:
> >
> > ----------
> > >c:\WINDOWS\Microsoft.NET\Framework\v1.0.3705\csc EnumTest.cs
> > Microsoft (R) Visual C# .NET Compiler version 7.00.9466
> > for Microsoft (R) .NET Framework version 1.0.3705
> > Copyright (C) Microsoft Corporation 2001. All rights reserved.
> >
> > EnumTest.cs(14,32): error CS0019: Operator '+' cannot be applied to
operands
> > of
> >         type 'EnumTest.Coin' and 'EnumTest.Coin'
> > ----------
> >
> > Cheers,
> >
> >             Geoff
> >
> >
> >
> > _______________________________________________
> > Mono-list maillist  -  Mono-list@ximian.com
> > http://lists.ximian.com/mailman/listinfo/mono-list
>
> --__--__--
>
> Message: 16
> Subject: Re: [Mono-list] calling external program
> From: Gonzalo Paniagua Javier <gonzalo@ximian.com>
> To: Monkey Business <mono-list@ximian.com>
> Date: 20 Dec 2002 14:57:32 +0100
>
> El jue, 19-12-2002 a las 19:26, Jamin Philip Gray escribió:
> >
> > I noticed that System.Diagnostics.Process.Start() has not yet been
> > implemented.  Is there another way to call an external program from
> > within a C# program?
>
> Process.Start is implemented.
>
> -Gonzalo
>
>
>
> --__--__--
>
> Message: 17
> From: "nkraman" <nkraman@rediffmail.com>
> To: <mono-list@ximian.com>
> Date: Fri, 20 Dec 2002 09:46:29 +0530
> boundary="----=_NextPart_000_0017_01C2A80C.AB810AF0"
> Subject: [Mono-list] couldnt solve problem........
>
> This is a multi-part message in MIME format.
>
> ------=_NextPart_000_0017_01C2A80C.AB810AF0
> Content-Type: text/plain;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> Hi,=20
>
> I have done that and i have tell u that i installed all the packages in =
> /usr/local/mono.x.xx=20
>                    /usr/local/xsp-x.x even after i change that content =
> which u have give it is giving this error when i try to =
> http://localhost:8080/=20
>
>
> ** (server.exe:1276): WARNING **: Failed to load library =
> libkernel32.dll.so (ker
> nel32.dll): libkernel32.dll.so: cannot open shared object file: No such =
> file or
> directory
>
> ** (server.exe:1276): WARNING **: Failed to load library =
> libkernel32.dll.so (ker
> nel32.dll): libkernel32.dll.so: cannot open shared object file: No such =
> file or
> directory
> GC Warning: Finalization cycle involving 81a1c40
> Listening on port: 8080
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving 81a1c40
> GC Warning: Finalization cycle involving =
> 81a1c40=3D"System.Configuration.NameValue
>
> and one more problem .... can u tell me where is the webroot, where i =
> need to place the html or asax file can be placed to access..=20
>
> ------=_NextPart_000_0017_01C2A80C.AB810AF0
> Content-Type: text/html;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> <HTML><HEAD>
> <META http-equiv=3DContent-Type content=3D"text/html; =
> charset=3Diso-8859-1">
> <META content=3D"MSHTML 6.00.2600.0" name=3DGENERATOR>
> <STYLE></STYLE>
> </HEAD>
> <BODY bgColor=3D#ffffff>
> <DIV>
> <DIV>
> <DIV><FONT face=3DArial size=3D2>Hi, </FONT></DIV>
> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
> <DIV><FONT face=3DArial size=3D2>I have done that and i have tell u that =
> i installed=20
> all the packages in /usr/local/mono.x.xx </FONT></DIV>
> <DIV><FONT face=3DArial=20
> size=3D2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
> p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;/usr/local/xsp-x.x=20
> even after i change that content which u have give it is giving this =
> error when=20
> i try to <A href=3D"http://localhost:8080/">http://localhost:8080/</A>=20
> </FONT></DIV>
> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
> <DIV>
> <DIV><BR>** (server.exe:1276): WARNING **: Failed to load library=20
> libkernel32.dll.so (ker<BR>nel32.dll): libkernel32.dll.so: cannot open =
> shared=20
> object file: No such file or<BR>directory</DIV>
> <DIV>&nbsp;</DIV>
> <DIV>** (server.exe:1276): WARNING **: Failed to load library =
> libkernel32.dll.so=20
> (ker<BR>nel32.dll): libkernel32.dll.so: cannot open shared object file: =
> No such=20
> file or<BR>directory<BR>GC Warning: Finalization cycle involving=20
> 81a1c40<BR>Listening on port: 8080<BR>GC Warning: Finalization cycle =
> involving=20
> 81a1c40<BR>GC Warning: Finalization cycle involving 81a1c40<BR>GC =
> Warning:=20
> Finalization cycle involving 81a1c40<BR>GC Warning: Finalization cycle =
> involving=20
> 81a1c40<BR>GC Warning: Finalization cycle involving 81a1c40<BR>GC =
> Warning:=20
> Finalization cycle involving 81a1c40<BR>GC Warning: Finalization cycle =
> involving=20
> 81a1c40<BR>GC Warning: Finalization cycle involving 81a1c40<BR>GC =
> Warning:=20
> Finalization cycle involving 81a1c40<BR>GC Warning: Finalization cycle =
> involving=20
> 81a1c40<BR>GC Warning: Finalization cycle involving 81a1c40<BR>GC =
> Warning:=20
> Finalization cycle involving 81a1c40<BR>GC Warning: Finalization cycle =
> involving=20
> 81a1c40<BR>GC Warning: Finalization cycle involving 81a1c40<BR>GC =
> Warning:=20
> Finalization cycle involving 81a1c40<BR>GC Warning: Finalization cycle =
> involving=20
> 81a1c40<BR>GC Warning: Finalization cycle involving 81a1c40<BR>GC =
> Warning:=20
> Finalization cycle involving 81a1c40<BR>GC Warning: Finalization cycle =
> involving=20
> 81a1c40<BR>GC Warning: Finalization cycle involving 81a1c40<BR>GC =
> Warning:=20
> Finalization cycle involving =
> 81a1c40=3D"System.Configuration.NameValue</DIV>
> <DIV><FONT face=3DArial size=3D2></FONT>&nbsp;</DIV>
> <DIV><FONT face=3DArial size=3D2>and one more problem .... can u tell me =
> where is=20
> the webroot, where i need to place the html or asax file can be placed =
> to=20
> access.. </FONT></DIV></DIV></DIV></DIV></BODY></HTML>
>
> ------=_NextPart_000_0017_01C2A80C.AB810AF0--
>
>
>
> --__--__--
>
> Message: 18
> Subject: Re: [Mono-list] couldnt solve problem........
> From: Gonzalo Paniagua Javier <gonzalo@ximian.com>
> To: Monkey Business <mono-list@ximian.com>
> Date: 20 Dec 2002 16:17:36 +0100
>
> El vie, 20-12-2002 a las 05:16, nkraman escribió:
> > Hi,
> >
> > I have done that and i have tell u that i installed all the packages in
/usr/local/mono.x.xx
> >                    /usr/local/xsp-x.x even after i change that content
which u have give it is giving this error when i try to
http://localhost:8080/
>
> If you have the CVS version of XSP, update it and that problem will be
> fixed. If not, try http://localhost:8080/index.aspx
>
> -Gonzalo
>
>
>
> --__--__--
>
> Message: 19
> From: "Daniel Morgan" <danmorg@sc.rr.com>
> To: "Nikolai Smirnov" <nikolaismirnov@mail.ru>, <mono-list@ximian.com>
> Subject: RE: [Mono-list] IBM DB2 and mono C#
> Date: Fri, 20 Dec 2002 11:40:34 -0500
> charset="koi8-r"
>
> HI Nikolai,
>
> There is no specific IBM DB2 data provider in Mono right now.  However,
> there are two providers which can be used to access IBM DB2 right now.
>
> 1. the ODBC provider found in System.Data.Odbc which uses unixODBC on
Linux.
> unixODBC is supported by IBM for their IBM DB2 databases.   I'm sure you
are
> already familiar with unixODBC.  If not, it can be found at
> http://www.unixODBC.org/
>
> 2. the OLE DB provider found in System.Data.OleDb which uses GDA on Linux.
> GDA is a database abstraction library and can be found at
> http://www.gnome-db.org/  GDA has an IBM DB2 data provider.  Please note,
> GDA does not require GNOME, but if you use its widget library or Mergeant,
> you will need GNOME 2.0 and depencies.  The current release of GDA is
0.9.0.
>
> You are more than welcomed to work on any of the data providers in Mono
now,
> or you could create a new data provider dedicated to accessing IBM DB2
> databases.  It would be placed in mcs/class/Mono.Data.IbmDb2Client or
> something like that.
>
> If you do decide to create an IBM DB2 data provider, you could take one
that
> already exists, clean it up, and start modifying it for IBM DB2.  Since
the
> API of IBM DB2 is very similar to ODBC, I would advise to take the ODBC
data
> provider as a starting point.  Brian Ritchie created the ODBC data
provider.
>
> Daniel
>
> -----Original Message-----
> From: mono-list-admin@ximian.com [mailto:mono-list-admin@ximian.com]On
> Behalf Of Nikolai Smirnov
> Sent: Friday, December 20, 2002 6:09 AM
> To: mono-list@ximian.com
> Subject: [Mono-list] IBM DB2 and mono C#
>
>
> Dear members of Mono team!
>
> I'm interesting in mono interface to IBM DB2 Universal Database v.8.1.
What
> is the current state of this provider?
>
> I have an experience in Linux (PC & IBM zSeries), Java 2, JDBC, IBM DB2
UDB
> (SQLJ, SP & UDF), C#. (My web site is: http://javasphere.hotmail.ru )
> How can I join to Mono team?
>
> Currently, I work with IBM DB2 for Linux for PC and IBM DB2 for Linux for
> zSeries (IBM S/390).
>
> Best regards.
> Nikolai Smirnov, Moscow, Russia.
>
>
>
> _______________________________________________
> Mono-list maillist  -  Mono-list@ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-list
>
>
> --__--__--
>
> Message: 20
> Date: Fri, 20 Dec 2002 09:33:45 -0700
> From: Matt Kunze <kunzem@optimiz.com>
> Organization: DataSplice
> To: Gonzalo Paniagua Javier <gonzalo@ximian.com>
> CC: Monkey Business <mono-list@ximian.com>
> Subject: Re: [Mono-list] calling external program
>
> Gonzalo Paniagua Javier wrote:
> > El jue, 19-12-2002 a las 19:26, Jamin Philip Gray escribió:
> >
> >>I noticed that System.Diagnostics.Process.Start() has not yet been
> >>implemented.  Is there another way to call an external program from
> >>within a C# program?
> >
> >
> > Process.Start is implemented.
> >
> > -Gonzalo
>
> two overridden versions are not implemented:
>
> Process.Start(string filename)
> Process.Start(string filename, string arguments)
>
> Process.Start(ProcessStartInfo info) works though
>
> Is there any reason the unimplemented functions aren't simply:
>
> public static Process.Start(string filename)
> {
>     return Process.Start(new ProcessStartInfo(filename);
> }
>
> public static Process.Start(string filename, string arguments)
> {
>     return Process.Start(new ProcessStartInfo(filename, arguments);
> }
>
> it certainly would reduce confusion that those variants are unimplmented
> yet others are
> --
>
> .o0O0o.__.o0O0o.__.o0O0o.__.o0O0o.__.o0O0o.__.o0O0o.__.o0O0o.
> | Matt Kunze                      Sometimes there's a point.|
> | Build Master Fooly Fool         This is not one of those  |
> | 970.484.0841 x 2205             times.                    |
> =============================================================
>
>
>
> --__--__--
>
> Message: 21
> From: "A Rafael D Teixeira" <rafaelteixeirabr@hotmail.com>
> To: gonzalo@ximian.com
> Cc: mono-list@ximian.com
> Subject: Re: [Mono-list] XSP default index files
> Date: Fri, 20 Dec 2002 15:14:41 -0200
>
> >I've just added to the xsp server the ability to redirect directory
> >requests such as /directory to /directory/ and for those requests ending
> >in / it looks for a set of default index files (currently index.aspx,
> >Default.aspx, default.aspx, index.html and index.htm).
> >
> >If that is not enough we can make that set of files configurable (as
> >Gaurav suggested).
>
> It is a configuration available in IIS, on a per directory basis.
> I think xsp should emulate it, maybe using a xsp.config file in each
> directory.
>
> Happy hackings,
>
> Rafael Teixeira
> Brazilian Polymath
>
>
>
>
> _________________________________________________________________
> MSN 8 with e-mail virus protection service: 3 months FREE*.
>
http://join.msn.com/?page=features/virus&xAPID=42&PS=47575&PI=7324&DI=7474&S
U=
>
http://www.hotmail.msn.com/cgi-bin/getmsg&HL=1216hotmailtaglines_eliminatevi
ruses_3mf
>
>
> --__--__--
>
> Message: 22
> From: "A Rafael D Teixeira" <rafaelteixeirabr@hotmail.com>
> To: rafaelteixeirabr@hotmail.com, gonzalo@ximian.com
> Cc: mono-list@ximian.com
> Subject: Re: [Mono-list] XSP default index files
> Date: Fri, 20 Dec 2002 15:44:03 -0200
>
> >From: "A Rafael D Teixeira" <rafaelteixeirabr@hotmail.com>
> >To: gonzalo@ximian.com
> >CC: mono-list@ximian.com
> >Subject: Re: [Mono-list] XSP default index files
> >Date: Fri, 20 Dec 2002 15:14:41 -0200
> >
> >>I've just added to the xsp server the ability to redirect directory
> >>requests such as /directory to /directory/ and for those requests ending
> >>in / it looks for a set of default index files (currently index.aspx,
> >>Default.aspx, default.aspx, index.html and index.htm).
> >>
> >>If that is not enough we can make that set of files configurable (as
> >>Gaurav suggested).
> >
> >It is a configuration available in IIS, on a per directory basis.
> >I think xsp should emulate it, maybe using a xsp.config file in each
> >directory.
> >
> >Happy hackings,
> >
> >Rafael Teixeira
> >Brazilian Polymath
>
> Clarifying a bit more: IIS configures a ordered list of possible index
pages
> for a directory and all it's children, grandchildren, etc.... But the list
> may be overriden in some subtree.
> So the list of candidates for default page, should be backwardly searched
> for, up to the site root directory.
>
> Rafael Teixeira
> Brazilian Polymath
>
>
>
>
>
> _________________________________________________________________
> STOP MORE SPAM with the new MSN 8 and get 3 months FREE*.
>
http://join.msn.com/?page=features/junkmail&xAPID=42&PS=47575&PI=7324&DI=747
4&SU=
>
http://www.hotmail.msn.com/cgi-bin/getmsg&HL=1216hotmailtaglines_stopmorespa
m_3mf
>
>
>
>
> --__--__--
>
> _______________________________________________
> Mono-list mailing list
> Mono-list@ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-list
>
>
> End of Mono-list Digest