Re: [Mono-list] ODBC Problem

2005-10-09 Thread T Sureshkumar
>>> On Thu, Oct 6, 2005 at 8:25 pm, in message <[EMAIL PROTECTED]>, Melissa Vandenbrink <[EMAIL PROTECTED]> wrote: > I'm having problems connecting to Sybase with ODBC with Suse x86_64bit > software.. same code works on 32 bit system.. any ideas? > > [EMAIL PROTECTED]:~/bin> mono odbcConnectTes

Re: [Mono-list] Problems to use monologue

2005-10-09 Thread enzo - Eduardo Garcia
Hi joe thanks for you response, im try fix only with change this changes in my software to my blog http://nanoblogger.sf.net, Im only with this change my blog work with monologue you can see in http://www.openbss.org/monologue/ i need probe with another blog from blogspot, to finally use mono

[Mono-list] Question in Interop

2005-10-09 Thread Shankari
Hello, Sebastian had replied to my earlier query for safety from unmanaged code by sandboxing it in a separate app domain. I read the links : http://pages.infinit.net/ctech/20050520-0735.html http://pages.infinit.net/ctech/20050623-0432.html Is the sandboxing based on providing code based and

Re: [Mono-list] XSP crash

2005-10-09 Thread Mario Carrión
On Sun, 2005-10-09 at 11:05 -0700, Nikita Novikov wrote: > Problem report: > 1. I built mono and xsp from the latest sources (xxx.2) on Suse 10 RC1 > 2. Started xsp > 3. On XP client started the browser with the http:// server>:8080 > 4. Navigated to "calendar" sample. > 5. Played with it a little

RE: [Mono-list] NOAA Soap Server and System.Web.Services problems

2005-10-09 Thread Carl Olsen
I went to the NOAA web site, and it mentions problems with .NET at the bottom of the page, and says to use ASP.NET 2 Beta 3. Carl -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gonzalo Paniagua Javier Sent: Sunday, October 09, 2005 3:36 PM To: mono-list@

RE: [Mono-list] asp.net and Npgsql namespace not found

2005-10-09 Thread Carl Olsen
Hi Alan, I've never tried to compile it on the fly. I always pre-compile everything. Use "protected" instead of "private" when you do a button click in a code behind page, unless you use an event handler. I'm not an expert, but it appears that I can use a private method when I have an event hand

Re: [Mono-list] NOAA Soap Server and System.Web.Services problems

2005-10-09 Thread Gonzalo Paniagua Javier
On Fri, 2005-10-07 at 16:48 -0400, Jimmy wrote: > Hello, > I use the NOAA Soap Web Service (http://www.weather.gov/xml/) to access > weather data using the System.Web.Services class. This has worked for a > while up until a couple of weeks ago. A couple of weeks ago they > changed to using

[Mono-list] XSP crash

2005-10-09 Thread Nikita Novikov
Problem report: 1. I built mono and xsp from the latest sources (xxx.2) on Suse 10 RC1 2. Started xsp 3. On XP client started the browser with the http:// of the xps server>:8080 4. Navigated to "calendar" sample. 5. Played with it a little 6. On the server I see following output: ... Hit Return t

Re: [Mono-list] asp.net and Npgsql namespace not found

2005-10-09 Thread Alan Campbell
Carl, do you compile your codebehind pages into dlls? If I compile my codebehind into a dll the error disappears. Do you think that if the codebehind page is compiled on the fly it doesn't find the Npgsql library? Using the compiled codebehind dll I not get errors like test.Button1_Click(object

[Mono-list] ASPX page randomly crashes with mono 1.1.9.2

2005-10-09 Thread johnlopezj
Hi everyone,   I recently installed Mono, Libgdiplus, mod_mono, and xsp 1.1.9.2 (I had 1.1.9.1 previously).  I create a simple login page that asks for a user id and password in two text fields with a SUBMIT button.  I have a problem just bringing up the page.  I get an "500 - Internal Server Error

Re: [Mono-list] asp.net and Npgsql namespace not found

2005-10-09 Thread Alan Campbell
Carl, thanks again. I already have Npgsql referenced in my codebehind page and I can compile console applications that reference Npgsql fine. It looks like it might be something else. I will probably remove the debian backports of Mono and install via the Mono installer. Alan. On 10/9/05, Car

RE: [Mono-list] Processname

2005-10-09 Thread Bill Seddon
Paul If you launch the process using Process.Start(), you can retain a reference to the process class instance. The Process class contains a reference to the "MainWindowHandle" so you should be able to use this value to work out which window is the one you want. If you not dead set on launchi

RE: [Mono-list] asp.net and Npgsql namespace not found

2005-10-09 Thread Carl Olsen
I'm not familiar with inline code or vb.net. I put all of my code into code behind pages (c#.net). With Npgsql, I put all of my data code (c#.net) into class files and make objects to represent the data. When I actually use the data in my web pages, I'm just instantiating data objects, so I don'

Re: [Mono-list] asp.net and Npgsql namespace not found

2005-10-09 Thread Alan Campbell
Carl, thanks for the information. I installed in the GAC. I already had "using Npgsql;" in my code. It still has not helped. On a similar note, for a vb.net aspx page I had to have the following lines: <%@ import Namespace="Npgsql" %> <%@ Assembly Name="Npgsql" %> Do I need an equivalent "Ass

[Mono-list] NOAA Soap Server and System.Web.Services problems

2005-10-09 Thread Jimmy
Hello, I use the NOAA Soap Web Service (http://www.weather.gov/xml/) to access weather data using the System.Web.Services class. This has worked for a while up until a couple of weeks ago. A couple of weeks ago they changed to using a proxy servers in front of the actual server. Well, th

RE: [Mono-list] asp.net and Npgsql namespace not found

2005-10-09 Thread Carl Olsen
That should be: gacutil -i Npgsql.dll Microsoft word automatically capitalized the "i" for me, which is probably going to create a compile error. Carl -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carl Olsen Sent: Sunday, October 09, 2005 8:46 AM

RE: [Mono-list] asp.net and Npgsql namespace not found

2005-10-09 Thread Carl Olsen
I installed Npgsql.dll in the Global Assembly Cache (GAC) by running the GAC utility, like this: gacutil -I Npgsql.dll I also include it in the code page, like this: using Npgsql; That should take care of it. I believe the RMPs will install it in the GAC as well, but it won't hurt to

[Mono-list] asp.net and Npgsql namespace not found

2005-10-09 Thread Alan Campbell
Hi all, I am trying to convert code from IIS/Access DB to XSP (or mono-mono) / PostgreSQL in Debian Sarge. I can compile and run the Npgsql sample code fine. But, I get the following error when I try and use Npgsql in my codebehind page. error CS0246: The type or namespace name `Npgsql' could n

Re: [Mono-list] Processname

2005-10-09 Thread Loren Bandiera
If you have "kernel support for MISC binaries" compiled in your kernel, you can also do it like this: # mount -t binfmt_misc binfmt_misc /proc/sys/fs/binfmt_misc # echo ':CLR:M::MZ::/usr/bin/mono:' > /proc/sys/fs/binfmt_misc/register On Sun, 2005-10-09 at 12:16 +0100, Paul F. Johnson wrote: > Hi

Re: [Mono-list] Processname

2005-10-09 Thread Paul F. Johnson
Hi, > 1/ is it possible to execute à file .exe (like ./mysoft.exe) without to > write (mono mysoft.exe) ? You should be able to associate .exe files to run with mono. How you do that though depends on the distro, for me, I right click on the mouse, select run with other program, select mono an

[Mono-list] Processname

2005-10-09 Thread Pierro
Hello, 1/ is it possible to execute à file .exe (like ./mysoft.exe) without to write (mono mysoft.exe) ? 2/ I have a problem who is : i use this command : Process p = Process.Start("mono","SDS.exe"); in mysoft.exe and i want to know if SDS is executing each time mysoft.exe is executed