[Mono-list] SOAP implementation for mono

2004-10-18 Thread Boehl Michael
i am looking for a soap implementation (like axis or wse) working under mono.
or did somebody use the c++ implementation axis with dllimport in mono?

michael


.

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


Re: [Mono-list] PDF Creaation Library for Mono

2004-10-18 Thread Miguel de Icaza
 What I would like to know is how did you get iTextSharp to compile under
 Mono. I've used it and compiled it successfully under .NET, but never
 Mono.

Please provide me with the location of where you got the software from,
and what you have done to compile it.

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


[Mono-list] RE problem (reposting)

2004-10-18 Thread hammett
(Sorry if it appears more than once, but it's been 24h hours and my message 
hasnt appeared)

Hello,
I'm the author of DynamicProject, a simple project which aims provide java
like proxies for CLI. One of users reported that it's not working on Mono
with the error
** ERROR **: file class.c: line 2820 (mono_ldtoken): should not be reached
I have tested it against Mono 1.0.2
The DynamicProxy only generates a dynamic assembly on the fly: (pseudo code)
interface IMyInterface
 void DoSomething()
 int Calc( int x, int y )
end
---
class MyProxy : IMyInterface
 IInvocationHandler handler
 def MyProxy( IInvocationHandler handler )
   this.handler  = handler
 end
 def override void DoSomething()
   MethodInfo m = GetMethodFromHandle( ldtoken )
   handler.Process( this, m )
 end
 def override int Calc( int x, int y )
   MethodInfo m = GetMethodFromHandle( ldtoken )
   return handler.Process( this, m, x, y )
 end
end
You can download the code from the repository at
https://svn.apache.org/repos/asf/avalon/trunk/central/laboratory/avalon-net/DynamicProxy
Looking forward to hearing back from you.
Cheers
hammett
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Installing Mono; what steps...

2004-10-18 Thread gordingin
Hello all,

I am new to Mono so you will all be sick of me soon, I will be posting
many questions I am sure ;) and here is my first. I installed SuSE
Personal 9.1 on my laptop. Love it (and that is saying something since
I have 0.001 years experience with Linux and 13+ years with Windows).
So I download the 20+ mb zip file. What do I install first? Are there
install dependencies? Does it matter?

Thanks
Ralph Krausse


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


Re: [Mono-list] Installing Mono; what steps...

2004-10-18 Thread Everaldo Canuto
Hi,

Unpack this file (mono-all.zip), this zip file contain
some rpm files.
To install this RPMS type this on cosole window:

rpm -i --force *.rpm

this install all mono rpms on your distribution.


Everaldo.


 --- [EMAIL PROTECTED] escreveu: 
 Hello all,
 
 I am new to Mono so you will all be sick of me
 soon, I will be posting
 many questions I am sure ;) and here is my first. I
 installed SuSE
 Personal 9.1 on my laptop. Love it (and that is
 saying something since
 I have 0.001 years experience with Linux and 13+
 years with Windows).
 So I download the 20+ mb zip file. What do I install
 first? Are there
 install dependencies? Does it matter?
 
 Thanks
 Ralph Krausse
 
 
 ___
 Mono-list maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/mono-list
  





___ 
Yahoo! Acesso Grátis - Internet rápida e grátis. Instale o discador agora! 
http://br.acesso.yahoo.com/
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] KDE or Gnome

2004-10-18 Thread gordingin
I realize that Gnome is required to build Mono projects but must you run
gnome to write the mono code in MonoDevelop? Could I use KDE?

thanks
Ralph

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


[Mono-list] localtime in mono ?

2004-10-18 Thread Joerg Anders
Hi all!
Is there in mono a possibility to get the system time 
like  the time(time_t *t) call returns in C ?

Or (still better) is there in mono a possibility
the determine a time difference between - say - 2 sequent
function calls ?
--
J.Anders, Chemnitz, GERMANY ([EMAIL PROTECTED])
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] localtime in mono ?

2004-10-18 Thread Juan Cristóbal Olivares
DateTime.Now ?


- Original Message - 
From: Joerg Anders [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, October 18, 2004 2:37 PM
Subject: [Mono-list] localtime in mono ?


 Hi all!
 
 Is there in mono a possibility to get the system time 
 like  the time(time_t *t) call returns in C ?
 
 Or (still better) is there in mono a possibility
 the determine a time difference between - say - 2 sequent
 function calls ?
 
 -- 
 J.Anders, Chemnitz, GERMANY ([EMAIL PROTECTED])
 ___
 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] Ack: localtime in mono ?

2004-10-18 Thread Joerg Anders
On Mon, 18 Oct 2004, Juan Cristóbal Olivares wrote:
DateTime.Now ?

So simple! Thank you!
--
J.Anders, Chemnitz, GERMANY ([EMAIL PROTECTED])

[Mono-list] Installing Mono; what steps... x2

2004-10-18 Thread gordingin
Thanks for the help. I ran the rpm  *.rpm and got a list of
dependencies that failed. Using YaST I install most of them, I am stuck on
only 2 of them. I installed Wine using YaST but the version YaST showed me
was to low so the rpm install failed on that. Also, it is asking for
libpopt.so.0, YaST doesn't show that library in the search so I can I get
that? I am new so I hope I didn't cross a Mono/Suse install boundry...

Thanks
Ralph

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


[Mono-list] Installing Mono; what steps... x3

2004-10-18 Thread gordingin
Ok I found and install both libraries buy the rpm -i ... *.rpm command
line still complains about the wine dependency even though I did install
the correct version. 1 left Any help

pls pls pls

TIA
Ralph


 Thanks for the help. I ran the rpm  *.rpm and got a list of
 dependencies that failed. Using YaST I install most of them, I am stuck on
 only 2 of them. I installed Wine using YaST but the version YaST showed me
 was to low so the rpm install failed on that. Also, it is asking for
 libpopt.so.0, YaST doesn't show that library in the search so I can I get
 that? I am new so I hope I didn't cross a Mono/Suse install boundry...

 Thanks
 Ralph

 ___
 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


Re: [Mono-list] Installing Mono; what steps... x3

2004-10-18 Thread gordingin
Darn it... I installed wine-develop. e... I install the correct lib
and now mono installed. Does it add anything to the menus?

 Ok I found and install both libraries buy the rpm -i ... *.rpm command
 line still complains about the wine dependency even though I did install
 the correct version. 1 left Any help

 pls pls pls

 TIA
 Ralph


 Thanks for the help. I ran the rpm  *.rpm and got a list of
 dependencies that failed. Using YaST I install most of them, I am stuck
 on
 only 2 of them. I installed Wine using YaST but the version YaST showed
 me
 was to low so the rpm install failed on that. Also, it is asking for
 libpopt.so.0, YaST doesn't show that library in the search so I can I
 get
 that? I am new so I hope I didn't cross a Mono/Suse install boundry...

 Thanks
 Ralph

 ___
 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 maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


RE: [Mono-list] PDF Creaation Library for Mono

2004-10-18 Thread Rob . Tillie
I believe it's this one:
http://itextsharp.sourceforge.net/

Greetz,
-- Rob.

 -Original Message-
 From: Miguel de Icaza [mailto:[EMAIL PROTECTED]
 Sent: Monday, October 18, 2004 2:40 PM
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: Re: [Mono-list] PDF Creaation Library for Mono
 
  What I would like to know is how did you get iTextSharp to compile under
  Mono. I've used it and compiled it successfully under .NET, but never
  Mono.
 
 Please provide me with the location of where you got the software from,
 and what you have done to compile it.
 
 Miguel
 ___
 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] MonoDoc fails to run

2004-10-18 Thread gordingin
I just installed Mono and when I run MonoDoc, the frame of the window
appears (no splash screen appears, I read it has one) and then disappears.
No errors. Anyone seen this? Is there a log I could read to see what has
happened?

thanks
Ralph

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


Re: [Mono-list] Installing Mono; what steps... x3

2004-10-18 Thread Paul
Hi,

 Darn it... I installed wine-develop. e... I install the correct lib
 and now mono installed. Does it add anything to the menus?

Remember though, Winelib is no longer used for winforms - the new way of
doing winforms is a hell of a lot better

http://www.all-the-johnsons.co.uk/mono/mono-compiling.html for details

TTFN

Paul
-- 
Trust me, I know what I'm doing - Det. Sledgehammer


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


Re: [Mono-list] KDE or Gnome

2004-10-18 Thread Amish Munshi
On Mon, 18 Oct 2004 10:05:23 -0700 (PDT), [EMAIL PROTECTED]
[EMAIL PROTECTED] wrote:
 I realize that Gnome is required to build Mono projects but must you run
 gnome to write the mono code in MonoDevelop? Could I use KDE?


You can use KDE to develop in monodevelop, you only need to install
the required libraries.
I personally prefer ICEWM, it gives me enough memory to run
applications, it is gtk based so it renders most of the GTK
applications much bettter than KDE (Evolution, GAIM).

Infact if yo use only mono and mcs you can use the terminal :-) .
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list