RE: [Mono-list] Visual Studio and non-Windows deployment

2006-05-10 Thread Bradley, Peter
At the risk of blowing my own trumpet:   http://www.peredur.uklinux.net/msc/   This document deals with some cross-platform issues.   Cheers   Peter     From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Glen Farrell Sent: 10 May 2006 02:09 To: mono-list@lists

Re: [Mono-list] Visual Studio and non-Windows deployment

2006-05-10 Thread Jonathan Pryor
On Tue, 2006-05-09 at 19:08 -0600, Glen Farrell wrote: > there's currently no Mono IDE for a Windows environment? Correct, there is no Mono-specific IDE on Windows. However, there is SharpDevelop, which MonoDevelop was originally ported from: http://www.icsharpcode.net/OpenSource/SD > An

Re: [Mono-list] Visual Studio and non-Windows deployment

2006-05-10 Thread Francisco T. Martinez
Glen Farrell wrote: > Hi, I'm just looking into Mono, and trying to get a handle on exactly > what is there, and what I need to do. First of all, I gather there's > currently no Mono IDE for a Windows environment? I did glance at the > MonoDevelop page, but it said it's only for Linux and Mac - is

Re: [Mono-list] Visual Studio and non-Windows deployment

2006-05-10 Thread Brian Pickles
Hi,There is another IDE - X-Develop from www.omnicore.com but it is not free. Currently there is a free beta available to download.Brian On 5/10/06, Glen Farrell <[EMAIL PROTECTED]> wrote: Hi, I'm just looking into Mono, and trying to get a handle on exactly what is there, and what I need t

[Mono-list] Mono and Microsoft.SharePoint

2006-05-10 Thread John M. Brown
Has anyone ever tried to compile an application that has a reference to Microsoft's Microsoft.SharePoint.dll (for use with Sharepoint Portal Server)? I keep getting the following error: ** (/opt/mono-1.1.13.4/lib/mono/1.0/mcs.exe:16442): WARNING **: The following assembly referenced from /home/ra

Re: [Mono-list] Mono and Microsoft.SharePoint

2006-05-10 Thread Kornél Pál
Mono has no Microsoft.SharePoint.dll. And you cannot use Microsoft's one on Linux because SharePoint uses COM interop with it's own native Win32 DLLs. Kornél - Original Message - From: "John M. Brown" <[EMAIL PROTECTED]> To: Sent: Wednesday, May 10, 2006 4:45 PM Subject: [Mono-list]

RE: [Mono-list] Problem getting Sample Web Services to work On FedoraCore 4

2006-05-10 Thread Gonzalo Paniagua Javier
On Tue, 2006-05-09 at 10:46 -0700, Dana Epp wrote: > As a follow up to this, I have just upgraded to 1.1.15 to see if this > would make a difference. > > OS: Fedora Core 4 with 2.6.15-1.1831_FC4 kernel > Mono: 1.1.15-0.novell > Mod_mono: 1.1.14-0.fedora4.novel > XSP: 1.1.15-0.novell > > I stil

Re: [Mono-list] Mono and Microsoft.SharePoint

2006-05-10 Thread Miguel de Icaza
Hello, > Has anyone ever tried to compile an application that has a reference to > Microsoft's Microsoft.SharePoint.dll (for use with Sharepoint Portal > Server)? You need to have any referenced assemblies installed in Mono's GAC. That being said, I have my doubts that just copying Microsoft.Sha

Re: [Mono-list] Mono and Microsoft.SharePoint

2006-05-10 Thread John M. Brown
Any chance there is one in development? My goal is to be able to use Mono to develop the web parts and then move them into production on the Sharepoint server where they'll actually be used. > Mono has no Microsoft.SharePoint.dll. And you cannot use Microsoft's one > on > Linux because SharePoi

Re: [Mono-list] Mono and Microsoft.SharePoint

2006-05-10 Thread Kornél Pál
You should be able to reference these assembiles and compile code if you specify their locations or install them to the GAC but if you want to use them you have to use Windows and .NET Framework as the runtime. Kornél - Original Message - From: "John M. Brown" <[EMAIL PROTECTED]> To:

RE: [Mono-list] Visual Studio and non-Windows deployment

2006-05-10 Thread Nate Chadwick
I use VS 2003 to target mono for a couple apps right now. My setup is Windows Xp 32-bit, VS2003 with vsprj2make, nant (recent nightly), and mono windows installer 1.1.5 (this installs the libs). I was using VS 2005 when I started, but there was too much to do to get things working nicely, so I

[Mono-list] Gecko LoadUrl fail when timer elapsed

2006-05-10 Thread Vojko Voga
Huy, guys! I have one problem. I write code that have a timer and it elapsed every 10 seconds. When it elapsed, app crash. If I call LoadUrl from button signal - onClick, it works everything ok. Any suggestion? Application output: ===

Re: [Mono-list] Visual Studio and non-Windows deployment

2006-05-10 Thread Glen Farrell
Hi All, Thanks to everyone for the help - you've given me a lot to read! I haven't read it all yet, but it sounds like I can just use VS2003 as normal? (Just adding a reference to the Mono libs to get the extra functionality). And during development I'd really only need the VSPrj2Make add-in f

[Mono-list] troubleshooting application lock up

2006-05-10 Thread Gonia Eric - egonia
Hello, We have an application we have written that we are having problems with it locking up. This is a command line application that runs continuously with lots of threads. The lock ups are completely random as far as we can tell. Sometimes it may take 10 minutes, and sometimes it can t

RE: [Mono-list] Problem getting Sample Web Services to work OnFedoraCore 4

2006-05-10 Thread Dana Epp
Title: RE: [Mono-list] Problem getting Sample Web Services to work OnFedoraCore 4 Source code? Install the examples that come with XSP. When I do that under Fedora Core 4 with those versions, the example web services (last two links) hang.   --- Regards, Dana Epp [Microsoft Security MVP]

Re: [Mono-list] Visual Studio and non-Windows deployment

2006-05-10 Thread Jonathan Pryor
On Wed, 2006-05-10 at 12:35 -0600, Glen Farrell wrote: > I haven't read it all yet, but it sounds like I can just use VS2003 as > normal? Mostly, yes. Do be warned that when copying VS.NET-compiled code to Linux/Mac you need to compile the code as "Release." "Debug" code won't always work relia