[Mono-list] Deserialising double values

2015-10-16 Thread Peter Hagen
Hi, I was wondering if anyone knows about an issue with deserializing double, float and decimal values, with an MVC 4 site. The values are posted as JSON to the server. When running on Windows, it deserialises correctly. I assume its a culture issue, by which the current culture is used,

Re: [Mono-list] SourceTable is required to be a non-empty string bug

2015-06-05 Thread Peter Hagen
from github to see if it indeed fixes the issue. Atsushi Eno On 2015年06月05日 04:38, Peter Hagen wrote: Hi Its great to see so many updates lately. Since the 4.0 update I have had issues with the GetSchema calls on System.Data. According to this report https://bugzilla.xamarin.com

[Mono-list] SourceTable is required to be a non-empty string bug

2015-06-04 Thread Peter Hagen
not sure if this is just for SqLite, or for all System.Data calls. I have this issue with MySql. So, my question is, does anyone know if this is indeed fixed, and will it appear soon in the updates? Grz Peter Hagen ___ Mono-list maillist - Mono-list

Re: [Mono-list] TypeLoadException with ASP.NET

2015-01-15 Thread Peter Hagen
Hi Igor, I was reading through your messages, and noticed one small thing: On 13 Jan 2015, at 08:01, Martin Thwaites monofo...@my2cents.co.uk wrote: Debugging is enabled in web.config, so I get the stack trace. It is not useful for my purposes, all line numbers are missing, i.e.: at

Re: [Mono-list] mvc and razorgenerator

2014-12-02 Thread Peter Hagen
if anyone has experience with that. Cheers Peter On 02-12-2014 07:33, Martin Thwaites wrote: Hi Peter, If you let us know what the error is, maybe I can have a look. It maybe that it will be fixed as part of some other work we're doing. Thanks Martin On 1 Dec 2014 21:51, Peter

[Mono-list] mvc and razorgenerator

2014-12-01 Thread Peter Hagen
Hi, I tried the latest Xamarin Studio with my MVC 4 project, and this time it worked out of the box! I can start the application and its runs fine in combination with MySql on my Mac. The production website already worked on Mono, but from the IDE it was a problem before. This time the nuget

Re: [Mono-list] Asp.Net questions

2014-10-20 Thread Peter Hagen
Same here! Running a Ubuntu server (12.04 I guess) with asp.net and asp.net MVC 4 sites. But I build it from source. Op 20 okt. 2014 03:50 schreef Daniel Lo Nigro li...@dan.cx: I'm running an ASP.NET MVC site with this stack and it's running quite well on Mono. I'm currently on Mono 3.8:

Re: [Mono-list] Asp.Net questions

2014-10-07 Thread Peter Hagen
Hi, I run a few MVC4 sites on Apache with Mono 3.8 on Ubuntu 12.04. I have build it from the git source as a parallel build. There are a few tweaks you have to do to get .net 4.5 support with the mod-mono-server, but for the rest it runs fine. Cheers Peter On 7 okt. 2014, at 14:39, William

[Mono-list] build issue 3.8

2014-09-12 Thread Peter Hagen
and started building. Is this a known issue? Grz Peter Hagen ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] build issue 3.8

2014-09-12 Thread Peter Hagen
, or upgrade in increments. e.g If you have 3.2.x now, don't try to go straight to 3.8, but do 3.4, 3.6 etc first. Again, I could be wrong but this rings a bell. Good luck! Steve H On 12 Sep 2014, at 07:37, Peter Hagen pe...@willow-media.nl wrote: Hi, I’m trying to build mono 3.8 from git

[Mono-list] Message in error.log

2013-02-23 Thread Peter Hagen
Hi, since I moved my setup to a new server last weekend, I have allot of these messages in my error.log of apache: WARNING: HOME is not set, using root: / Does anyone know if these message come from xsp/mono? -- Met vriendelijke groet, Peter Hagen Willow Media

[Mono-list] asp.net and apache

2012-05-31 Thread Peter Hagen
Hi Does anybody know how to decline the web request (from a HttpModule) so Apache will go on to the next handler? I figured out that DECLINE in Apache is status code -1, but if I return that, I get the following result: This webpage is not found No webpage was found for the web address:

[Mono-list] Switch branch on git with monodevelop

2012-04-25 Thread Peter Hagen
document folder with my project folder and the solution file. This is quite a problem, cause everything gets messed up, and I'm not sure if the changes to the solution are saved. Anyone has this problem? For now I'll remove the symlink. Cheers Peter Hagen

[Mono-list] missing BigInteger.Parse with 2 parameters

2011-12-19 Thread Peter Hagen
Hello! Today I attempted to use the latest version of Jayrock.JSON, and run into an issue with compiling. I got a ...NumberImporter.cs(31,31): Error CS1501: No overload for method `Parse' takes `2' arguments (CS1501) (Jayrock.Json) on compiling this line: return

Re: [Mono-list] MonoDevelop 2.8 Beta 3 released

2011-09-28 Thread Peter Hagen
Nice! I'm testing it at the moment! I have one issue since the 2.6 release, which I'm not sure where to report it. I'm running Ubuntu 11.04 with Gnome 3. Now my project is sometimes a bit heavy (I'm sure thats actually my issue hehe). When I right-click in a big file go to declaration, it takes

Re: [Mono-list] mod-mono apache asp.net request cancelled by other request

2011-06-10 Thread Peter Hagen
closed (although this is still something that should not have happened, I guess). Cheers Peter On Thu, 2011-06-09 at 21:02 +0200, Peter Hagen wrote: Hi, today I found an issue with my mono 2.10.2 + apache setup, which I cant figure out what is wrong with it. Hopefully someone has some similar

[Mono-list] mod-mono apache asp.net request cancelled by other request

2011-06-09 Thread Peter Hagen
Hi, today I found an issue with my mono 2.10.2 + apache setup, which I cant figure out what is wrong with it. Hopefully someone has some similar experience. I run a site, which has a aspx page, but also uses iHttpHandler's. There is a handler that queries the database and with small buffers sends

Re: [Mono-list] HTML Parser in Mono

2011-04-18 Thread Peter Hagen
Hi here is one I used in the past. Works quite ok: http://www.developer.com/net/csharp/article.php/10918_2230091_1/Parsing-HTML-in-Microsoft-C.htm Cheers Peter On Sun, 2011-04-17 at 13:01 -0700, Mike Christensen wrote: Here's another one I came across, though I haven't used it..

[Mono-list] response.writefile

2011-03-02 Thread Peter Hagen
Hi I have a issue with the Response.WriteFile(string filename) in the HttpResponse, since I updated to 2.10.1. I use to add a full rooted path to this method, without problems, but if I do that now, it will add my application path to it. Looking at the code, I see there is a

[Mono-list] issue with Application.Lock

2011-02-28 Thread Peter Hagen
Hi today I installed the mono 2.10.1 on my server, and it seems to run very nicely. But I found a issue with the project NeatUpload, which I'm not sure if its a bug from them, or maybe in Mono. The application throws a exception: The current thread has not entered the lock in read mode

[Mono-list] cs0011 error on 2.8.2

2011-02-03 Thread Peter Hagen
Hi the last 2 days I noticed somethings strange with Mono 2.8.2. I have a project that uses the ExcelLibrary (http://code.google.com/p/excellibrary/). Running it with .Net and Mono 2.6.7, it works seamlessly. But yesterday I put that code on my other machine with Mono 2.8.2 (linux Debian) and

[Mono-list] FacebookSharp

2011-01-16 Thread Peter Hagen
Hi I found the FacebookSharp on the mono site (http://www.mono-project.com/Libraries#FacebookSharp) and was wondering if anyone knows if this is still actual and working, because of Facebook switching to the GraphApi? -- With kind regards, Peter Hagen www.WingsOfDeath.net Follow our

Re: [Mono-list] Process in Mono different from .Net

2010-12-20 Thread Peter Hagen
Hi I guess you have to fork() your application. Or if you are in Gnome or KDE, send some command by DBUS? Beats me actually :D Cheers Peter On ma, 2010-12-20 at 08:40 -0800, madrang wrote: On Sun, 2010-12-19 at 06:27 -0800, madrang [via Mono] wrote: I don't need to know when it is

Re: [Mono-list] issues mono 2.8(.1)

2010-12-01 Thread Peter Hagen
) [0x0] in filename unknown:0 This is after somewhere after the unload of the page, and the reason why the client browser never gets the entire page loaded. So, resolved! Cheers Peter On Tue, 2010-11-30 at 12:17 +0100, Peter Hagen wrote: Hi I have been testing out the 2.8+ release for my

[Mono-list] issues mono 2.8(.1)

2010-11-30 Thread Peter Hagen
Hi I have been testing out the 2.8+ release for my Asp.net application, running with mod-mono. At first the site looked faster then before, but some times I notice that (at random) a page stops loading, and after a while (10+ seconds some times) it goes on. Mostly on giving a refresh it loads

[Mono-list] [Fwd: issues mono 2.8(.1)]

2010-11-30 Thread Peter Hagen
. Any ideas? Cheers Peter Forwarded Message From: Peter Hagen pe...@wingsofdeath.nu To: mono-list@lists.ximian.com Subject: issues mono 2.8(.1) Date: Tue, 30 Nov 2010 12:17:38 +0100 Hi I have been testing out the 2.8+ release for my Asp.net application, running with mod-mono

[Mono-list] mod-mono

2010-10-21 Thread Peter Hagen
Hi I was wondering if its possible when doing a 'apache2ctl graceful' to make sure that the mono instances stay alive, instead of restarting also? Or is this only possible by using a reverse proxy and separating the mono instances from apache? The problem is, when I am going to update some other

Re: [Mono-list] mod-mono

2010-10-21 Thread Peter Hagen
Hi Hello I was wondering if its possible when doing a 'apache2ctl graceful' to make sure that the mono instances stay alive, instead of restarting also? Or is this only possible by using a reverse proxy and separating the mono instances from apache? The problem is, when I am going to

Re: [Mono-list] openoffice uno

2010-05-31 Thread Peter Hagen
28, 2010 at 6:54 AM, Peter Hagen pe...@wingsofdeath.nu wrote: Hi does anybody know if there is a tutorial about Mono and OpenOffice with Uno, with working examples? I'm not aware of anything current. Indeed, AFAIK, the templates in the MonoDevelop addin

[Mono-list] openoffice uno

2010-05-28 Thread Peter Hagen
Hi does anybody know if there is a tutorial about Mono and OpenOffice with Uno, with working examples? Cheers Peter ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] About Virtual PC

2010-04-28 Thread Peter Hagen
Hi no, Virtual PC is the 'vmware' from Microsoft: http://www.microsoft.com/windows/virtual-pc/ Cheers Peter On Tue, 2010-04-27 at 20:48 -0700, Stephen Liu wrote: Hi folks, Virtual PC If I understand following article correctly; Mono Appliance for VirtualPC

[Mono-list] mysql connection

2010-02-15 Thread Peter Hagen
with the older version things worked fine. Anyone any ideas? The datetime's are passed by parameters... Cheers Peter Hagen www.Willow-Media.nl ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] sqlmetal on Mono 2.6 stable

2010-01-17 Thread Peter Hagen
Hi I think that the : after server in your connectionstring is not correct, allthough I don't know anything about sqlmetal ConnectionString= Server:localhost;Database=adventureworks;Uid=root;Pwd=xyz Cheers Peter Verstuurd vanaf mijn iPhone Op 18 jan 2010 om 01:59 heeft Costantino

Re: [Mono-list] Mono 2.6 for Ubuntu

2010-01-13 Thread Peter Hagen
Hi I don't understand the problem, I compiled 2.6.1 and MD 2.2 on Ubuntu 32 and 64 without a problem. No breaking anything. It works like a ... ehm.. [think of something good yourself]. Cheers Peter On Wed, 2010-01-13 at 08:52 -0800, Chorn Sokun wrote: In short wait or abandon Debian/Ubuntu

[Mono-list] HttpHandler and 2.4.3+

2009-12-17 Thread Peter Hagen
Goodday Last week I have upgraded my systems to 2.4.3 and one to the new 2.6, together with monodevelop 2.2. First of all, it works like a breeze! Very cool, and I'm very happy with these releases, and thanks allot to the Mono team! But, I do think I found a possible bug. Before i was running

Re: [Mono-list] HttpHandler and 2.4.3+

2009-12-17 Thread Peter Hagen
...@lists.ximian.com] On Behalf Of Peter Hagen Sent: 17 December 2009 3:50 AM To: mono-list@lists.ximian.com Subject: [Mono-list] HttpHandler and 2.4.3+ Goodday Last week I have upgraded my systems to 2.4.3 and one to the new 2.6, together with monodevelop 2.2. First of all, it works like a breeze

Re: [Mono-list] postback in frames

2009-12-03 Thread Peter Hagen
Morning again sorry, this was a totally different issue. I found the solution and it had nothing to do with the javascripts. It was because some controls were wrongly inserted into the page. My apologies Cheers Peter On Wed, 2009-12-02 at 09:13 +0100, Peter Hagen wrote: Goodmorning today

[Mono-list] postback in frames

2009-12-02 Thread Peter Hagen
Goodmorning today I got a message from someone, how includes a page of mine in a iframe on their website. In this page are some postback linkbuttons which are generated by mono (asp.net). In none framed situations these work just fine, but when its been used in the frame, somehow then dont work.

Re: [Mono-list] Sites Using Mono

2009-11-21 Thread Peter Hagen
should i send a message, if we would like to be included in the 'companies using mono' page? Cheers Peter Hagen On Sat, 2009-11-21 at 13:00 +0100, Christian Prochnow wrote: Hi sirmak, i'm sorry, but i must say that Mono is simply not ready to be used on high-load sites. We tried using

[Mono-list] directory delete

2009-08-13 Thread Peter Hagen
Hi I'm not sure if this has been reported yet, but in my website, if i delete a directory, the entire website is being restarted. Its this behaviour with mono 2.4.2.2 3. With kind regards Peter Hagen ___ Mono-list maillist - Mono-list

Re: [Mono-list] PDF on mono

2009-08-07 Thread Peter Hagen
Currently I use the itextsharp project. Works ok, but not sure if its the best Cheers Peter On Fri, 2009-08-07 at 13:10 +0200, Petit Eric wrote: sorry, but, as long i know, none :-) 2009/8/7 Panoramix aria.france...@gmail.com: Which libraries to generate PDF is best to use with Mono?

Re: [Mono-list] null ref. exception

2009-07-20 Thread Peter Hagen
the TemplateSourceDirectory should be in this case. Do you have a suggestion? Cheers Peter On Mon, 2009-07-20 at 00:02 -0400, Gonzalo Paniagua Javier wrote: On Sun, 2009-07-19 at 18:40 +0200, Peter Hagen wrote: Hi Gonzalo well, i have a bit a problem of recreating the bug in a new project. If i make

Re: [Mono-list] null ref. exception

2009-07-20 Thread Peter Hagen
? public abstract class FileControl : System.Web.UI.WebControls.WebControl, System.Web.UI.IPostBackDataHandler Cheers Peter On Mon, 2009-07-20 at 13:18 +0200, Marek Habersack wrote: Peter Hagen wrote: Hi Gonzalo I did some tests on ./mcs/class/System.Web/System.Web.UI/Control.cs

Re: [Mono-list] null ref. exception

2009-07-20 Thread Peter Hagen
Ow, and I forgot to mention, it does work under 2.0.1, but not with 2.4.2.2 Cheers Peter On Mon, 2009-07-20 at 15:27 +0200, Peter Hagen wrote: Hi Marek you are right, there were some projects at 1.1. Yesterday I changed that, but I seemed not to have checked in my changes. I now am sure

[Mono-list] null ref. exception

2009-07-19 Thread Peter Hagen
there is a difference between 2.0 and 2.4. Is this a bug? or should i set some parameter somewhere? with kind regards Peter Hagen Argument cannot be null. Parameter name: virtualPath Description: HTTP 500. Error processing request. Stack Trace: System.ArgumentNullException: Argument cannot be null

Re: [Mono-list] null ref. exception

2009-07-19 Thread Peter Hagen
to figure out more about the project first :s Cheers Peter On Jul 19, 2009, at 1:50 PM, Gonzalo Paniagua Javier wrote: On Sun, 2009-07-19 at 12:12 +0200, Peter Hagen wrote: Hi i migrated my webapp to .net 2.0. When i testdrive it, on my Mono 2.0.1 (Ubuntu) it runs very nicely. After that I

[Mono-list] mono 2.4.1 release?

2009-05-27 Thread Peter Hagen
Hi are there any plans on releasing the 2.4.1 officially with the 'inotify fix'? I think I need to upgrade my 2.0.1 to 2.4.1 to get a remoting problem fixed, but I don't want to do this with a svn version With kind regards Peter Hagen ___ Mono-list

[Mono-list] Exception on telnet

2009-05-12 Thread Peter Hagen
Hi I was trying to debug my setup in which I did a telnet to a mod-mono environment on my apache server (2.2). As far as I know, this should not be a problem. Here is what i did: telnet 192.168.0.8 83 GET / HTTP/1.0 As result I get a 500 Internal Server Error and in my apache error logs,

Re: [Mono-list] Mono 2.4 thread aborted

2009-04-11 Thread Peter Hagen
aborts the threads. Is this branche the right one? or is this by accident the office branch of 2.4, and not the newer one? Cheers Peter On Apr 11, 2009, at 7:37 AM, Gonzalo Paniagua Javier wrote: On Thu, 2009-04-09 at 11:18 +0200, Peter Hagen wrote: Thanx Gonzalo that seems to work. I do

Re: [Mono-list] Mono 2.4 thread aborted

2009-04-11 Thread Peter Hagen
Hi no, i still use the 1.1. I hope to port my code to 2.0 within a few months :) Cheers Peter On Apr 11, 2009, at 7:57 PM, Gonzalo Paniagua Javier wrote: On Sat, 2009-04-11 at 19:37 +0200, Peter Hagen wrote: Hi Gonzalo thanx. I allready build Mono from source, so thats no problem. I did

Re: [Mono-list] Mono 2.4 thread aborted

2009-04-09 Thread Peter Hagen
Thanx Gonzalo that seems to work. I do have the feeling the website is slower now, but that could just the connection. Is it also possible to completely turn of the file watching? Cheers Peter Gonzalo Paniagua Javier wrote: On Wed, 2009-04-08 at 10:25 +0200, Peter Hagen wrote: [...] So

Re: [Mono-list] IHttpHandler works fine under IIS but not Apache

2009-04-03 Thread Peter Hagen
Hi I fixed this by using an alias. I added an alias in the site configuration, and added the alias path to the web.config: Apache site config Alias /test /some/real/path/to/my/site/www Location /test SetHandler mono /Location Web.config configuration system.web httpHandlers

Re: [Mono-list] IHttpHandler works fine under IIS but not Apache

2009-04-03 Thread Peter Hagen
whether this is Apache or mod_mono doing this. IIS does not have this problem. Thanks again! Mike Peter Hagen wrote: Hi I fixed this by using an alias. I added an alias in the site configuration, and added the alias path to the web.config: Apache site config Alias /test /some

[Mono-list] Cairo

2009-02-21 Thread Peter Hagen
, the write to stream interop methods are not available. So, my question is, how can I write a PNG to the Context.Request, without first writing the png to a file? Secondly, can anyone hint me howto create a jpeg (or a different filetype) from the surface? Thanx in advance Peter Hagen

[Mono-list] asp.net idSeparator

2008-11-18 Thread Peter Hagen
Hi I'm testing my .net 1.1 website on the new Mono 2.0.1. One thing I can't figure out, is that my site doesn't work correctly because of a difference in the separator in clientid/UniqueId. Until this version I could split the control id's with ':', but somehow it now using the '$'. If I look

Re: [Mono-list] asp.net idSeparator

2008-11-18 Thread Peter Hagen
Hi Robert yes, you are right. xsp is now a the same as xsp2. So, I guess it made it to the 2.0.1. Ill try to get MonoDevelop to use xsp1 :). Thanx for your reply cheers Peter On Tue, 2008-11-18 at 11:40 +0100, Robert Jordan wrote: Peter Hagen wrote: Hi I'm testing my .net 1.1 website

[Mono-list] Parsing email

2008-11-10 Thread Peter Hagen
Hi all does anyone know if there is a existing library or function for parsing email messages? For example to easily get the attachments? cheers Peter Hagen ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman

Re: [Mono-list] Parsing email

2008-11-10 Thread Peter Hagen
- From: [EMAIL PROTECTED] [mailto:mono-list- [EMAIL PROTECTED] On Behalf Of Damien Sent: segunda-feira, 10 de Novembro de 2008 14:22 To: Peter Hagen; mono-list@lists.ximian.com Subject: Re: [Mono-list] Parsing email Hi, The Lumisoft

Re: [Mono-list] Working with MS Excel in Linux

2008-11-06 Thread Peter Hagen
or try the Gembox spreadsheet dll! (www.gemboxsoftware.com/) On Thu, 2008-11-06 at 02:33 -0800, MAP Tiger wrote: Petit Eric wrote: ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] apache and mono some kind of authentication

2008-10-21 Thread Peter Hagen
#, and my own written one just doesn't do the job correctly. Anyone any idea how to get this done? cheers Peter On Mon, 2008-10-20 at 15:13 -0400, Gonzalo Paniagua Javier wrote: On Mon, 2008-10-20 at 17:29 +0200, Peter Hagen wrote: Hi all does anybody know if its possible to use a mono

[Mono-list] apache and mono some kind of authentication

2008-10-20 Thread Peter Hagen
really want to stick to mono cheers Peter Hagen ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] MySql triggering an event in C#

2008-09-20 Thread Peter Hagen
Hi you could read out the modification date of the table with an sql statement. This is really easy in mysql. I use it to cache a table and re-read on alteration. Thats not very CPU heavy. Its no problem to read the modification time every second. Do a statement like: SHOW TABLE STATUS

Re: [Mono-list] File umask

2008-07-21 Thread Peter Hagen
Hi you should check out the Mono.Posix assembly. Or you can do a chmod 775 ... with a process object. cheers Peter On Mon, 2008-07-21 at 10:40 +0200, Albert Ritmeester wrote: Hi, From my code I'm writing a XML file to the system. Unfortunately, the file rigths are set to -rw-- I want

Re: [Mono-list] File umask

2008-07-21 Thread Peter Hagen
ow. I didnt know that existed. But, shouldn't it be: MonoUnixUMask 0720 cheers Peter Hagen [EMAIL PROTECTED] www.wingsofdeath.nu On Mon, 2008-07-21 at 01:59 -0700, Albert Ritmeester wrote: That could be a solution but I do not want to set the file rights programmaticaly. In my VirtualHost

[Mono-list] appdomains

2008-05-02 Thread Peter Hagen
in a different domain would seperate the memory usage etc. So, shouldnt this construction clean up the memory? with kind regards Peter Hagen [EMAIL PROTECTED] www.WingsOfDeath.nu ___ Mono-list maillist - Mono-list@lists.ximian.com http

[Mono-list] gembox.spreadsheet and resources

2008-04-29 Thread Peter Hagen
for a solution, but maybe this is a mono related issue. with kind regards Peter Hagen ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] HttpContext in asp.net and webservice

2008-03-20 Thread Peter Hagen
the HttpContext object? or in any other way? Also, I checked the mono docs, but I can't find the HttpSoapWebServiceHandler anywhere. thanx in advance Peter Hagen ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono

Re: [Mono-list] Gnome in C# and Mono, What do you think?

2007-01-22 Thread Peter Hagen
But then Gnome would be allot slower. Carlos Adriano Portes schreef: In my opinion Gnome should be developed using mono and c#, it is standard and would help gnome to improve very much, kde is develop mainly in C++ and it is productive because it ts based in one language, if gnome was

[Mono-list] Viewstate Encryption

2007-01-17 Thread Peter Hagen
Hi you all Today I have been exhausting my finger while searching for encrypting the viewstate of my Mono asp.net projects. I know for sure that I read about it not so long ago, somewhere on this list, or on the rss of monologue, but I can't seem to find it. Can someone help me with this?

[Mono-list] xsp Webservice

2006-10-03 Thread Peter Hagen
Hi I'm running a mono 1.1.17.1(/2?) installation. I created a asp.net website, with a webservice in it. Nothing special. If i open the webservice page, I get the Overview, Service Description and the Client Proxy. When I click the Client Proxy, i get the following message: Description: Error

[Mono-list] Evolution Sharp

2006-09-25 Thread Peter Hagen
Hi! can someone tell me where i can find info or api desciptions about evolution sharp? I want to create a connection to my own server for the calender and todo items greetings Peter ___ Mono-list maillist - Mono-list@lists.ximian.com

[Mono-list] http headers

2006-09-14 Thread Peter Hagen
Hi I seemed to figured out where one of my problems lies. I create a download.aspx which should give me a file from the webserver. If I test it local it works perfectly, but running from apache with mod_mono it always goes wrong. Today I figured out, that apache+mod_mono doesn't give me my

Re: [Mono-list] mono xsp 1.1.17.1

2006-09-06 Thread Peter Hagen
great! thanx On Wednesday 06 September 2006 18:10, Gonzalo Paniagua Javier wrote: On Mon, 2006-09-04 at 12:20 +0200, Peter Hagen wrote: Hi there this is my first time on this mailinglist, so forgive me if this isnt the right place to ask the following question. Today I installed mono

Re: [Mono-list] Online editor

2006-09-05 Thread Peter Hagen
Hi you mean a wysiwyg html editor? fckeditor is known to me to work onder mono. And its opensource c# greetz Peter On di, 2006-09-05 at 14:05 +0100, Jorge Bastos wrote: Hi people, Who knows a good online editor in C# to work with mono? Jorge

[Mono-list] mono xsp 1.1.17.1

2006-09-04 Thread Peter Hagen
Hi there this is my first time on this mailinglist, so forgive me if this isnt the right place to ask the following question. Today I installed mono 1.1.17.1 on my windows xp machine. I have mono 1.1.13.x running on my Linux servers. If I start my project which is running perfectly on Linux