[Mono-list] Out-of-process session management in ASP.NET

2005-06-11 Thread Barbara Plank
Hi Mono team!

Let me put just a small question, coming to me just for curiosity: 

Does Mono (mod_mono) also implement the ASP.NET mechanism called
Out-of-process session management? (Maintaining the session states even when
the web server is restarted?)

Thank you,
Barbara


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


RE: [Mono-list] problem installing mod_mono 1.0.9

2005-05-24 Thread Barbara Plank
Hi Gonzalo,

 -Ursprüngliche Nachricht-
 Von: [EMAIL PROTECTED] [mailto:mono-list-
 [EMAIL PROTECTED] Im Auftrag von Gonzalo Paniagua Javier
 Gesendet: Dienstag, 24. Mai 2005 00:14
 An: mono-list@lists.ximian.com
 Betreff: Re: [Mono-list] problem installing mod_mono 1.0.9
 
 On Mon, 2005-05-23 at 12:25 +0200, Barbara Plank wrote:
 [...]
  [EMAIL PROTECTED] mod_mono-1.0.9]# make install
  Making install in src
  make[1]: Entering directory `/root/Mono 1.1.7
  rpm's/webserver/mod_mono-1.0.9/src'
  /root/Mono 1.1.7 rpm's/webserver/mod_mono-1.0.9/install-sh -d
  /usr/local/apache2/modules
  /bin/sh: -c: line 1: unexpected EOF while looking for matching `''
  /bin/sh: -c: line 2: syntax error: unexpected end of file
  make[1]: *** [install] Error 2
  make[1]: Leaving directory `/root/Mono 1.1.7
  rpm's/webserver/mod_mono-1.0.9/src'
  make: *** [install-recursive] Error 1
 
 
  The strange thing: After the error occurred, I tried to install the
 older
  release -- mod_mono 1.0.8 form source. And that worked!!
 
 
  Why can I install mod_mono 1.0.8 (from src) but not mod_mono 1.0.9??
 
 The quote in the directory path is making something fail. Try renaming
 the Mono 1.1.7 rpm's directory.

Yes!! This was the error! The quote in the directory name... aiii :(
Thanks for for help! Great! :)

Barbara
--not using quotes in directory names any longer ;)
--and now running mod_mono 1.0.9!

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



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


[Mono-list] problem installing mod_mono 1.0.9

2005-05-23 Thread Barbara Plank

Hi,

strange I have a problem installing mod_mono 1.0.9 from source...
I was upgrading my red hat 9 machine from mono 1.0.5 to mono 1.1.7 with 
Mod_mono 1.0.9

Configuring the module, everything is ok and also apsx was found. 
Make also works, but when then doing make install I get the ff:

[EMAIL PROTECTED] mod_mono-1.0.9]# make install
Making install in src
make[1]: Entering directory `/root/Mono 1.1.7
rpm's/webserver/mod_mono-1.0.9/src'
/root/Mono 1.1.7 rpm's/webserver/mod_mono-1.0.9/install-sh -d
/usr/local/apache2/modules
/bin/sh: -c: line 1: unexpected EOF while looking for matching `''
/bin/sh: -c: line 2: syntax error: unexpected end of file
make[1]: *** [install] Error 2
make[1]: Leaving directory `/root/Mono 1.1.7
rpm's/webserver/mod_mono-1.0.9/src'
make: *** [install-recursive] Error 1


The strange thing: After the error occurred, I tried to install the older
release -- mod_mono 1.0.8 form source. And that worked!! 


Why can I install mod_mono 1.0.8 (from src) but not mod_mono 1.0.9??

Any ideas?

Thanks,
Barbara




 Additional 
# here the output of ./configure --prefix=/usr  (for mod_mono 1.0.9)



checking for apxs2 in /usr/local/apache2/bin... no
checking for apxs in /usr/local/apache2/bin... found, we'll use this. Use
--with-apxs to specify another.
checking for apr-config in /usr/local/apache2/bin... found, we'll use this.
Use --with-apr-config to specify another.
checking for Apache libexec directory... /usr/local/apache2/modules
checking for Apache sysconf directory... /usr/local/apache2/conf
checking for Apache include directory... -I/usr/local/apache2/include
checking Apache version... 2.0
checking for pkg-config... /usr/bin/pkg-config
checking for --with-mono-default-config-dir...
/usr/local/apache2/conf/mod-mono-applications
checking for apr_socket_connect in -lapr-0... no
checking for mono installation prefix... /usr/
checking for http_protocol.h... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating mod_mono.conf
config.status: creating src/Makefile
config.status: creating man/mod_mono.8
config.status: creating man/Makefile
config.status: creating include/mod_mono_config.h
config.status: executing depfiles commands
---
Configuration summary for mod_mono

   * Installation prefix = /usr/
   * Apache version = 2.0
   * Apache modules directory = /usr/local/apache2/modules
   * apxs = /usr/local/apache2/bin/apxs
   * apr-config = /usr/local/apache2/bin/apr-config
   * Verbose logging (debug) = no
   * mono prefix = /usr/
   * Default MonoApplicationsConfigDir =
/usr/local/apache2/conf/mod-mono-applications

---


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


AW: [Mono-devel-list] asp.net: globalization / CultureInfo

2005-04-19 Thread Barbara Plank
 No chance to bring it back to the German Date Strings.
 
 I tried:
 in web.config:
 globalization
culture=de_CH
uiCulture=de_CH /
 
 in the axpx-File:
 %@ Page Language=C# Culture=de_CH uiCulture=de_CH ...

Hi Rémy,

what if you try to set the culture of the current thread? Using:

System.Threading.Thread.CurrentThread.Culture = new
System.Globalization.CultureInfo(de_CH);


Barbara



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


AW: [Mono-devel-list] asp.net: globalization / CultureInfo

2005-04-19 Thread Barbara Plank
 Thank you for your help, but:
 does not help: it seems that my mono-system has no globalisation
 support:
 System.ArgumentException: Culture name de_CH is not supported.
 

Hi Remy,

try to use de-CH (the - Minus instead of the _ underscore)?

barbara

 
 I have installed the full binary distribution of mono 1.1.4 for SuSE 
 9.0 and installed all packages.
 Has this build no support for globalisation? Have I to compile myself?
 Whit what options?


___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


AW: AW: [Mono-devel-list] asp.net: globalization / CultureInfo

2005-04-19 Thread Barbara Plank
Heiila Rémy,

no problem :) 
good that the problem is solved.

Grüße,
Barbara

 -Ursprüngliche Nachricht-
 Von: [EMAIL PROTECTED] [mailto:mono-devel-list-
 [EMAIL PROTECTED] Im Auftrag von Rémy Schumm
 Gesendet: Dienstag, 19. April 2005 14:25
 An: Barbara Plank
 Cc: mono-devel-list@lists.ximian.com
 Betreff: Re: AW: [Mono-devel-list] asp.net: globalization / CultureInfo
 
 Hoi Barbara
 
 
 ...that was the problem... unbelievable I did not see it... :-( :-(
 (now the Umlauts do not work correctly, but I will manage to correct
 this one I think...)
 
   thank you very much,
 
   
 Rémy
 
 
 Am 19.04.2005 um 14:12 schrieb Barbara Plank:
 
  try to use de-CH (the - Minus instead of the _ underscore)?
 --
 Zürcher Hochschule Winterthur - ZHW
 (Zurich University of Applied Science Winterthur, Switzerland)
 
 Rémy Schumm, ZHW - T, E222, Postfach 805, 8401 Winterthur
 dipl. Ing. FH, Assistent Softwareentwicklung, Dept. T,
 tel. direkt +41 52 2677 490 gsm/mms/sms +41 79 21 1234 1
 http://www.zhwin.ch/~smr  - PGP ID 0x59BA4E81 - Mac OS X Panther on G5
 
 Content Security by MailMarshal
 ___
 Mono-devel-list mailing list
 Mono-devel-list@lists.ximian.com
 http://lists.ximian.com/mailman/listinfo/mono-devel-list



___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


AW: [Mono-list] Why ByteFx needs Windows.Forms

2005-04-12 Thread Barbara Plank
 Yes the latest .NET Connector driver works in Linux running Mono. I'm 
 using it in my http://tagcma.com project. If you look at the source, I 
 use it quite heavily in the DbLayer/connection.cs.
 http://cvs.sourceforge.net/viewcvs.py/tagelflax/tagml/TAGMLWS/DbLayer/
 conn
 ection.cs?rev=1.110view=log
 
 You'll find the Mono compile script I use here:
 http://cvs.sourceforge.net/viewcvs.py/tagelflax/tagml/TAGMLWS/CompileW
 ithM
 ono.sh?rev=1.6view=log

Thanks, I will try .NET connector. 

A last question: I read on the mono page that also ODBC is supported,
however, didn't test it. Has anybody experience with it? 

In general, which way to access a MySQL database is the right one, suggested
by Mono, or which one is preferable and why? 

Ways of accessing MySQL:
- using an ODBC driver
- or a native provider, like ByteFx or rather its successor .NET
Connector/MySQL

(Because I'm using ByteFX and was thinking if there is a better way...)

Thanks,
Barbara


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


AW: AW: [Mono-list] Why ByteFx needs Windows.Forms

2005-04-12 Thread Barbara Plank








Thank you, Joe. Thats
very useful.



Barbara













Von:
[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Joe Audette
Gesendet: Dienstag, 12. April 2005
18:15
An: Barbara Plank;
mono-list@lists.ximian.com
Betreff: Re: AW: [Mono-list] Why
ByteFx needs Windows.Forms







I was using ByteFx and recently switched to the MySQL Connector.





I think either of these is likely to be more efficient than odbc.





I switched because ByteFX had some problems with certain versions of
MySQL.











You do have to code things a little different with the new connector
compared to ByteFx, see my notes about it here:





http://www.mojoportal.com/BlogView.aspx?pageid=2ItemID=47mid=19











Hope it helps,











Joe












[Mono-list] Why ByteFx needs Windows.Forms

2005-03-21 Thread Barbara Plank
Hi,

while installing byteFx I noticed (in several versions) that it
needs two packages:

mono(System.Design)
mono(System.Windows.Forms)

Can anybody perhaps tell me WHY? I am wondering... and I don't have fully
understood why those packages.. 

Thanks for any hint,

Barbara 


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


AW: [Mono-list] Why ByteFx needs Windows.Forms

2005-03-21 Thread Barbara Plank
Ah, that's why... Thank you for the information.
However, I also don't like the idea that the driver needs SWF. :(
And the design time support for VS.NET... 


Another question:
Did anybody test MySQL Connector/Net on Mono? 
I saw that ByteFx will not be further developed... and that MySQL
Connector/Net is its successor.. am I right? Did anybody test it on Mono?
Or: is Mono supporting this driver?

Thank you,
Barbara



Daniel Morgan wrote:

I do not like the ideal of the driver requiring SWF either.  However, 
ByteFX.Data uses S.W.F. for design-time support in Visual Studio.net 
such as screating data sets based on some wizards...  I'm not sure all 
you can do with this design-time support because I never use it.

Barbara Plank wrote:

Hi,

while installing byteFx I noticed (in several versions) that it
needs two packages:

mono(System.Design)
mono(System.Windows.Forms)

Can anybody perhaps tell me WHY? I am wondering... and I don't have fully
understood why those packages.. 

Thanks for any hint,

Barbara 


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

  


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



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


RE: [Mono-list] SetHandler (and Failed to get Session object) vs AddHandler Mod_mono 1.0.2

2004-09-29 Thread Barbara Plank
Hi Golo,

I tried mod_mono 1.0.1 and that was never working on my boxneither with
SetHandler nor with AddHandler (see
http://www.gotmono.com/cgi-bin/yabb/YaBB.pl?board=ASPX;action=display;num=10
92306582)... and until now I don't know why   (Mono 1.0 previously
worked fine)

But then with mod_mono 1.0.2 my webapps worked again I had just the problem
with the SetHandler discussed previously.

Perhaps try to update Mono to 1.0.2 - at least it works for me now (with
AddHandler - so Mono handles just the aspx related files, while all other
are under control of Apache). 

Or check before updating: does tmp/mod_mono_server has read/write access
(try - chmod 777 /tmp/mod_mono_server). Look at the apache error log file

Barbara

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Golo Haas
Sent: Mittwoch, 29. September 2004 16:13
To: [EMAIL PROTECTED]
Subject: Re: [Mono-list] SetHandler (and Failed to get Session object) vs
AddHandler Mod_mono 1.0.2

Hi there,

 that are not ASP.NET pages/handlers it will fail with that error. In
 this case, using AddHandler is the way to go, which is the same thing
 that IIS does, ie, let apache serve non-ASP.NET files.

that's exactly my problem at the moment. Actually I don't use a
global.asax file, and if I replace SetHandler by AddHandler, mod_mono
does not work at all, it gives me a (XSP) 404 for every page I request.

Any ideas? Are there known problems with mod_mono 1.0.1 and AddHandler?

Thanks in advance,


Golo

___
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] SetHandler (and Failed to get Session object) vs AddHandler Mod_mono 1.0.2

2004-09-24 Thread Barbara Plank
Hi to all, 

I have a big question. I've upgraded my mono installation to Mono 1.0.2.
(Red Hat 9/Apache2/Mod_mono 1.0.2)
I've a web application which run under Mono 1.0, but on 1.0.2 I had some
problems, for example the stylesheet was not rendered properly and when I
tried to access it mod_mono gave me an Failed to get Session object error.
Even when I tried to put a simple textfile in the virtual directory which
was handled by mod_mono, I got this session error I seemed if as
Mod_mono has locked the file/or some access rights where wrong, but the file
had actually 777. 

But, then, after I while I got it to work! What I did? I changed in the
httpd.config the handling of mono:

Instead of using SetHandler mono I put AddHandler mono .aspx .ascx
.config .cs ... etc and all other asp.net file types and it worked!!! The
images/stylesheet were found and the page was displayed in the way it
should but: on the older version of mono (1.0) it worked also with
SetHandler mono!!  (So the session error was misleading)

So the questions which aroused to me:

- Should from version 1.0.2 on AddHandler be used instead of SetHandler, so
that Mod_mono only handles the asp.net related files and all other stuff is
handled by apache? Is this intended behavior? (perhaps for performance
reasons?

- There is a warning in the INSTALL file in the source of mod_mono 1.0.2:
If you don't want mod-mono-server to handle all the files, but only
 ASP.NET ones, you can replace the 'SetHandler mono' by:

 AddHandler mono .aspx .ascx .asax .ashx .config .cs .asmx

 but this will break PathInfo.
  What does it mean that this will break PathInfo?

- in Mono 1.0 the mono module libmod_mono.so was added to the httpd.config
with a LoadModule statement. I found that with Mono 1.0.2 this is done in
the Include conf.d/*.conf. Why this little change? 

Any help? Answers?

Thank you all in advance!!! :)

Barbara
 

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


[Mono-list] System.Resources.ResourceManager and Mono Class status page

2004-09-09 Thread Barbara Plank
Hi Mono Team,

I have a web application which uses the System.Resources.ResourceManager to
read string values from an resx file. 
I tried it on Win XP with IIS and it worked fine. Then I wanted to know if
this works also on Mono... So my first idea was to check the class status
page (see http://mono.ximian.com/class-status/1.0/class-status-System.html )

- but unfortunately I had some problems with this page:

First of all, I could not find the System.Resources namespace.?!

Secondly, another time I was searching System.GUID, it was also missing on
this page Gonzalo was saying that it might be a bug... so, my question: 

Is there another link/page where I can find the Up-to-date class status? 
OR
WHERE can I get true information about the class status?
OR
Are this two namespaces just links missing on this page and do I have the
actual class status page? 
OR
Is it a bug?!

I tried the web application which uses the ResourceManager, copied the whole
application on linux/apache/mod_mono but it did behave differently from IIS.
So I don't know if it is my error somewhere or if Mono has not yet
implemented the ResourceManger or, or, or ...

I tried also the other web application which uses System.GUID and that
worked great. So I know that System.GUID is implemented and working also on
Mono, even if I cannot find it on the class status page.

Anyway, I find that Mono is great and it will have a big future.
Just a little bit more up-to-date information would greatly be appreciated.
Because often I have no idea if things are already implemented in Mono...
because I cannot find them on the class status page...like this case with
System.GUID or System.Resources.ResourceManager.

Does anybody else having the same experiences?

Thanks a lot,
I'm very glad for any hint/info/advice :)
Barbara



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


RE: [Mono-list] System.Resources.ResourceManager and Mono Class status page

2004-09-09 Thread Barbara Plank
Aah ok thanks! So the page http://mono.ximian.com/class-status/1.0/ seems to
be really up-to-date, but ... I cannot find GUID?
Thanks for the link to the CVS! 





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Juan Cristóbal
Olivares
Sent: Donnerstag, 09. September 2004 17:16
To: Barbara Plank; [EMAIL PROTECTED]
Subject: Re: [Mono-list] System.Resources.ResourceManager and Mono Class
status page

The System.Resources namespace is part of the corlib library, not the
System.dll.

You can see it on the CVS:
http://cvs.hispalinux.es/cgi-bin/cvsweb/mcs/class/corlib/System.Resources/?c
vsroot=mono

:)
Juan C. Olivares

- Original Message - 
From: Barbara Plank [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, September 09, 2004 11:05 AM
Subject: [Mono-list] System.Resources.ResourceManager and Mono Class status
page


 Hi Mono Team,

 I have a web application which uses the System.Resources.ResourceManager
to
 read string values from an resx file.
 I tried it on Win XP with IIS and it worked fine. Then I wanted to know if
 this works also on Mono... So my first idea was to check the class status
 page (see
http://mono.ximian.com/class-status/1.0/class-status-System.html )

 - but unfortunately I had some problems with this page:

 First of all, I could not find the System.Resources namespace.?!

 Secondly, another time I was searching System.GUID, it was also missing on
 this page Gonzalo was saying that it might be a bug... so, my
question:

 Is there another link/page where I can find the Up-to-date class status?
 OR
 WHERE can I get true information about the class status?
 OR
 Are this two namespaces just links missing on this page and do I have the
 actual class status page?
 OR
 Is it a bug?!

 I tried the web application which uses the ResourceManager, copied the
whole
 application on linux/apache/mod_mono but it did behave differently from
IIS.
 So I don't know if it is my error somewhere or if Mono has not yet
 implemented the ResourceManger or, or, or ...

 I tried also the other web application which uses System.GUID and that
 worked great. So I know that System.GUID is implemented and working also
on
 Mono, even if I cannot find it on the class status page.

 Anyway, I find that Mono is great and it will have a big future.
 Just a little bit more up-to-date information would greatly be
appreciated.
 Because often I have no idea if things are already implemented in Mono...
 because I cannot find them on the class status page...like this case with
 System.GUID or System.Resources.ResourceManager.

 Does anybody else having the same experiences?

 Thanks a lot,
 I'm very glad for any hint/info/advice :)
 Barbara



 ___
 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] Mono compilation problems (Solaris 8, SPARC) -also on Red Hat 9

2004-09-06 Thread Barbara Plank

Hi Gonzalo,

Yes, I am using XSP/mod_mono 1.0.1. I upgraded Mono 1.0 to 1.0.1 through red
carpet. See the list:

S | Name  | Version
--+---+
i | bytefx-data-mysql | 1.0.1-1.ximian.6.1
i | cairo | 0.1.23-2.ximian.6.1
i | freetype  | 2.1.5-0.ximian.6.1
i | freetype-demos| 2.1.5-0.ximian.6.1
i | freetype-devel| 2.1.5-0.ximian.6.1
i | freetype-utils| 2.1.5-0.ximian.6.1
i | gtk-sharp | 1.0-1.ximian.6.0
i | gtksourceview | 1.0.1-0.ximian.6.1
i | gtksourceview-sharp   | 0.5-1.ximian.6.1
i | ibm-data-db2  | 1.0.1-1.ximian.6.1
i | libgdiplus| 1.0.1-1.ximian.6.1
i | libicu26  | 2.6.2-1.ximian.6.0
i | libpixman | 0.1.1-0.ximian.6.0
i | mod_mono  | 0.7-0.ximian.6.0
i | mono-basic| 1.0.1-1.ximian.6.1
i | mono-cairo| 1.0.1-1.ximian.6.1
i | mono-complete | 1.0.1-1.ximian.6.1
i | mono-complete-devel   | 1.0.1-1.ximian.6.1
i | mono-core | 1.0.1-1.ximian.6.1
i | mono-core-devel   | 1.0.1-1.ximian.6.1
i | mono-data | 1.0.1-1.ximian.6.1
i | mono-data-oracle  | 1.0.1-1.ximian.6.1
i | mono-data-postgresql  | 1.0.1-1.ximian.6.1
i | mono-data-sqlite  | 1.0.1-1.ximian.6.1
i | mono-data-sybase  | 1.0.1-1.ximian.6.1
i | mono-directory| 1.0.1-1.ximian.6.1
i | mono-drawing  | 1.0.1-1.ximian.6.1
i | mono-ikvm | 1.0.1-1.ximian.6.1
i | mono-locale-cjk   | 1.0.1-1.ximian.6.1
i | mono-locale-mideast   | 1.0.1-1.ximian.6.1
i | mono-locale-other | 1.0.1-1.ximian.6.1
i | mono-locale-rare  | 1.0.1-1.ximian.6.1
i | mono-ms-enterprise| 1.0.1-1.ximian.6.1
i | mono-ms-extras| 1.0.1-1.ximian.6.1
i | mono-novell-directory | 1.0.1-1.ximian.6.1
i | mono-nunit| 1.0.1-1.ximian.6.1
i | mono-peapi| 1.0.1-1.ximian.6.1
i | mono-posix| 1.0.1-1.ximian.6.1
i | mono-preview  | 1.0.1-1.ximian.6.1
i | mono-remoting | 1.0.1-1.ximian.6.1
i | mono-runtime-devel| 1.0.1-1.ximian.6.1
i | mono-web-forms| 1.0.1-1.ximian.6.1
i | mono-web-services | 1.0.1-1.ximian.6.1
i | mono-winforms | 1.0.1-1.ximian.6.1
i | mono-xml-relaxng  | 1.0.1-1.ximian.6.1
i | mono-ziplib   | 1.0.1-1.ximian.6.1
i | monodoc   | 1.0.1-1.ximian.6.1
i | xsp   | 1.0.1-1.ximian.6.0


Perhaps it is an error in the packages in the red carpet mono channel? I
tested also both the standalone XSP and the apache module, and both gave me
the same error... so it might be something wrong in XSP?

Thank you in advance,
Barbara



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Gonzalo Paniagua
Javier
Sent: Freitag, 03. September 2004 21:53
To: [EMAIL PROTECTED]
Subject: RE: [Mono-list] Mono compilation problems (Solaris 8, SPARC) -also
on Red Hat 9

On Thu, 2004-09-02 at 02:36, Barbara Plank, Idealnet wrote:
 Hi Gonzalo,
 
 I have exactly the same problem with Apache and Mono 1.0.1 but on Red hat
9.
 Is it perhaps for the same reason? (does Red Hat also not allow a timeout
on
 a socket?). 
 By the way, I installed Mono through red carpet, and version 1.0 worked
 fine, just with 1.0.1 I have this problem.

I just tried 1.0 CVS version (from which 1.0.1 went out) and everything
worked. I tested both xsp standalone and the apache module. Are you
using xsp/mod-mono 1.0.1 too?


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Gonzalo Paniagua
 Javier
 Sent: Mittwoch, 01. September 2004 17:59
 To: [EMAIL PROTECTED]
 Subject: Re: [Mono-list] Mono compilation problems (Solaris 8, SPARC)
 
 On Wed, 2004-09-01 at 08:10, Harry Sufehmi wrote:
  Thanks to Jeremy and Mono team for releasing Mono v1.0.1, I've been able

  to compile Mono and XSP webserver successfully on a Sun server running 
  Solaris 8.
  
  However, when I tried to run the XSP webserver, I got the following 
  error message:
  
  ==
  bash-2.99# /bcc/mono-1.0.1/bin/mono /usr/local/xsp-1.0.1/bin/xsp.exe 
  --port 4
  xsp
  Adding applications '/:.'...
  Registering application:
   Host:  any
   Port:  any
   Virtual path:  /
   Physical path: /usr/local/xsp-1.0.1/share/doc/xsp/test
  Listening on port: 4
  Listening on address: 0.0.0.0
  Root directory: /usr/local/xsp-1.0.1/share/doc/xsp/test
  
  Unhandled Exception: System.Net.Sockets.SocketException: Invalid
arguments
  in 0x009e8 System.Net.Sockets.Socket:Select 
 

(System.Collections.IList,System.Collections.IList,System.Collections.IList,
 int)
  in 0x00118 Mono.ASPNET.ApplicationServer:RunServer ()
  in 0x0008c (wrapper delegate-invoke) 
  System.MulticastDelegate:invoke_void ()
  
  Hit Return to stop the server.
  ==
  
  I'm clueless at the moment as what to do now to resolve this problem

RE: [Mono-list] Red Carpet channel for mono?

2004-08-17 Thread Barbara Plank, Idealnet

Hi Stevie,

I use red carpet from the command line (rug).
Here are some commands that might help you:

//list all available channels:
rug channels

//e.g. subscribe to mono channel
rug subscribe mono 

//list all uninstalled (-u) packages of the mono channel
rug packages -u mono

//list all installed packages of mono channel
rug packages -i mono

//list all updates for specified channel
rug list-updates mono

You have to subscribe to a channel and then you can 
Install the packages you want with:
rug install packagename


Hope that helps,
Barbara 

and... check out man rug



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Stephan Eberle
Sent: Montag, 16. August 2004 19:34
To: [EMAIL PROTECTED]
Subject: [Mono-list] Red Carpet channel for mono?

Hi:

Just reinstalled RC on my FC2...

But what's the channel to get mono and components?

Thanks in advance,
Stevie




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


[Mono-list] asp.net application fails with mono 1.0.1

2004-08-17 Thread Barbara Plank, Idealnet
Hi all,

I've a small sample application which was working on Mono 1.0. A few days
ago I updated mono to the new version 1.0.1 (through red-carpet). The update
was successful. 

But now, when I try to run the application (keeping all configurations the
same, which means the httpd.config is still the same and not touching the
applications --- it is still all the same) I get the following error:

System.IO.IOException: Read failure --- System.Net.Sockets.SocketException:
Operation on non-blocking socket would block in 0x0006b
System.Net.Sockets.Socket:Receive_nochecks
(byte[],int,int,System.Net.Sockets.SocketFlags)
in 0x000c3 System.Net.Sockets.Socket:Receive
(byte[],int,int,System.Net.Sockets.SocketFlags)
in 0x000ed System.Net.Sockets.NetworkStream:Read (byte[],int,int)
--- End of inner exception stack trace ---
 
in 0x00131 System.Net.Sockets.NetworkStream:Read (byte[],int,int) in
0x000ad System.IO.BinaryReader:FillBuffer (int) in 0x00013
System.IO.BinaryReader:ReadInt32 () in 0x00024
Mono.ASPNET.ModMonoRequest:ReadString () in 0x00050 (wrapper
remoting-invoke-with-check) Mono.ASPNET.ModMonoRequest:ReadString () in
0x001a5 Mono.ASPNET.ModMonoRequest:GetInitialData () in 0x0004f (wrapper
remoting-invoke-with-check) Mono.ASPNET.ModMonoRequest:GetInitialData () in
0x000ef Mono.ASPNET.ModMonoRequest:.ctor
(System.Net.Sockets.NetworkStream)
in 0x00056 (wrapper remoting-invoke-with-check)
Mono.ASPNET.ModMonoRequest:.ctor (System.Net.Sockets.NetworkStream)
in 0x00034 Mono.ASPNET.RequestReader:.ctor
(System.Net.Sockets.NetworkStream)
in 0x00077 Mono.ASPNET.ModMonoWorker:Run (object)
 

I had no problem running in with Mono 1.0. May it be a bug? Has somebody
else tested Mono 1.0.1 yet? When I try with other applications I get the
same error

Thanks for any hint,
Barbara

When I try to run the same application on another machine which has still
mono 1.0 installed, it works fine.


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