Re: [Mono-dev] Gecko-sharp and Flash

2006-05-09 Thread Daniel Lacroix
Le dimanche 07 mai 2006 à 17:58 -0500, Zac Bowling a écrit : You have to set the CompPath property on the WebControl object to a mozilla/firefox directory that has a plugins folder get it to work. Its a static so just say WebControl.CompPath = /usr/lib/mozilla-firefox; I try this

RE: [Mono-dev] framework for system.web tests

2006-05-09 Thread Andrew Skiba
Hello, Chris. Are you sure you compiled the sources from the attached zip? Because in those sources I see code Console.WriteLine (res); Assert.AreEqual (@spana href=#_SkipLinkimg alt=Skip Navigation Links height=0 width=0

[Mono-dev] System.Web.UI/TemplateParser.cs patch

2006-05-09 Thread Andrew Skiba
Hello, I tried to compile aspx from directory with spaces in the name, and got the following error. This patch fixes that bug. If no one objects, I will commit. bDescription: /bError compiling a resource required to service this request. Review your source file and modify it to fix this error. p

Re: [Mono-dev] Patch for HttpRequest.cs

2006-05-09 Thread Kornél Pál
Hi, Currently mod_mono and XSP uses UTF-8 to decode query string and UrlDecode uses UTF-8 as well. Do we prefer to use UTF-8 for query string anyway or should we use ContentEncoding for query string as well just like MS.NET does? Note that if we want to use ContentEncoding for query string

[Mono-dev] HttpHandlerAction cosmetic patch

2006-05-09 Thread Andrew Skiba
This keeps the inner exception. If noone objects, I will commit. HttpHandlerAction.patch Description: HttpHandlerAction.patch ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] typeof(Byte[]).GetInterfacesMap

2006-05-09 Thread Jb Evain
Hello, Here is a solution I like most. mcs.patch Description: Binary data mono.diff Description: Binary data Comments? Jb On May 8, 2006, at 2:14 PM, Jb Evain wrote: Hey, I was just having a look at that :) On May 8, 2006, at 1:50 PM, Jonathan Pryor wrote: The above test prints out

Re: [Mono-dev] Sharing violation exception when building Mono on Win32

2006-05-09 Thread Zoltan Varga
This should be fixed in r60449. Zoltan On 5/9/06, Zoltan Varga [EMAIL PROTECTED] wrote: Its a bug caused by some recent runtime changes. On 5/9/06, Kornél Pál [EMAIL PROTECTED] wrote: Hi, I haven't checked out Mono for about a week and now when I tried to compile trunk I got

Re: [Mono-dev] Sharing violation exception when building Mono on Win32

2006-05-09 Thread Kornél Pál
This solved the problem. Thanks. Kornél - Original Message - From: Zoltan Varga [EMAIL PROTECTED] To: Kornél Pál [EMAIL PROTECTED] Cc: mono-devel-list@lists.ximian.com Sent: Tuesday, May 09, 2006 5:13 PM Subject: Re: [Mono-dev] Sharing violation exception when building Mono on Win32

[Mono-dev] Linux/Unix equivalent of RSACryptoServiceProvider

2006-05-09 Thread Dan Dombrowsky
Hey, this isn't exactly a mono question but does anyone know of a unix/linux program or library that is compatible with the .NET RSACryptoServiceProvider class?Basically I just need to know if I receive a string encrypted with a unix library with RSA, can I decrypt it with .NET out of the box or

[Mono-dev] Mono and Solaris 10 x86

2006-05-09 Thread Jonel Rienton
I have reported this a while back and I would like to follow up. I wish somebody would shed light on the issue. http://pastebin.com/708298 I'm getting the error above while building from svn sources. Thanks, Jonel ___ Mono-devel-list mailing list

Re: [Mono-dev] System.Web.UI/TemplateParser.cs patch

2006-05-09 Thread Gonzalo Paniagua Javier
On Tue, 2006-05-09 at 03:41 -0700, Andrew Skiba wrote: Hello, I tried to compile aspx from directory with spaces in the name, and got the following error. This patch fixes that bug. If no one objects, I will commit. Please, commit. Thanks. -Gonzalo

Re: [Mono-dev] HttpHandlerAction cosmetic patch

2006-05-09 Thread Gonzalo Paniagua Javier
On Tue, 2006-05-09 at 06:12 -0700, Andrew Skiba wrote: This keeps the inner exception. If noone objects, I will commit. Please, commit. Thanks. -Gonzalo ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] Linux/Unix equivalent of RSACryptoServiceProvider

2006-05-09 Thread Sebastien Pouliot
Hello Dan, On Tue, 2006-05-09 at 17:01 -0400, Dan Dombrowsky wrote: Hey, this isn't exactly a mono question but IMO it's enough of a mono question, but anyway it's an interesting interop question. does anyone know of a unix/linux program or library that is compatible with the .NET

Re: [Mono-dev] Linux/Unix equivalent of RSACryptoServiceProvider

2006-05-09 Thread Dan Dombrowsky
Thanks for the speedy reply. That helps alot actually.In my case I am actually encrypting a very trivial amount of data. Basically I'm exchanging a 10 character identifier over the web and want to take advantage of the benefits of digital signatures by using a PKI solution. - RSA use big numbers

Re: [Mono-dev] Mono and Solaris 10 x86

2006-05-09 Thread Zoltan Varga
Hey, I checked in a workaround to SVN. Zoltan On 5/9/06, Jonel Rienton [EMAIL PROTECTED] wrote: I have reported this a while back and I would like to follow up. I wish somebody would shed light on the issue. http://pastebin.com/708298 I'm

[Mono-list] Question on MonoBURG's DAG-related mechanisms

2006-05-09 Thread Nikolaos Kavvadias
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there i would like to ask you (Mono users :) a few questions regarding MonoBURG. 1. When using the -e or --dag option for enabling DAG-based pattern matching, the data structure that the matcher will work on is an MBState and not an MBTree. It

[Mono-list] Questions about writing an XML document

2006-05-09 Thread Loren Bandiera
Hi, I want to write an XML document but there are some parts I'm not sure how to go about doing. Specifically namespaces and schemas. Take the following example XML: ?xml version=1.0 encoding=UTF-8? doc xmlns=http://whatever.org/XMLSchema/foo;

Re: [Mono-list] Questions about writing an XML document

2006-05-09 Thread Atsushi Eno
Hello, Hmm, it is a bug in XmlAttribute (it appears when xmlDoc.Save(blah) is added). I made a simple fix which will soon go into svn. As a workaround, you can use XmlElement.SetAttribute(xsi, schemaLocation, XmlSchema.InstanceNamespace). Atsushi Eno Loren Bandiera wrote: Hi, I want to

Re: [Mono-list] Questions about writing an XML document

2006-05-09 Thread Loren Bandiera
Hello, Hmm, it is a bug in XmlAttribute (it appears when xmlDoc.Save(blah) is added). I made a simple fix which will soon go into svn. Great! As a workaround, you can use XmlElement.SetAttribute(xsi, schemaLocation, XmlSchema.InstanceNamespace). Atsushi Eno I tried out the workaround

Re: [Mono-list] Questions about writing an XML document

2006-05-09 Thread Atsushi Eno
Hello, I tried out the workaround and it no longer throws an exception. The XML I get looks like this: ?xml version=1.0? doc xmlns=http://whatever.org/XMLSchema/foo; d1p1:xsi=http://www.w3.org/2001/XMLSchema-instance; xmlns:d1p1=schemaLocation foo / /doc That should for now. Although I'm

Re: [Mono-list] Questions about writing an XML document

2006-05-09 Thread Loren Bandiera
Oops, sorry my bad. It should be: SetAttribute (schemaLocation, XmlSchema.InstanceNamespace, http://whatever.org/XMLSchema/foo.xsd;); as its definition is SetAttribute(localName, namespaceURI, value). Atsushi Eno Yeah that makes it better. Thanks again! -- Loren

[Mono-list] xbuild

2006-05-09 Thread Giuseppe Greco
Hi all, will xbuild be the suggested/official build tool for Mono? The statement that monodevelop will support xbuild as well as NAnt is still true? Thanks, j3d. Giuseppe Greco Via Carà 26 6928 Manno (TI) Switzerland call giuseppe.greco via Skype phone:

Re: [Mono-list] XSP ssl

2006-05-09 Thread Carlos Solorzano
After a lot of tryouts we have a certificate that works, we copied allof the steps out of: http://www.cisco.com/univercd/cc/td/doc/product/rtrmgmt/cwparent/cw_1105/wlse/2_12/cert_gd/gencert.htm Below are the steps we used from that page, the page is a cisco page and most likely has nothing

Re: [Mono-list] Questions about writing an XML document

2006-05-09 Thread Andreas Färber
Hi Loren, Loren Bandiera schrieb: I want to write an XML document but there are some parts I'm not sure how to go about doing. Specifically namespaces and schemas. Take the following example XML: ?xml version=1.0 encoding=UTF-8? doc xmlns=http://whatever.org/XMLSchema/foo;

Re: [Mono-list] Questions about writing an XML document

2006-05-09 Thread Loren Bandiera
Hi Andreas, Loren Bandiera schrieb: To create it, I've tried doing something like this: XmlDocument xmlDoc = new XmlDocument (); xmlDoc.AppendChild (xmlDoc.CreateNode (XmlNodeType.XmlDeclaration,,)); XmlElement docElement = xmlDoc.CreateElement (doc); docElement.SetAttribute (xmlns,

[Mono-list] Problem getting Sample Web Services to work On Fedora Core 4

2006-05-09 Thread Dana Epp
Hey guys, I have been running my web services on Mono for some time now, always installed on Debian or Ubuntu. For the last week I have been trying to get it to work on Fedora Core 4, without avail. I thought I would go back to basics and just see if I could get the test web services that come

Re: [Mono-list] xbuild

2006-05-09 Thread Marek Sieradzki
Dnia 09-05-2006, wto o godzinie 15:43 +0200, Giuseppe Greco napisał(a): Hi all, will xbuild be the suggested/official build tool for Mono? The statement that monodevelop will support xbuild as well as NAnt is still true? It's too early to talk about MonoDevelop integration when core of

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

2006-05-09 Thread Dana Epp
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 still see the test web services hang. I forgot to mention before that

Re: [Mono-list] Questions about writing an XML document

2006-05-09 Thread Andreas Färber
Hi Loren, Loren Bandiera schrieb: To create it, I've tried doing something like this: XmlDocument xmlDoc = new XmlDocument (); xmlDoc.AppendChild (xmlDoc.CreateNode (XmlNodeType.XmlDeclaration,,)); XmlElement docElement = xmlDoc.CreateElement (doc); docElement.SetAttribute (xmlns,

Re: [Mono-list] Installing Mono on Fedora 4

2006-05-09 Thread Wade Berrier
My mistake. I usually provide all needed rpms in the yum repository, but the sqlite2 rpms are missing for fedora4. But, seeing that none of our other data providers require a native library, maybe we should just drop the dependency. Especially if the provider works with both sqlite 2 and 3. If

Re: [Mono-list] Installing Mono on Fedora 4

2006-05-09 Thread Wade Berrier
Taking another look at this, I noticed that sqlite2 is available in the fedora extras repository. That's probably why I didn't provide it in the repo on go-mono.com. http://download.fedora.redhat.com/pub/fedora/linux/extras/4/ Still, based on the reasons below, it may be a good idea to drop the

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

2006-05-09 Thread Glen Farrell
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 MonoIDE for aWindows environment? I did glance at the MonoDevelop page, but it said it's only for Linux and Mac -is there any