[Mono-list] Installing mono from RHEL RPM - Missing System.Runtime.Caching

2011-06-08 Thread James Wright
Hi all, I hope this is the right place to post! This is the first time i've tried installing Mono, I've successfully managed to execute a simple HelloWorld.exe, but when i try another of my test apps I get the following error: TestBed Console Started Missing method get_Default in

[Mono-list] Mono ASP.NET MVC Virtual Path Not Found Exception?

2011-06-29 Thread James Wright
Hi, I am running Mono 2.10.2 (installed from the current RPMs) and an ASP.NET 4.0 MVC 2 web app. I have a few excpetions in my Apache error log as a result of some recent vulnerability scans against my web server. The HTTP response code returned is a 500, with a stacktrace dumped in the

Re: [Mono-list] Mono ASP.NET MVC Virtual Path Not Found Exception?

2011-06-29 Thread James Wright
Further to this, it seems the stacktrace for this error is available to remote users, shouldn't that only be visible to local only? Thanks, James On 29/06/2011 11:18, James Wright wrote: Hi, I am running Mono 2.10.2 (installed from the current RPMs) and an ASP.NET 4.0 MVC 2 web

Re: [Mono-list] Mono ASP.NET MVC Virtual Path Not Found Exception?

2011-06-29 Thread James Wright
in the Web.config. When I reproduce with Microsoft .Net it displays the usual generic error with no version information as you'd expect. Can anyone else confirm this is an issue or suggest a workaround? Thanks, James On 29/06/2011 11:35, James Wright wrote: Further to this, it seems the stacktrace

Re: [Mono-list] HttpWebRequest.GetResponse() can trigger an uncatchable exception

2011-07-10 Thread James Wright
Is there a possibility this error is caused by the client dropping the connection before sending the full request, rather than heavy load? James On 10/07/2011 10:31, Christopher David Howie wrote: On Sat, 9 Jul 2011 11:50:34 -0400, Gonzalo Paniagua Javier wrote: Not much I can do

[Mono-list] Apache+mod_mono: Auto generated encryption keys not saved error

2012-01-24 Thread James Wright
Hello, I'm running Mono 2.10.2 with Apache 2 + mod_mono on an Amazon Linux server and keep getting the following error in the apache error log: (info) Auto generated encryption keys not saved: System.Security.SecurityException: No access to the given key at

Re: [Mono-list] Apache+mod_mono: Auto generated encryption keys not saved error

2012-01-24 Thread James Wright
(such as a directory tree for the registry keys)? Thanks, James On 25/01/2012 02:04, Gonzalo Paniagua Javier wrote: On Tue, Jan 24, 2012 at 3:20 PM, James Wright james.wri...@jigsawdezign.com wrote: Hello, I'm running Mono 2.10.2 with Apache 2 + mod_mono on an Amazon Linux server and keep getting

Re: [Mono-list] Apache+mod_mono: Auto generated encryption keys not saved error

2012-01-25 Thread James Wright
On 25/01/2012 03:33, Uli Hertlein wrote: On 25/01/2012 13:39, James Wright wrote: Thanks for your reply Gonzalo, however I couldn't find the registry directory anywhere on the file system. There is no /etc/mono but there is a /etc/opt/novell/mono/ directory which contains 2.0 and 4.0 directories

[Mono-list] Apache + mod_mono + mod_rewrite?

2012-02-07 Thread James Wright
I'm running an MVC web application on Mono 2.10.2 with Apache 2 on Linux. Is it possible to rewrite the url using mod_rewrite in conjunction with using mod_mono? I have attempted to do this and it seems the MVC web app is picking up the original url instead of the rewritten one... Anyone

Re: [Mono-list] Apache + mod_mono + mod_rewrite?

2012-02-07 Thread James Wright
Ok solved, had to use the [PT] (pass-through) flag on my mod_rewrite rules! Thanks, James On 08/02/2012 00:33, James Wright wrote: I'm running an MVC web application on Mono 2.10.2 with Apache 2 on Linux. Is it possible to rewrite the url using mod_rewrite in conjunction with using

Re: [Mono-list] Questions about coding style

2012-08-20 Thread James Wright
I'd create ConnectionFactory class, although feel free to ignore me, just thinking off the top of my head! :-) public class ConnectionFactory { private static MySqlConnection _connection; public MySqlConnection GetConnection() { if (_connection == null) {

Re: [Mono-list] Questions about coding style

2012-08-20 Thread James Wright
Unless I'm mistaken .NET connections are pooled for you, so I don't think you'll be gaining much from keeping one instance of the connection always open as the framework is already doing just that. My advice is don't worry about it until you have to... chances are it won't be a problem in

Re: [Mono-list] Single File Build Failed Exception in ASP.NET MVC Website

2013-04-21 Thread James Wright
Which version of Mono 3.0.x is considered stable? I can find notes for 3.0.10 here: http://www.mono-project.com/Release_Notes_Mono_3.0.9 But only source tarballs for up to 3.0.7 here: http://download.mono-project.com/sources/mono/ It'd be good to know if this will fix the

Re: [Mono-list] Where is mono 3.0.10 tarball file?

2013-04-22 Thread James Wright
I'd prefer to have the option of downloading the mono 3.0.10 tarball from that location also! Thanks, James On 23/04/2013 00:31, J.P. wrote: Hello. I want to compile the tarball in my CentOS box. (not thru git) Please update /source/mono directory on download. Thank you.

[Mono-list] Building mono 3.012 / libgdiplus / xsp / mod_mono from source tarballs

2013-07-17 Thread James Wright
I recently tried upgrading from Mono 2.10.8 to Mono 3.0.12 on my Amazon Linux box (CentOS based I think) but hit a few snags along the way; 1) In addition to just the Mono tarball I also need libgdiplus, xsp, and mod_mono. The versions provided on the download page seem to be updated,

[Mono-list] Building mono 3.012 / libgdiplus / xsp / mod_mono from source tarballs

2013-07-17 Thread James Wright
I recently tried upgrading from Mono 2.10.8 to Mono 3.0.12 on my Amazon Linux box (CentOS based I think) but hit a few snags along the way; 1) In addition to just the Mono tarball I also need libgdiplus, xsp, and mod_mono. The versions provided on the download page seem to be updated,

Re: [Mono-list] Mono 3.2.0 Asp.NET MVC Memory Leak

2013-08-16 Thread James Wright
/mod_mono_serve Is this memory usage normal, is there any easy way to help diagnose the leak? Thanks, James On 01/08/2013 09:29, Andrés G. Aragoneses wrote: On 31/07/13 22:13, James Wright wrote: I've recently upgraded our web server from Mono 2.10.8 to Mono 3.2.0 (built from

[Mono-list] HttpOnly cookies flag supported?

2013-10-04 Thread James Wright
Hi, I've added the following piece of config to my Web.config to default the FormsAuthentication cookie as HttpOnly; system.web ... httpCookies httpOnlyCookies=true / ... /system.web However the authentication cookie still does not show as being marked as

Re: [Mono-list] HttpOnly cookies flag supported?

2013-10-04 Thread James Wright
connections. James On 04/10/2013 17:01, Ian Norton wrote: Do you mean httpsonly? On 4 Oct 2013 16:51, James Wright james.wri...@jigsawdezign.com mailto:james.wri...@jigsawdezign.com wrote: Hi, I've added the following piece of config to my Web.config to default

Re: [Mono-list] HttpOnly cookies flag supported?

2013-10-04 Thread James Wright
, then); if (requireSSL) cookie.Secure = true; if (!String.IsNullOrEmpty (cookie_domain)) cookie.Domain = cookie_domain; return cookie; } Am I missing something? James On 04/10/2013 18:25, James Wright wrote: Nope, it's definitely httpOnly, as in the browser will not let client-side script access

Re: [Mono-list] HttpOnly cookies flag supported?

2013-10-04 Thread James Wright
I think it should just default to setting the cookie.HttpOnly flag to true at all times, as there is no reason at all for the AuthCookie to be accessible by client-side script, is there? James On 04/10/2013 18:35, James Wright wrote: Ok, so from looking at the source, I don't where

[Mono-list] Partiting cpanel in fedoracore

2006-01-13 Thread Michael James Wright
Hi Folks I'm running fedoracore 4 on a acer aspire 3610 laptop I have an 80 GB harddrive. ? how do i partition the cpanel scheme. The following partition scheme is recommended: NOTE: Different partition schemes are suitable for different types of hosting. Some servers may require space to

[Mono-list] Earn up to 4,000 a month ask me how...

2006-03-09 Thread Michael James Wright
Hi members you looking for opportunity as a telecommunications provider well don't look any further, For more than 10 years, This company has direct selling opportunity has helped hundreds of thousands of people just like you control their destiny and build successful businesses. The energy