Re: [Mono-list] Mono on AMD64

2005-08-15 Thread Marcus
I think I fixed my problem. This is going to sound strange, and I cannot 
explain exactly why this behavior occurred. I just hope that it helps someone 
who is searching the archives. I upgraded my system from Athlon to Athlon64 
recently, moving from i585 SUSE to x86_64. I installed mono-1.1.8.3 from the 
source tarball. The mono process would just freeze when I tried to use it. 
However, I remembered that my SUSE 9.3 DVD had a copy of mono on it, and it 
worked fine. I then used the SUSE 9.3 DVD version to build recent CVS version 
of Mono. But when I tried to the recent CVS (after installing it and removing 
Mono RPM from SUSE 9.3), it would freeze, too. Finally, I had a thought that 
maybe I needed to remove ~/.wapi. It was just a hunch. Apparently, that fixed 
my problems. I had kept /home when I upgraded and reinstalled SUSE, and 
apparently, some newer versions of Mono do not like having the old ~/.wapi 
around. I guess that's why the SUSE 9.3 RPM worked all right, but I'm not 
really sure.



On Monday 15 August 2005 11:41 pm, Marcus wrote:
> Is there some special trick to getting Mono to run on AMD64? I downloaded
> and built mono-1.1.8.3 on SUSE 9.3 x86_64. Attempting to run mono apps like
> mcs (even with no parameters) just results in Mono's consuming lots of CPU
> time.

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Mono on AMD64

2005-08-15 Thread Marcus
Is there some special trick to getting Mono to run on AMD64? I downloaded and 
built mono-1.1.8.3 on SUSE 9.3 x86_64. Attempting to run mono apps like mcs 
(even with no parameters) just results in Mono's consuming lots of CPU time.

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Capturing output from Linux Command Line programs

2005-08-15 Thread mono-list . 1 . tracyanne

> try using
> 2>&1
> instead of
>  >
> 
> Joel.
> 

I'm not not using the Command line, and nowhere have I used >.

I am trying to capture stdout from commandline programs so I can use that 
output in real time in a GUI application.

Can I have some sensible replies please.

Regards

Tracy Barlow
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Capturing output from Linux Command Line programs

2005-08-15 Thread Joel Plane

try using
2>&1
instead of
>

Joel.


[EMAIL PROTECTED] wrote:


Hi,

   


Can anyone show me where I have gone wrong.
 


Can't you just say

mono myprog.exe > output.txt?

TTFN
   




No.


Regards

Tracy Barlow
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

 


___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


RE: [Mono-list] Invalid IL Code

2005-08-15 Thread Alan
I'm assuming that it's already compiled .NET 1.1 since
it being comppiled on a machine running 1.1.


Alan
--- Nick Berardi <[EMAIL PROTECTED]> wrote:

> Have you tried recompiling using .NET 1.1?  Do you
> know what .Net version
> the original was compiled in?
> 
> Nick
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Alan Zebchuk
> Sent: Sunday, August 14, 2005 12:02 PM
> To: mono-list@lists.ximian.com
> Subject: [Mono-list] Invalid IL Code
> 
> I'm trying to get an existing ASP.NET app up and
> running under mono,  
> but I am getting this error in my Apache error logs
> when I try to  
> access one of the pages.
> 
> 
> ** ERROR **: Invalid IL code at IL0057 in  
> ASP.index_aspx:__BuildControl__bctrl_12_DB_0  
> (object,System.EventArgs): IL_0057: callvirt 
> 0x0a3e
> 
> 
> aborting...
> 
> 
> Any help would be greatly appreciated,
> 
> Thanks,
> 
> Alan
> 
> ___
> Mono-list maillist  -  Mono-list@lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-list
> 
> 

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] monodoc

2005-08-15 Thread Joshua Tauberer

[EMAIL PROTECTED] wrote:
Is it possible to run Monodoc server to let a group developers edit 
documentation simultaneously?


Sort of/not really.  There are two ways to edit docs with monodoc.  The 
first way is what's used when people edit Mono's class library docs. 
Edit through Monodoc, submit to Mono server, and then the changes are 
applied by someone invoking a command, and then committed to the 
repository.  It's a long round trip from edit to anyone else seeing the 
changes, and I'm not exactly sure how the server part of that is set up.


The second way is with monodoc's --edit argument, to edit anything *but* 
docs normally loaded by monodoc.  That writes changes done in Monodoc 
directly to the XML files.  To get the group aspect of things, you could 
make those files shared, somehow, or put them into a subversion 
repository, or something along those lines.


--
- Joshua Tauberer

http://taubz.for.net

** Nothing Unreal Exists **


___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Invalid IL Code

2005-08-15 Thread Alan
I believe that everything's compiled in release mode. 

Alan


--- Martin Hinks <[EMAIL PROTECTED]> wrote:

> Just a quick guess did you compile in debug mode
> instead of release mode?
> 
> Martin
> 
> On 8/14/05, Alan Zebchuk <[EMAIL PROTECTED]>
> wrote:
> > I'm trying to get an existing ASP.NET app up and
> running under mono,
> > but I am getting this error in my Apache error
> logs when I try to
> > access one of the pages.
> > 
> > 
> > ** ERROR **: Invalid IL code at IL0057 in
> > ASP.index_aspx:__BuildControl__bctrl_12_DB_0
> > (object,System.EventArgs): IL_0057: callvirt 
> 0x0a3e
> > 
> > 
> > aborting...
> > 
> > 
> > Any help would be greatly appreciated,
> > 
> > Thanks,
> > 
> > Alan
> > 
> > ___
> > Mono-list maillist  -  Mono-list@lists.ximian.com
> > http://lists.ximian.com/mailman/listinfo/mono-list
> > 
> 
> 
> -- 
> Martin Hinks
> http://www.m-s-d.net
> 

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Capturing output from Linux Command Line programs

2005-08-15 Thread mono-list . 1 . tracyanne

> Hi,
> 
> > Can anyone show me where I have gone wrong.
> 
> Can't you just say
> 
> mono myprog.exe > output.txt?
> 
> TTFN


No.


Regards

Tracy Barlow
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Invalid IL Code

2005-08-15 Thread Alan
It's currently being compiled using VS.net

Alan

--- Martin Hinks <[EMAIL PROTECTED]> wrote:

> Are you compiling with mcs or csc?
> 
> On 8/15/05, Alan <[EMAIL PROTECTED]> wrote:
> > I believe that everything's compiled in release
> mode.
> > 
> > Alan
> > 
> > 
> > --- Martin Hinks <[EMAIL PROTECTED]> wrote:
> > 
> > > Just a quick guess did you compile in debug
> mode
> > > instead of release mode?
> > >
> > > Martin
> > >
> > > On 8/14/05, Alan Zebchuk <[EMAIL PROTECTED]>
> > > wrote:
> > > > I'm trying to get an existing ASP.NET app up
> and
> > > running under mono,
> > > > but I am getting this error in my Apache error
> > > logs when I try to
> > > > access one of the pages.
> > > >
> > > >
> > > > ** ERROR **: Invalid IL code at IL0057 in
> > > > ASP.index_aspx:__BuildControl__bctrl_12_DB_0
> > > > (object,System.EventArgs): IL_0057: callvirt
> > > 0x0a3e
> > > >
> > > >
> > > > aborting...
> > > >
> > > >
> > > > Any help would be greatly appreciated,
> > > >
> > > > Thanks,
> > > >
> > > > Alan
> > > >
> > > >
> ___
> > > > Mono-list maillist  - 
> Mono-list@lists.ximian.com
> > > >
> http://lists.ximian.com/mailman/listinfo/mono-list
> > > >
> > >
> > >
> > > --
> > > Martin Hinks
> > > http://www.m-s-d.net
> > >
> > 
> > 
> 
> 
> -- 
> Martin Hinks
> http://www.m-s-d.net
> 

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Invalid IL Code

2005-08-15 Thread Miguel de Icaza
On Sun, 2005-08-14 at 12:01 -0400, Alan Zebchuk wrote:
> I'm trying to get an existing ASP.NET app up and running under mono,  
> but I am getting this error in my Apache error logs when I try to  
> access one of the pages.
> 
> 
> ** ERROR **: Invalid IL code at IL0057 in  
> ASP.index_aspx:__BuildControl__bctrl_12_DB_0  
> (object,System.EventArgs): IL_0057: callvirt  0x0a3

versions of mono etc would be useful

> 
> 
> aborting...
> 
> 
> Any help would be greatly appreciated,
> 
> Thanks,
> 
> Alan
> 
> ___
> Mono-list maillist  -  Mono-list@lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-list
> 
-- 
Miguel de Icaza <[EMAIL PROTECTED]>
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] monodoc

2005-08-15 Thread Miguel de Icaza
>  
> Is it possible to run Monodoc server to let a group developers edit
> documentation simultaneously?

yes, they can.

you just have to divide the work.

It wont work with the 'upload contribs' feature, as thats hardcoded, but
you can use the command line merging tools
___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Problems with mscorlib resources

2005-08-15 Thread Giuseppe Greco
Hi all,

I've just installed the latest official version of
mono (1.1.8.3) and it seems there are problems with
mscorlib resources...

System.Resources.MissingManifestResourceException: Could not find any
resource appropiate for the specified culture or its parents. Make sure
"mscorlib.Resources.Strings.resources" was correctly embedded or linked
into assembly "mscorlib".

Thanks,
j3d.

-- 

Giuseppe Greco
::agamura::

call giuseppe.greco via Skype
phone:  +41 (0)91 604 67 65
mobile: +41 (0)79 602 99 27
email:  [EMAIL PROTECTED]
web:www.agamura.com


___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Warning .. on socket server app.

2005-08-15 Thread ted leslie
on a server app. in mono accepting socket connections , i get 

** (./server.exe:5919): WARNING **: _wapi_handle_count_signalled_handles: 
iteration overflow!

i get one of these every 10-20 seconds, or about every 100 or so connections.
The server still runs, and processes connections,

but this can't be good?
anyone know what this means and whether I can live with it?

-tl

___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list