Re: [Mono-list] Cross-platform Mono IDE?

2003-02-02 Thread Richard Torkar
On Sun, 2003-02-02 at 11:57, Stefan Matthias Aust wrote:
> Fabio Montoya wrote:
> 
>  > I would like to explore the Mono environment especially now that Mac
>  > OS X is somewhat supported.
>  >
>  > Any comments and opinions on free (or at least open) cross-platform
>  > IDE tools (especially Windows, Linux, Mac OS X) will be appreciated.
>  >
>  > What's your favorite Mono IDE??
>  >
>  > What about Eclipse with C# plugin??
> 
> I'd love to have a C# plug-in for Eclipse - if it would have the same 
> features as the JDT plug-in.  Currently, there's only a plug-in which is 
> just an editor with syntax highlighting and which provides a way to call 
> the compiler.  That's not enough to call it an IDE for C# IMHO.
> 
** SNIP **

I saw somewhere that someone was working on - or was going to start
working on C# support in Anjuta. I think that would be the best
solution. 

http://anjuta.sf.net


/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list



Re: [Mono-list] Cross-platform Mono IDE?

2003-02-02 Thread Richard Torkar
On Sun, 2003-02-02 at 23:20, Stefan Matthias Aust wrote:
> Richard Torkar wrote:
> 
> > I saw somewhere that someone was working on - or was going to start
> > working on C# support in Anjuta. I think that would be the best
> > solution. 
> 
> Well, that seem to be yet another editor plus run-the-compiler option 
> lacking all the advanced IDE features I'm used to. Furthermore, it's a 
> GOME application and therefore not portable.  So it might be one 
> solution but I wouldn't call it the "best solution".
> 

hehe, true. For my little GNOME world it is the best solution ;)


/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list



Re: [Mono-list] Future of JIT

2003-02-03 Thread Richard Torkar
On Mon, 2003-02-03 at 09:41, Miguel de Icaza wrote:
> Hello,
> 
> > Have you considered VCODE/ICODE to become a basis for your JIT backend?
> 
> We did, early on.  We decided against it for licensing reasons, and
> because it is not really a great technology.  A cool hack, yes.
> 
> Hopefully when the new JIT engine is release, we will release some
> technical documents on it as well.
> 

I really hope so Miguel. I have a student looking into porting the new
JIT to the pxa250 cpu as a thesis work. But I think he already had a
chat with Paolo.


/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list



RE: [Mono-list] A COMPLETE list of prerequisites for compiling mono in Cygwin?

2003-02-05 Thread Richard Torkar
On Wed, 2003-02-05 at 00:42, Urs Muff wrote:
> Somebody can help with this?
> 
>  
> 
> running ./mono-build-win32.sh
> 
*SNIP*

> checking for GC_malloc in -lgc... yes
> 
> configure: error: Found libgc but not its header files! You may need
> to install them by hand.
> 


Do you have the header files in /usr/include/gc/* ?
If not make sure to put them there.

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list



Re: [Mono-list] Gtk# 0.7 RPMs

2003-02-06 Thread Richard Torkar
On Thu, 2003-02-06 at 23:59, Rodrigo Moya wrote:
> On Thu, 2003-02-06 at 23:05, Mark Derricutt wrote:
> > --On Thursday, February 06, 2003 23:03:56 +0100 Rodrigo Moya 
> > <[EMAIL PROTECTED]> wrote:
> > 
> > > I wonder if it would be a good idea to put all packages in one place.
> > > That would make things easier for a lot of people.
> > 
> > Ant apt-rpm repository for mono/mcs/mbas/gtksharp/qtsharp would be all good.
> > 
> if somebody wants to do it, please get any package you want from
> ftp.gnome-db.org.
> 

I have this for my students.
Feel free to pick stuff.
https://java.thn.htu.se/~toor/MONO/


/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list



RE: [Mono-list] MySql and Mono Problems

2003-02-18 Thread Richard Torkar
On Sun, 2003-02-16 at 15:23, Pablo Fischer wrote:
> Hello!
> 
> Yes, mysql is running.. and also with the port by default (3300).
> 

Eehh, 3306 is the standard port for MySQL AFAIK.

Try to do a:
telnet localhost 3306 

/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list



Re: [Mono-list] Delegate compile error

2003-02-23 Thread Richard Torkar
On Mon, 2003-02-24 at 03:31, Brian Ritchie wrote:
> The following snippet is causing an error when compiling with mcs (on 
> cygwin).  csc works fine.
> 
> namespace Test
> {
>   public delegate void CloseFTP();
> }
> 
> Unhandled Exception: System.NotSupportedException: Type CloseFTP was not 
> completed.
>at System.Reflection.Emit.ModuleBuilder.PreSave(String fileName)
>at System.Reflection.Emit.AssemblyBuilder.Save(String assemblyFileName)
>at Mono.CSharp.CodeGen.Save(String name)
>at Mono.CSharp.Driver.MainDriver(String[] args)
>at Mono.CSharp.Driver.Main(String[] args)
> (null)
> 
> Any ideas?  Am I doing something wrong...or...Should I log it as a bug?
> 

I could compile it as a library just fine:

$ cat lalle.cs
namespace Test
{
public delegate void CloseFTP();
}

$ mcs /t:library lalle.cs
Compilation succeeded

$ ls lalle.dll
lalle.dll


/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] AppDomain

2003-02-24 Thread Richard Torkar
Could this help?
http://mono.jroith.de/monkeyguide/embeddc.html

/Richard


On Mon, 2003-02-24 at 19:01, Daniel Lopez wrote:
> Hi,
> 
> I am looking for the correct way to call a method in a transparent proxy
> from the C side of mono. When I create an object in a different AppDomain
> and call it from C# everything is fine, but when I do it from C, it gets
> executed in the same domain.
> I attach some sample code to demonstrate what I mean.
> 
> In c# the result of compiling and running test.exe:
> mcs test.cs /r:System.Web
> mono test.exe
> 
> Main AppDomain: test.exe
> Process request AppDomain: 56ca2e66
> 
> And compiling and running test.c
> mcs test.cs /r:System.Web /target:library
> cp test.dll /usr/lib  (or somewhere where it will be picked up from the path)
> gcc -o test test.c pkg-config --cflags --libs mono -lm
> ./test
> 
> Main Domain: testing
> Process request AppDomain: testing
> 
> 
> So what is the correct way of invoking the method so it will be executed in
> the other domain? I tried every method I could think of with no luck.
> 
> Best regards
> 
> DAniel
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Delegate compile error

2003-02-25 Thread Richard Torkar
On Mon, 2003-02-24 at 22:31, Brian Ritchie wrote:
> Richard,
> 
> Are you using the mono or ms runtime?  I was using the mono compiler on the 
> ms runtime under cygwin.
> 
> Brian

I am using a pure Linux environment.
mono-0.20 rpms installed from go-mono.org




> 
> >From: Richard Torkar <[EMAIL PROTECTED]>
> >To: [EMAIL PROTECTED]
> >Subject: Re: [Mono-list] Delegate compile error
> >Date: 24 Feb 2003 08:30:14 +0100
> >
> >On Mon, 2003-02-24 at 03:31, Brian Ritchie wrote:
> > > The following snippet is causing an error when compiling with mcs (on
> > > cygwin).  csc works fine.
> > >
> > > namespace Test
> > > {
> > >   public delegate void CloseFTP();
> > > }
> > >
> > > Unhandled Exception: System.NotSupportedException: Type CloseFTP was not
> > > completed.
> > >at System.Reflection.Emit.ModuleBuilder.PreSave(String fileName)
> > >at System.Reflection.Emit.AssemblyBuilder.Save(String 
> >assemblyFileName)
> > >at Mono.CSharp.CodeGen.Save(String name)
> > >at Mono.CSharp.Driver.MainDriver(String[] args)
> > >at Mono.CSharp.Driver.Main(String[] args)
> > > (null)
> > >
> > > Any ideas?  Am I doing something wrong...or...Should I log it as a bug?
> > >>I could compile it as a library just fine:
> >
> >
> 
> >$ cat lalle.cs
> >namespace Test
> >{
> >public delegate void CloseFTP();
> >}
> >
> >$ mcs /t:library lalle.cs
> >Compilation succeeded
> >
> >$ ls lalle.dll
> >lalle.dll
> >
> >
> >/Richard
> >--
> >Ph.D. Student
> >Dept. of Informatics and Mathematics
> >HTU
> >
> >___
> >Mono-list maillist  -  [EMAIL PROTECTED]
> >http://lists.ximian.com/mailman/listinfo/mono-list
> 
> 
> _
> Add photos to your messages with MSN 8. Get 2 months FREE*.  
> http://join.msn.com/?page=features/featuredemail
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Problems with XSP

2003-02-28 Thread Richard Torkar
On Fri, 2003-02-28 at 10:40, Gonzalo Paniagua Javier wrote:
> El vie, 28 de 02 de 2003 a las 09:34, Carlos Alberto Cortez escribió:
> > System.Web.HttpException: File '/mono/xsp/server/' does not exist
> > in <0x000e4> 00 System.Web.StaticFileHandler:ProcessRequest
> > (System.Web.HttpContext)
> > in <0x001b6> 00 .ExecuteHandlerState:Execute ()
> > in <0x0005e> 00 .StateMachine:ExecuteState (IStateHandler,bool&)
> > 
> > Any idea ???
> 
> Some people using redhat (?) reported this, but I have not been able to
> reproduce it.
> 
> Try using the --root command line argument.
> 

I'm using RH as well and I have also have a problem but not whit this
AFAICT.

When I go to my root directory / with the browser (http://localhost) I
get this:

Error in '/mono' Application


Error
Description: Error processing request. 

Error Message: File '/var/www/html/mono/x.html' does not exist

Stack Trace: 
System.Web.HttpException: File '/var/www/html/mono/x.html' does not exist
in <0x000ff> 00 System.Web.StaticFileHandler:ProcessRequest (System.Web.HttpContext)
in <0x001b6> 00 .ExecuteHandlerState:Execute ()
in <0x0005e> 00 .StateMachine:ExecuteState (IStateHandler,bool&)

(In / I have an index.html file which it should hit and not mono/x.html.
Before installing the mod_mono RPM it used index.html in / without a
problem).

What I have done to solve this is creating an x.html in mono/ and in
that file simply redirect it to mono/index.aspx i.e.



http://localhost/mono/index.aspx";>



At least when going to localhost I get a nice Mono page with all the
examples now :) (But I'd prefer having my regular index.html file and
then a link to mono/index.aspx) ;)


/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Visual Basic 6 Support

2003-02-28 Thread Richard Torkar
On Fri, 2003-02-28 at 02:08, Pomerantz Daniel wrote:
> First of all, I'd like to thank every one who's working on this
> project!  Great idea, and great job!  I'd love to help out, but my
> knowledge of .NET is not up to par yet, which kindof brings me to my
> question:  Has there been any discussion of implementing a CIL compiler
> for Visual Basic as the language existed in MS VB 6.0?  Microsoft's
> changes to the VB language has put several developers at a disadvantage
> of having to practically learn an entirely new language.  There are a
> multitude of VB6 programmers out there who would love to get involved
> with .NET, but don't have the language skills yet.  Just as MS created
> j# to port Java, I see no reason why VB 6 couldn't also be compiled to
> MSIL.  I wouldn't expect system services such as COM/COM+ to be
> available, but with the limited OO ability of VB 6, it should be
> possible.  This is a project I would be willing and able to work on.
> 

http://www.go-mono.org/mbas.html


/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Problems with XSP

2003-02-28 Thread Richard Torkar
On Fri, 2003-02-28 at 10:51, Daniel Lopez wrote:
> Can you try http://127.0.0.1:8080/index.aspx directly ?
> 
** SNIPP **

No
Connection refused when attempting to contact 127.0.0.1:8080
(I turned of my fw completely)

http://127.0.0.1/mono/index.aspx (works though)
http://127.0.0.1:8080/mono/index.aspx (doesn't work)


/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Problems with XSP

2003-02-28 Thread Richard Torkar
On Fri, 2003-02-28 at 11:59, Gonzalo Paniagua Javier wrote:
> El vie, 28 de 02 de 2003 a las 11:48, Richard Torkar escribió:
> 
> > No
> > Connection refused when attempting to contact 127.0.0.1:8080
> > (I turned of my fw completely)
> > 
> > http://127.0.0.1/mono/index.aspx (works though)
> > http://127.0.0.1:8080/mono/index.aspx (doesn't work)
> 
> What does xsp.exe write when it starts listening? (root and virtual
> directory)
> 

I suppose you mean server.exe?
When I start it in console this comes out:

[root@/var/www/html/mono/bin]# mono server.exe
Listening on port: 8080
Root directory: /var/www/html/mono/bin
Virtual directory: /


/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Problems with XSP

2003-02-28 Thread Richard Torkar
On Fri, 2003-02-28 at 14:50, Gonzalo Paniagua Javier wrote:
> El vie, 28 de 02 de 2003 a las 12:57, Richard Torkar escribió:
> > I suppose you mean server.exe?
> > When I start it in console this comes out:
> > 
> > [root@/var/www/html/mono/bin]# mono server.exe
> > Listening on port: 8080
> > Root directory: /var/www/html/mono/bin
> > Virtual directory: /
> 
> That's the problem.
> 
> You must either provide a root directory (--root) or copy server.exe to
> /var/www/html/mono and run it there.
> 
> The same is required when you run it under MS runtime.
> 

Hmm, strange I get this error despite having the server.exe in both
places (they have been there all the time).

[root@/var/www/html/mono]# pwd
/var/www/html/mono
[root@/var/www/html/mono]# ls -l server.exe
-rwxr-xr-x1 apache   apache  38912 Feb 25 12:20 server.exe
[root@/var/www/html/mono]# ls -l bin/server.exe
-rwxr-xr-x1 apache   apache  38912 Feb 25 12:20 bin/server.exe


/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] how I can help

2003-03-01 Thread Richard Torkar
On Sat, 2003-03-01 at 06:20, Roger R. Smith wrote:
> I was wondering how I can contribute to the MONO project?
> Rog



http://www.go-mono.org/contributing.html
:)

/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] SWT (was:Write on linux, Run on Wondows?)

2003-03-01 Thread Richard Torkar
On Sat, 2003-03-01 at 02:29, Pablo Baena wrote:
> What is this SWT you talk about? I can't find information about it on
> the #Develop site.
> 

SWT I believe is the Standard Widget Toolkit this:
http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-swt-home/main.html


/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] regsvr32

2003-03-14 Thread Richard Torkar
On Fri, 2003-03-14 at 18:26, Paolo Molaro wrote:
> On 03/13/03 Daniel Grigoras wrote:
> > please, there is something similar with 
> > "regsvr32.exe MyProfiler.dll"(for Windows ),but in
> 
> I have no idea what regsvr32.exe does.

It's a tool you can use in Windows to register a global(?) dll/ocx
et.al.
I think it will disappear one day since we have the GAC and a different
way to do this? As you can see this is mostly guesses ;) 


/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] regsvr32

2003-03-14 Thread Richard Torkar
On Fri, 2003-03-14 at 19:51, Daniel Grigoras wrote:
> > I think it will disappear one day since we have the
> > GAC and a different
> > way to do this? 
> 
> Could you tell me what is the different method to do
> this.?(link, hint ..)
> 


Well in windows they now how the concept of a GAC - well they almost
always had that but it never really worked.

The GAC -> 
http://aspalliance.com/hrmalik/articles/2003/200301/20030101.aspx

There is a ton of stuff about the GAC on the net.


best,

richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Exceptions and error codes.

2003-03-21 Thread Richard Torkar
On Fri, 2003-03-21 at 04:10, Fergus Henderson wrote:
> On 20-Mar-2003, Thong Nguyen <[EMAIL PROTECTED]> wrote:
> > Exceptions can be much slower than using error codes, however, it
> > should be noted that the path of error is usually the least walked path.
> > Most of the time your code will not throw exceptions.  When exceptions
> > aren't thrown there is *very* little overhead.
> 
> Are you sure?  Have you measured it?
> 
> Note that the exception handling scheme used on Windows requires some
> overhead for "try" statements even in the case when no exception is thrown.

What? ^^ How can that be the case?

If the catch does not fire then the try should not be evaluated, right?
This is something I've missed completely.


/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Exceptions and error codes.

2003-03-21 Thread Richard Torkar
On Fri, 2003-03-21 at 09:29, Fergus Henderson wrote:
> On 21-Mar-2003, Richard Torkar <[EMAIL PROTECTED]> wrote:
> > On Fri, 2003-03-21 at 04:10, Fergus Henderson wrote:
> > > Note that the exception handling scheme used on Windows requires some
> > > overhead for "try" statements even in the case when no exception is thrown.
> > 
> > What? ^^ How can that be the case?
> > 
> > If the catch does not fire then the try should not be evaluated, right?
> > This is something I've missed completely.
> 
> The Win32 "structured exception handling" mechanism that Windows uses
> keeps a linked list of active exception handlers.  When entering a
> "try" statement, the code generated by the compiler needs to insert
> a new handler in the list, and to fill in a variety of fields that
> record information about the handler.  When exiting a "try" statement,
> the generated code needs to remove the handler from the list.

Good explanation, thanks!

/Richard
-- 
Ph.D. Student
Dept. of Informatics and Mathematics
HTU

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] mono 0.26 bug -- weird chars at beginning ofconsole session doesnt occur in Mint

2003-09-01 Thread Richard Torkar
On Sun, 2003-08-31 at 10:14, Jordan Bortz wrote:
> Whenever I run mono 0.26 on rhs 9.0 I get weird chars (3 of them) at the
> beginning of every console session...but if I run the same exe with mint it
> does not occur..is there a workaround or fix for this?
> Jordan


export LANG=en_US


/Richard
-- 
"UNIX is basically a simple operating system,
but you have to be a genius to understand the simplicity."

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] mono --optimize=??

2003-09-24 Thread Richard Torkar
On Wed, 2003-09-24 at 23:54, Hamza Karamali wrote:
> Hi,
> 
> Is there a way to specifically turn on more than one optimization using
> the --optimize= switch with mono?

I' not sure I understand you correctly but do you mean this?


   --optimize=MODE , -O=mode
MODE is a comma separated list of optimizations. They also allow
optimizations to be turned off by prefixing the  optimization name with
a minus sign.
 
For example, to enable all the optimization but dead code elimination
and inlining, you can use:
   -O=all,-deadce,-inline


/Richard
-- 
"UNIX is basically a simple operating system,
but you have to be a genius to understand the simplicity."

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] I kind of built nant 8.3 on RH9+Mono, but then ...

2003-10-02 Thread Richard Torkar
On Thu, 2003-10-02 at 05:04, A Rafael D Teixeira wrote:
> Well, I had to fiddle with the mininant makefile, had to copy/rename dll 
> from log4net-1.2.0-beta8, had to create an mininant.exe.config and make 
> changes in NAnt.exe.config (not yet on the source it is compiled), and NAnt 
> 8.3 runs, but:

> I had to keep NAnt.exe in /usr/lib/ with NAnt.*Tasks.dll assemblies or it 
> would not find the tasks (mono linux-friendly separation of exes and dlls, 
> plays havoc with NAnt autoconfigurable factories...). I may have missed some 
> setting that would help with that but...

Yes, the NAnt.*Tasks.dll must be kept in the same dir as NAnt.exe. Many
people use NAnt directly from its directory and don't install it
somewhere else. Just change PATH and library path.

> I had to uncomment code on resgentask.cs, for it to work correctly in linux, 
> as needed for next step

I didn't need that with NAnt-cvs. I did a _make_ after editing 
\src\NAnt.Console\NAnt.Console.exe.config.linux and changing
3 PATH directives. In the CVS version they now have much better support
for *NIX.

/Richard
-- 
"UNIX is basically a simple operating system,
but you have to be a genius to understand the simplicity."

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] cvs monodoc mdk9.1

2003-10-08 Thread Richard Torkar
On Wed, 2003-10-08 at 18:40, Eduardo Osorio Armenta wrote:
> hi, i downloaded cvs monodoc
> and 
> 
> after 
> 
> $monodoc> ./configure --prefix=/usr
> 
> for some extrange reason 
> 
> there is no reference to gtkhtml-sharp.dll
> 
> on monodoc/browser/Makefile 
> 

I sent an e-mail with a patch regarding this issue a few days ago on the
gtk-sharp list Somebody please apply

/Richard
-- 
"UNIX is basically a simple operating system,
but you have to be a genius to understand the simplicity."

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Can I use my application on LInux?

2003-10-15 Thread Richard Torkar
On Tue, 2003-10-14 at 18:35, Frederico Figueiredo wrote:
> Hi,
> 
> I didn't find a clear answer to my question on the FAQ so I will ask it 
> here.
> 
> I have build a C# / ASP.NET application. It is mainly composed by a 
> server console application (I run it as a service) that will be the 
> server application, and ASP.NET applications (client applications) that 
> communicate with the server to issue special requests, database access, 
> etc...
> 
> The question is: can I make it work in Linux? 

I would definitely give it a try if I were you.
Mono and especially the ASP.NET support has matured quite a lot in the
last few months.

Try it out and report any success/failures you stumble into. The people
on this list will surely give you a helping hand, when it comes to
answering your quetions.

/Richard
-- 
"UNIX is basically a simple operating system,
but you have to be a genius to understand the simplicity."

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Problem compiling from the CVS

2003-10-27 Thread Richard Torkar
On Mon, 2003-10-27 at 17:04, George Kodinov wrote:
> Hi,
> 
> We're in the process of final QA of a Virtuoso 
> (http://www.openlinksw.com/virtuoso) release including mono hosting.
> While our demos work with mono from Jun 2003 we would like to 
> incorporate the latest with the publicly available Virtuoso release.
> We would therefore appreciate any instructions or help/workarounds w/ 
> this compilation issue.

I did a tar.gz (including all my dll and exe files) that you can use
instead of the monocharge if you're in a hurry.

I compiled it today and everything seem to work.
http://java.thn.htu.se/~toor/gtk-sharp/another-moncharge.tar.gz
Disclaimer applies as always ;-)

best,

/Richard
-- 
Dept. of Informatics and Mathematics
University of Trollhättan/Uddevalla
P.O. Box 957, SE-461 29 Trollhättan
Sweden

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Problems with RH8 and Mono

2003-10-27 Thread Richard Torkar
On Mon, 2003-10-27 at 20:13, Kenneth Benson wrote:
> This is a fresh install of RH8, downloaded the corrected monocharge,
> checked out the CVS of mono and mcs.
> Mono compiles no problem, MCS is dieing in gdiplus due to a Cairo
> dependency. I pulled Duncan's Cairo files
> and installed them and now it dies at finding a file called
> cairo-xlib.h. Any clues? I cannot answer
> for a while but please feel free to help. *grin*

You use an old version of cairo - use a newer version.
http://primates.ximian.com/~duncan/cairo/redhat-9-i386/

/Richard
-- 


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


RE: [Mono-list] Problems with RH8 and Mono

2003-10-27 Thread Richard Torkar
On Mon, 2003-10-27 at 20:25, Kenneth Benson wrote:
> Use the RH9 even though I'm on a RH8 box? Just want to make sure.

Shouldn't be any problems as far as I can tell :) (haven't tried it
though).

I have absolutely *no* idea what so ever for why Duncan hasn't released
the source rpms. Several people have asked me where to find some of the
srpms but I have no idea.

Duncan?

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono Handbook PDF

2003-10-28 Thread Richard Torkar
On Tue, 2003-10-28 at 15:06, Johannes Roith wrote:
> Hello!
> 
> Don Frazier just dropped me a mail. He has created a PDF version of the
> Mono handbook.
> Quite nice.
> 
> You can get it here: http://www.jroith2.de/mh.pdf

gpdf can't open it, and acrobat reader under linux says the file is
damaged. Is it me or?

/Richard
-- 


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono Handbook PDF

2003-10-28 Thread Richard Torkar
On Tue, 2003-10-28 at 16:16, Richard Torkar wrote:
> On Tue, 2003-10-28 at 15:06, Johannes Roith wrote:
> > Hello!
> > 
> > Don Frazier just dropped me a mail. He has created a PDF version of the
> > Mono handbook.
> > Quite nice.
> > 
> > You can get it here: http://www.jroith2.de/mh.pdf
> 
> gpdf can't open it, and acrobat reader under linux says the file is
> damaged. Is it me or?

It might be me yes :)
I downloaded it 3 times before it worked. Strange...


/Richard
-- 


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] how to enable ICU / check it is enabled?

2003-10-29 Thread Richard Torkar
On Wed, 2003-10-29 at 12:33, D-Fuse wrote:
> How do I know for sure that mono picked up my ICU
> installation and included suppport for it? (because
> NAnt still doesn't work)

If you do an ./autogen.sh in mono/ the following should pop-up when it's
finished:

***SNIP***
configure: creating ./config.status
config.status: creating Makefile
config.status: creating include/Makefile
config.status: creating include/private/Makefile
config.status: creating doc/Makefile
config.status: executing depfiles commands
config.status: executing default commands
 
 
GC: included
ICU:yes. Version: 2.6
 
Now type `make' to compile


/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Monodoc crashes with Gnome pages

2003-10-29 Thread Richard Torkar
On Wed, 2003-10-29 at 21:23, Chris Seaton wrote:
> Monodoc crashes whenever I tree to read any pages in the Gnome node.
**SNIP**

What do you mean by "Gnome node"?

I tried clicking both Part 6 -> Chapter 22 in the Mono Handbook, and the
"Gnome Libraries" part and it doesn't crash with latest cvs.

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Determining the platform at compile and run time

2003-10-30 Thread Richard Torkar
On Thu, 2003-10-30 at 10:41, Jonathan Gilbert wrote:
> At 09:46 AM 29/10/2003 -0800, Jackson Harper jackson-at-ximian.com
> |mono-list subscription| wrote:
> >On Wed, 2003-10-29 at 09:33, Chris Seaton wrote:
> >> How do I know what OS my program is running on at run time? PlatformID
> >> contains no entry for any systems apart from Windows.
> >
> >http://www.nullenvoid.com/mono/wiki/index.php/DeveloperFaq?PHPSESSID=e94bd3
> 73fcad70a585f9bf5bb57ba841
> 
> This URL does not work for me in Internet Explorer:

Strange, it works for me. Anyway I think this is what Jackson wanted you
to see:


How can I tell dynamically what platform my code is running on?

This is one possible approach, contributed by Aleksey Demakov
([EMAIL PROTECTED])

  Type enumType = typeof (PlatformID);
  if (Enum.IsDefined (enumType, "Unix"))
  {
if (~Environment.OSVersion.Platform == (PlatformID) Enum.Parse (enumType, "Unix"))
  Console.WriteLine ("Platform: Mono on Unix");
else
  Console.WriteLine ("Platform: Mono on Win32");
  } else
Console.WriteLine ("Platform: .NET");

/Richard
-- 
Dept. of Informatics and Mathematics
University of Trollhättan/Uddevalla
P.O. Box 957, SE-461 29 Trollhättan
Sweden

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] About Mono.net???I have some doubts.....

2003-10-31 Thread Richard Torkar
On Thu, 2003-10-30 at 17:57, victorinfo wrote:
>   I would like to know if the code generated by 
> mono .net produce portability independence in different
> equipments. How i can install code produced in windows 
> mono.net for Unix or mobile systems?

Maybe this might answer your question?
http://www.go-mono.com/faq.html#compatibility

/Richard
-- 
Dept. of Informatics and Mathematics
University of Trollhättan/Uddevalla
P.O. Box 957, SE-461 29 Trollhättan
Sweden

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono plans for Sun Java Desktop

2003-11-02 Thread Richard Torkar
On Sat, 2003-11-01 at 18:11, James Brand wrote:
> Hi,
>   Are there any plans to extend the mono .NET framework to run on the new Sun
> Java Desktop?

What do you mean by "extend"?
SUN Java Desktop is afaict a SuSE distribution with some extra stuff.
If it can run on SuSE it should be able to run on SUN Java Desktop

/Richard


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Compiling from Source || Segmentation Fault

2003-11-03 Thread Richard Torkar
On Mon, 2003-11-03 at 16:16, Met @ Uber wrote:
> So I downloaded the tar`ed .28 release of Mono, Mcs, Gtk-sharp, and put
> them all in the same directory.  According to the README's I needed to
> install this before I could build/install a snapshot/CVS version.  So I
> ran configure/make/make install and everything seemed to work OK.  But
> the second I tried running a program "mono xsd.exe" it returns
> "Segmentation Fault".
> 
> Any ideas or suggestions?  I've been using the RPM's for quite some
> time, but I felt like reaping the benefits of continual
> development/improvement.  

Which Linux distribution are you using?

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Compiling from Source || Segmentation Fault

2003-11-03 Thread Richard Torkar
On Mon, 2003-11-03 at 16:27, Met @ Uber wrote:
> On Mon, 2003-11-03 at 10:33, Richard Torkar wrote:
> > On Mon, 2003-11-03 at 16:16, Met @ Uber wrote:
> > > So I downloaded the tar`ed .28 release of Mono, Mcs, Gtk-sharp, and put
> > > them all in the same directory.  According to the README's I needed to
> > > install this before I could build/install a snapshot/CVS version.  So I
> > > ran configure/make/make install and everything seemed to work OK.  But
> > > the second I tried running a program "mono xsd.exe" it returns
> > > "Segmentation Fault".
> > > 
> > > Any ideas or suggestions?  I've been using the RPM's for quite some
> > > time, but I felt like reaping the benefits of continual
> > > development/improvement.  
> > 
> > Which Linux distribution are you using?
> > 
> > /Richard
> 
> Fedora (RedHat).

This is "fixed" in cvs.
http://bugzilla.ximian.com/show_bug.cgi?id=49499

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Compiling from Source || Segmentation Fault

2003-11-03 Thread Richard Torkar
> > This is "fixed" in cvs.
> > http://bugzilla.ximian.com/show_bug.cgi?id=49499
> > 
> > /Richard
> > 
> Ah, well that sounds like it'll do it.  Thanks.  But can I install via
> CVS for the first time?  (I thought the README said that a release was
> required first time through).

Well, if you actually _read_ the bug report you'll find out what to do
;-)

i.e. echo 0 > /proc/sys/kernel/exec-shield

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] The Status of Mono

2003-11-04 Thread Richard Torkar
On Mon, 2003-11-03 at 12:57, Hamad, Amour wrote:
> Dear Sir/Madam;
> 
> Since the day I heard of mono I have been following up keenly . I
> am interested in using mono on Linux .
> 
> Please let us know about the current status. Is it already completed
> and can we start using it. Are there any development tools on linux
> that can be used.  
> 
> Many people are talking about the legal constraints Microsoft might
> pose in the future.
> 
> Please let us know about this.


Most, if not all, questions you are asking here are already answered in
the FAQ.
http://www.go-mono.com/faq.html

If you still have questions after reading the FAQ, please post them to
this list.

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] XAML: Application Markup Language

2003-11-04 Thread Richard Torkar
On Tue, 2003-11-04 at 10:23, Leen Toelen wrote:
> Hi all,
> 
> I just stumbled upon the msdn page of Longhorn XAML or Applications 
> Markup Language, a XUL lookalike. Is there any support for this planned 
> in mono?

Miguel (the Mono:: project manager), is writing up a summary about these
features and their role in future Mono as we speak.

He'll post this summary this week I presume, and add FAQ to the FAQ. ;-)

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Use of mcs sources

2003-11-11 Thread Richard Torkar
On Tue, 2003-11-11 at 16:05, Luciano Callero wrote:
> Look at this: http://csharp-studio.sourceforge.net/
> 
> maybe it is that you want to do. It does not have code-autocomplete, but it 
> have Syntaxys highligthing.

It uses gtksourceview.

It has e.g. syntax highlightning, print source code, margin handling and
tab handling.

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] DRAFT

2003-11-11 Thread Richard Torkar
On Tue, 2003-11-11 at 20:10, Lawrence E. Smithmier, Jr. wrote:
> Would clips like this enhance the accessability of Linux 
> to the Newbie (not that I am that awesome myself)?  
> Would it be worth community time/bandwidth to persue 
> similar clips for other topics?

I've put it on a high-speed server so we won't trash your server
Lawrence. I hope that is ok by you. If it is not - just tell me so and
I'll remove it immediately.

BTW, at the moment Xine et al. have some problems showing this clip.
More info here:
http://www.techsmith.com/products/studio/faqs/othercomputers.asp

Link:
http://java.thn.htu.se/~toor/misc/Mono_Redhat9_0.avi.bz2


/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] DRAFT

2003-11-11 Thread Richard Torkar
On Tue, 2003-11-11 at 21:52, Lawrence E. Smithmier, Jr. wrote:
> Richard:  That is great, thanks for the bandwidth assist.  

No problem.

> I will modify the encoding as soon as I get home from work to make it more 
> accessable *blush*.  If I had used a nice open source product to capture and 
> encode I wouldn't be having this problem.

Well actually this is the first time totem/xine can't play a video :)

Usually avi is no problem but this time it looks as if this particular
flavour was a bit hard to swallow for my poor Totem player :) Or is it
just my installation? I have the file installed in /usr/lib/win32 and it
tries to load it but gives me an error.

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] DRAFT

2003-11-12 Thread Richard Torkar
On Wed, 2003-11-12 at 02:29, Lawrence E. Smithmier, Jr. wrote:
> All,
> 
> I have fixed the encoding problem and produced a smaller file:
> http://csharp4u.com/mono/Mono_Redhat9_0.mov.bz2 is 8.8M and is a QuickTime 
> version of the same clip.  Again, apologies for the codec problem.


Works great using Totem (Nice video btw!).

I have placed the tar.bz2 on a server with a high-speed connection.

http://java.thn.htu.se/~toor/misc/Mono_Redhat9_0.mov.bz2


/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Clunked my previous mono install

2003-11-13 Thread Richard Torkar
On Thu, 2003-11-13 at 04:43, Clegg - Geoff Townsend wrote:
>Hello All,
> 
> I recently installed mono/wine from RPM successfully.
> 
>To make the story short, I attempted to compile the CVS version and it 
> was not successful. (It had an error involving corlib refrerencing 
> itself...?)
> 
>   Now mono says it can't find corlib.dll and I have verified it does not 
> exist.
> 
>   Which part of the src creates corlib? I have tried installing the RPM 
> again and compiliing the daily snapshots and neither create a corlib.dll.

Jackson posted a mail on this list regarding that issue the other day.
http://lists.ximian.com/archives/public/mono-list/2003-November/016887.html


/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono on ARM

2003-11-19 Thread Richard Torkar
On Wed, 2003-11-19 at 18:34, Mauro Parra Miranda wrote:
> Hi, 
> anyone has compiled mono on arm? I just got a tunsgen e and I'm
> interested in running mono there. 
> 
> Any ideas or links? 

Talk to Malte.
He's still working on the JIT for XScale.

http://amy.udd.htu.se/~malte/

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Nat and Miguel in Bangalore

2003-11-28 Thread Richard Torkar
** SNIP **
>  Btw, I want to share this photo of us last week, because 
> I find it
> hilarious:
> 
>   http://www.nat.org/2003/november/fear.gif

hehehe - "Fear and Loathing in Bangalore" soon?

Good one.

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] OpenOffice.org

2004-02-03 Thread Richard Torkar
On Mon, 2004-02-02 at 14:38, Tracy Barlow` wrote:
> Does anyone know how I might call OpenOffice.org 
> from a C# application, to access the OO.o DOM, 
> and program against it?

I don't know if this is what you mean, but here it is anyway:
http://udk.openoffice.org/cli/cli-uno.html

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Error compiling current cvs mono

2004-02-20 Thread Richard Torkar

This is a FYI,

I'm trying to compile mono on my gentoo laptop but unfortunately it
bails with:

gcc -g -O2 -fno-strict-aliasing -g -Wall -Wunused -Wmissing-prototypes
-Wmissing-declarations -Wstrict-prototypes -Wmissing-prototypes
-Wnested-externs -Wpointer-arith -Wno-cast-qual -Wcast-align
-Wwrite-strings -o .libs/mono main.o -Wl,--export-dynamic
-Wl,--export-dynamic  ./.libs/libmono.so -L/usr/lib -pthread
/usr/lib/libgthread-2.0.so /usr/lib/libgmodule-2.0.so -ldl
/usr/lib/libglib-2.0.so -licui18n -licuuc -licudata -lnsl -lpthread -lm
-Wl,--rpath -Wl,/home/torkar/mono/lib
./.libs/libmono.so: undefined reference to `___tls_get_addr'

I've made a "make clean" and re-run autogen.sh

I use:
Gentoo Linux
glibc-2.3.3_pre20040207
gcc (GCC) 3.3.2 20040119

The autogen.sh script says:
> checking for main in -lpthread... yes
> checking pthread.h usability... yes
> checking pthread.h presence... yes
> checking for pthread.h... yes
> checking for pthread_mutex_timedlock... yes
> checking for PTHREAD_MUTEX_RECURSIVE... ok
> checking for pthread_attr_setstacksize... yes
> checking for working __thread... yes


Any ideas?  

/Richard


signature.asc
Description: This is a digitally signed message part


Re: [Mono-list] monoDevelop (how do i get a beta copy) ?

2004-03-04 Thread Richard Torkar
On Thu, 2004-03-04 at 21:47, ted leslie wrote:
> I really need to start into monoDevelop.
> I am developing some web sites with mono and my employees are ok using
> MS visual .Net shit, but i have been using Linux on the desktop for 2+ 
> years now and
> I can't go back to touching a Windows box (for obvious reasons).
> So i would love to try monoDevelop  even if it was pretty buggy and beta.
> Anyone know how i can get a copy (like today?).
> There is notes in CVS about SVN but all require a keygen, and I don't 
> need to commit work,
> just grab a copy, and I don't want to go through a SVN install and a 
> keygen, if someone can just email me
> a copy or direct me on how to get it - please.

A somewhat old snapshot can be found here:
http://devservices.go-mono.com/MonoDevelop/

Version 0.1 will be released soon.

/Richard


signature.asc
Description: This is a digitally signed message part


Re: [good] Re: [Mono-list] monoDevelop (how do i get a beta copy) ?

2004-03-04 Thread Richard Torkar
On Thu, 2004-03-04 at 22:23, ted leslie wrote:
> Great  but ... for deps i might be stuck on not having cvs to get 
> gtksourceview-sharp..
> is it available anywhere for a quick download? (sorry down know about 
> Red Carpet or their channels).
> 
> 
>  From README on monoDev ...
> 
> gtksourceview >= 0.7
> gtksourceview-sharp from mono's cvs
> (gtksourceview is available on Red Carpet,
> on many of the OpenCarpet channels.)

It's available on the mono cvs as well.
http://www.go-mono.com/ccvs.html

The name of the module is gtksourceview-sharp I believe.


/Richard


signature.asc
Description: This is a digitally signed message part


Re: [Mono-list] ./.libs/libmono.so: undefined reference to `___tls_get_addr' [Compiling mono from cvs]

2004-03-07 Thread Richard Torkar
On Sun, 2004-03-07 at 12:20 +0100, Oliver Leischner wrote:

> Hello!
> I copied the latest mono-sources from cvs, but complation break with errors. 
> I linked libgc (from cvs too) in the mono-src-dir and configured the 
> mono-sources (./configure --prefix=/usr/local/mono --with-gc=included). 
> Configure exists without any error. 
> 
> While running "make" the following error occures. 
> Can anybody help me? Thanks!

** SNIP**

> -ldl /usr/lib/libglib-2.0.so -licui18n -licuuc -licudata -lnsl -lpthread -lm 
> -Wl,--rpath -Wl,/usr/local/mono/lib
> ./.libs/libmono.so: undefined reference to `___tls_get_addr'
> collect2: ld returned 1 exit status
> make[3]: *** [mono] Error 1


This is a known problem, and usually(?) happens on Gentoo.

Run autogen.sh again in the mono dir but this time using the following
flag:
--with-nptl=no

/Richard


signature.asc
Description: This is a digitally signed message part


[Mono-list] Compilation error in System.Security.Cryptography.Xml (CVS)

2004-03-09 Thread Richard Torkar

This is probably for Atsushi?

System.Security.Cryptography.Xml/KeyInfoX509Data.cs(204) error CS0029:
Cannot co nvert implicitly from `byte[]' to `System.Xml.XmlElement'
System.Security.Cryptography.Xml/XmlDsigXsltTransform.cs(99) warning
CS0618: Met hod
`System.Xml.Xsl.XslTransform.Load(System.Xml.XPath.IXPathNavigable)' is
obso lete: `You should pass evidence.'
System.Security.Cryptography.Xml/XmlDsigXsltTransform.cs(102) warning
CS0618: Me thod
`System.Xml.Xsl.XslTransform.Load(System.Xml.XPath.IXPathNavigable)' is
obs olete: `You should pass evidence.'
System.Security.Cryptography.Xml/XmlDsigXsltTransform.cs(111) warning
CS0618: Me thod
`System.Xml.Xsl.XslTransform.Transform(System.Xml.XPath.IXPathNavigable,
Sy stem.Xml.Xsl.XsltArgumentList, System.IO.Stream)' is obsolete: `You
should pass XmlResolver to Transform() method'
Compilation failed: 1 error(s), 3 warnings
make[2]: *** [../../class/lib/System.Security.dll] Error 1


/Richard


signature.asc
Description: This is a digitally signed message part


Re: [Mono-list] ARM platform

2004-03-10 Thread Richard Torkar
On Wed, 2004-03-10 at 13:03 -0500, Miguel de Icaza wrote:

> Hello,
> 
> > Im really impressed by this project ! It rocks ! However , i'd like 
> > to know if it can be ported onto embedded devices like ARM etc. I checked 
> > out one site where Mono / Glib / Gtk were IPKG'ed into compact files , but 
> > still they accumulate to over 5MB  Any workarounds here ?
> > Can this be brought down to under 3MB , so it can be compared to QT 
> > embedded.
> 
> It has not been done as far as I can tell.  But someone has to rebuild
> things to match the size of your system.
> 
> You could also remove all of the libraries and DLLs that you do not
> neet.

That is work that I and Malte has started.
http://amy.udd.htu.se/~malte/mono/tamarin/

It's moving slowly ahead :) Anyway Malte is finishing the arm port as we
speak and will surely contact Paolo regarding inclusion into main cvs
soon.

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Problems with Serialisation

2004-03-19 Thread Richard Torkar
On Thu, 2004-03-18 at 13:03 +0100, Michael Kämpf wrote:

> I tried the following code example. It works fine using the Microsoft
> Csharp-Compiler, but doesn't under Mono

* SNIP *

I can compile it with my CVS-version of mcs.
But I can't run it on the other hand.


Unhandled Exception: System.InvalidOperationException: Invalid type:
TestNS.ExponentialDistribution
in <0x00142>
System.Xml.Serialization.XmlSerializationWriter:WriteTypedPrimitive
(string,string,object,bool)
in <0x0027f>
System.Xml.Serialization.XmlSerializationWriterInterpreter:WriteObject
(System.Xml.Serialization.XmlTypeMapping,object,string,string,bool,bool,bool)
... and so on...


/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] ICU

2004-03-19 Thread Richard Torkar
On Thu, 2004-03-18 at 12:47 -0500, Abram Gillespie wrote:

> Anyone know what's going on with the ICU website
> (http://oss.software.ibm.com/icu/); it's been down for two days?  I'm eager
> to get monodevelop up and running but can't w/o this package.  Might someone
> post the latest tarball for download?

Someone posted this link to this list the other day:

http://fresh.t-systems-sfr.com/unix/src/misc/icu-2.8.tgz

I have _no_ idea who is providing that package!

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Unable to build Mono 0.31

2004-03-22 Thread Richard Torkar
On Mon, 2004-03-22 at 11:40 +, Rich Wareham wrote:

> On Monday 22 Mar 2004 09:04, Tracy Barlow wrote:
> > I get the following errors when attempting to make Mono 0.31
> 
> ...
> 
> > /usr/lib/libgthread-2.0.so /usr/lib/libgmodule-2.0.so -ldl
> > /usr/lib/libglib-2.0.so -licui18n -licuuc -licudata -lnsl -lpthread -lm
> > -lrt -Wl,--rpath -Wl,/usr/local/lib
> > ./.libs/libmono.so: undefined reference to `___tls_get_addr'
> > collect2: ld returned 1 exit status
> 
> I had this error crop up when I made an ebuild for 0.31 from the 0.30.1 
> version in Gentoo. It appears that Mono now does different things if it 
> thinks NPTL is enabled. Calling ./configure --without-nptl fixed it for me.

The "correct" way to "fix" this problem is to compile glibc using the
nptl flag, i.e. 

USE="nptl"

and then use the 2.6.* kernels in Gentoo.

Maybe put this in the FAQ or something, Paolo?

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] File::Copy

2004-03-29 Thread Richard Torkar
On Mon, 2004-03-29 at 14:48 +0100, yathish s wrote:

> Hi ,
> 
> I'm planning to code the method System.IO.File::Copy.
> If anybody else is doing this please let me know.

Isn't it already implemented?
public static void Copy (string sourceFilename, string destFilename)
public static void Copy (string src, string dest, bool overwrite)

can be found in mcs/class/corlib/System.IO/File.cs

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] C# versus IronPython: speed and scalability

2004-04-07 Thread Richard Torkar
On Wed, 2004-04-07 at 00:51 +0200, László Monda wrote:
> Hi list,
> 
> I'm very interested about the difference of the execution speed of
> IronPython versus C#. I know IronPython is not out yet, but you may
> have some estimation about this issue. I suspect C# is faster, but
> how many times?
> 
> My second question: is it recommended to develop robust applications
> in IronPython (considering its speed)?

Considering that it might not even be released, I for one would not
focus on IronPython at all...

Quoted from http://www.xml.com/pub/a/2004/03/31/pycon.html:

"Alas, Hugunin is not releasing this implementation, which he calls
IronPython, until (or unless?) he can figure out how to complete it,
which I took to mean until or unless he can figure out how to have that
development funded. That's too bad, especially since it means that his
performance claims cannot be duplicated, and others who are interested
cannot contribute to IronPython. One of the main areas of performance
increase in IronPython is in user defined functions, which can be many
times faster in IronPython than in CPython."

Best,

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


RE: [Mono-list] Windows installer - Take 3, a.k.a. "this should work for everyone"

2004-05-10 Thread Richard Torkar
On Mon, 2004-05-10 at 18:54 +0900, Nick D wrote:
> >| -Original Message-
> >| From: [EMAIL PROTECTED] [mailto:mono-list-
> >| [EMAIL PROTECTED] On Behalf Of Gonzalo Paniagua Javier
> >| Sent: Monday, May 10, 2004 6:35 AM
> >| To: Monkey Business
> >| Subject: [Mono-list] Windows installer - Take 3, a.k.a. "this should work
> >| for everyone"
> >| 
> >| Hi again,
> >| 
> >| I've uploaded a new windows installer to
> >| http://primates.ximian.com/~gonzalo/tmp/mono-0.91-win32-4.exe
> 
> Sorry, it still doesn't work for me.
> 
> I get this for running mono, which works:
> 
> $ mono --version
> Mono JIT compiler version 0.91, (C) 2002-2004 Novell, Inc and Contributors.
> www.go-mono.com
> TLS:   normal
> GC:System Boehm (no typed GC available)
> SIGSEGV  : normal
> Globalization: ICU
> 
> But running mcs I get this:
> 
> $ mcs
> The assembly mscorlib.dll was not found or could not be loaded.
> It should have been installed in the
> `c:/cygwin/home/Propietario/go-mono/windows
> wizard/install/lib' directory.

I've filed this as a bug:
http://bugzilla.ximian.com/show_bug.cgi?id=58260
and notified gonzalo.

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] More getting started

2004-05-04 Thread Richard Torkar
On Tue, 2004-05-04 at 12:49 -0500, Collin Starkweather wrote:
** SNIP **
> Thanks!  I think some more specific questions would be in order.  Can
> someone just give me the process to create, compile, and execute a
> "Hello World"?  


$ cat myfile.cs
using System; 
class X
{
public static void Main ()
 {
  Console.WriteLine ("Hello World");
 }
}

$ mcs lalle.cs
Compilation succeeded
$ mono lalle.exe
Hello World
$

> I found documentation on MonoDevelop, but a google of vs.net only turned
> up http://www.vs.net.  Is it a Win or Lin IDE?  Where do I find it?  And
> can anyone offer recomendations for an IDE based on their experience or
> the word on the street?

VS.NET is Visual Studio .NET by Microsoft. www.microsoft.com is the
place to look for VS.NET.

MonoDevelop is what I like and use. www.monodevelop.com

> Also, I emerged the Gentoo package, and I see the following binaries:
> 
>   freak root # qpkg --list mono | grep bin

** Long listing snipped **

> What are the *.exe files and how are they used?  

exe files are the "binaries".

"mono myfile.exe" executes the myfile.exe.
If you emerged it through gentoo then you should have read what to do if
you only want to type: "./myfile.exe" instead of always needing to type
"mono" in front of every *.exe. If you missed it go read the .ebuild for
mono-0.31 please (look at the end of that file).

> And one more general question.  Can Mono apps compiled on Linux be used
> on Windows in the same way that bytecode can be used across platforms
> with Java?

Well the simple answer is yes... It depends on how the binary was made,
i.e. if it has any dependencies to libraries or parts of the .NET
framework which is not yet implemented by Mono. But your Hello World
example should work ;-)

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] More getting started

2004-05-04 Thread Richard Torkar
On Tue, 2004-05-04 at 20:08 +0200, Richard Torkar wrote:
> On Tue, 2004-05-04 at 12:49 -0500, Collin Starkweather wrote:
> ** SNIP **
> > Thanks!  I think some more specific questions would be in order.  Can
> > someone just give me the process to create, compile, and execute a
> > "Hello World"?  
> 
> 
> $ cat myfile.cs

Obviously this should read lalle.cs . *gnnn*

> using System; 
> class X
> {
> public static void Main ()
>  {
>   Console.WriteLine ("Hello World");
>  }
> }
> 
> $ mcs lalle.cs
> Compilation succeeded
> $ mono lalle.exe
> Hello World
> $
> 
> > I found documentation on MonoDevelop, but a google of vs.net only turned
> > up http://www.vs.net.  Is it a Win or Lin IDE?  Where do I find it?  And
> > can anyone offer recomendations for an IDE based on their experience or
> > the word on the street?
> 
> VS.NET is Visual Studio .NET by Microsoft. www.microsoft.com is the
> place to look for VS.NET.
> 
> MonoDevelop is what I like and use. www.monodevelop.com
> 
> > Also, I emerged the Gentoo package, and I see the following binaries:
> > 
> >   freak root # qpkg --list mono | grep bin
> 
> ** Long listing snipped **
> 
> > What are the *.exe files and how are they used?  
> 
> exe files are the "binaries".
> 
> "mono myfile.exe" executes the myfile.exe.
> If you emerged it through gentoo then you should have read what to do if
> you only want to type: "./myfile.exe" instead of always needing to type
> "mono" in front of every *.exe. If you missed it go read the .ebuild for
> mono-0.31 please (look at the end of that file).
> 
> > And one more general question.  Can Mono apps compiled on Linux be used
> > on Windows in the same way that bytecode can be used across platforms
> > with Java?
> 
> Well the simple answer is yes... It depends on how the binary was made,
> i.e. if it has any dependencies to libraries or parts of the .NET
> framework which is not yet implemented by Mono. But your Hello World
> example should work ;-)
> 
> /Richard
> 
> ___
> Mono-list maillist  -  [EMAIL PROTECTED]
> http://lists.ximian.com/mailman/listinfo/mono-list

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] gentoo specific: ebuilds for mono and related packages

2004-05-05 Thread Richard Torkar

As Gentooers might have seen, Peter (a.k.a. latexer) et al., have kindly
provided ebuilds for mono and related packages.

However since the GAC is now in place there might be some problems doing
a simple "emerge -uDv world". If you encounter a compile-time error then
try to unmerge the old version first.

I encountered this problem with the gecko-sharp-0.2.ebuild, but a simple
"emerge unmerge gecko-sharp" fixed it (as suggested by Peter).

This is posted to the list only as a FYI - if people will search the
archive.

/Richard

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono Installation issue

2004-05-31 Thread Richard Torkar
On Tue, 2004-06-01 at 00:20 +0200, Fabrício Santos wrote:
> Viva  todos,
> 
> Maybe this is a way too basic question to place here... But how do I get out
> of this loop? :-/
> 
> [EMAIL PROTECTED] mono]# rpm -i mono-core-0.91-0.ximian.7.3.i386.rpm
> error: Failed dependencies:
> mono-posix = 0.91-0.ximian.7.3 is needed by
> mono-core-0.91-0.ximian.7.3
> [EMAIL PROTECTED] mono]# rpm -i mono-posix-0.91-0.ximian.7.3.i386.rpm
> error: Failed dependencies:
> mono-core = 0.91-0.ximian.7.3 is needed by
> mono-posix-0.91-0.ximian.7.3


rpm -Uvh *.rpm
should fix it. You need to give rpm all the packages it needs.


/Richard
-- 


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Just upset, but not angry

2004-06-07 Thread Richard Torkar
On Mon, 2004-06-07 at 08:00 +0200, KiOrKY wrote:
> ive not post it repeatly, and i was answering ton jackson. 
> whn i ask mono community about it, its just the "only" thing 
> i request to it to be implemented (transactions) because industrials 
> wanty to have these transactions. if mono dont implement it, it could 
> be discredited !
*SNIP*

And as Paolo told you, he and many of us are well aware of this fact.
But unfortunately we can't do everything at once. 

If you know a company or some individuals that are interested in
implementing this feature then please tell us.

best,

/Richard



___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


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

2004-06-07 Thread Richard Torkar
On Mon, 2004-06-07 at 09:28 +0200, KiOrKY wrote:
*SNIP*
> and is there an util like wsdl.exe on mono?

Yes.

tux ~$ ls /usr/bin/wsdl*
/usr/bin/wsdl  /usr/bin/wsdl.exe


/Richard


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Compiling muine-0.6.2

2004-06-07 Thread Richard Torkar
On Mon, 2004-06-07 at 12:59 -0400, Archit Baweja wrote:
> Hey
> 
> So I threw away my Mono Beta 1 tarball install on my FC2 box, and installed
> the Mono Beta 2 RPMs from they yum repository. Now when I try and compile
> muine-0.6.2, it complains of not finding mono.pc and hence mono >= 0.xx.
*SNIP*

Do you have mono.pc installed?

/Richard
-- 


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Using rug to install Mono

2004-06-12 Thread Richard Torkar

Reply inline.

On Sat, 2004-06-12 at 14:18 -0700, John Bailo wrote:
> The new mono web site says that rug is the preferred way to install mono.
> 
> I downloaded and installed the command line version and subscribed to Mono.
> 
> I have previously installed mono 'the hard way' one rpm at a time.. but after 
> running the command
> 
> rug install mono
> 
> This is the result -- does that mean that it didn't install the right version 
> or what ?
> 
> Using mono 0.31-1.ximian.8.1 from the 'mono' channel
> The following requested packages will be installed:
>   mono 0.31-1.ximian.8.1 (mono)

This is an old version.

> 1 packages will be installed.
> This is a 8.62M download.
> Do you want to continue? [y/N] y
> Download complete
> Verifying mono
> There is no package signature for mono; package will be installed because user 
> is trusted
> Preparing Transaction
> Transaction failed: Unable to complete RPM transaction:
> file /etc/mono/config from install of mono-0.31-1.ximian.8.1 conflicts with 
> file from package mono-core-0.91-0.ximian.8.3

Do you have a newer rpm of mono installed? I would say yes :-)

/Richard
-- 
Dept. of Computer Science
University of Trollhättan/Uddevalla
P.O. Box 957
SE-461 29 Trollhättan
Sweden

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] I have a problem with mono

2004-06-18 Thread Richard Torkar
On Thu, 2004-06-17 at 07:27 -0700, Lazar Mihai wrote:
> I'm trying to install mono on fedora core ...
> 
> by the way I am new to Linux 
> 
> and I can't install the rpm ... and the source doesn't work ...
> I want to know step by step what I should do .. to compile the source and run mono 
> 
> please ... I want to know all the commands and the directories that I have to visit  
> ...

It isn't much help to us if you can't tell us what's wrong.

First of all,

download the rpms and then do an "rpm -Uvh *.rpm" in the directory where
you downloaded the rpms. Does it work? If not, what is the error
message?

/Richard


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] MonoDoc

2004-06-20 Thread Richard Torkar
On Sun, 2004-06-20 at 13:02 +0200, Martin Olsson wrote:
> Hi,
> 
> 
> I've just downloaded the MonoDoc package. How can I see the actual 
> documentation? Surely there is some normal way of viewing it, without 
> installing an entire webserver locally etc?

Well, monodoc is a documentation browser. You can also use the "browser"
for entering changes and adding stuff to the documentation. That way you
can help out in documenting everything.

Here's a screenshot of monodoc showing some documentation:
http://java.thn.htu.se/~toor/md.png

/Richard
-- 


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Re: prj2make

2006-01-27 Thread Richard Torkar


On Jan 27, 2006, at 18:15 ,  wrote:


Hi list,

Anybody have quick pointers to the process/steps of converting VS2003
proj files to make files? Any help appreciated.


Dunno if this fits your current needs but:
http://forge.novell.com/modules/xfmod/project/?prj2make-sharp

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


Re: [Mono-list] About Persistence Framework

2006-02-24 Thread Richard Torkar
On Feb 24, 2006, at 11:38 , Gayan Perera wrote:Dear Frnds,i'm looking for better persistence framework for my C# Project.i came across OJB.NET and NHibernate , since i haven't use niether of those,i would appreciate if some one tells me which is the best to use, who have experience with one of those. Have you looked at db4o? I can definitely recommend it! db4o supports Java and C# and they have Mono packages too!http://www.db4o.com/Richard___
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list