Re: [Mono-dev] Bug in mono 3.0.1 MVC3 File/FileResult

2013-02-07 Thread SirNoSkill
Hi, I've forwarded the error to the nginx mailing list. http://forum.nginx.org/read.php?2,235985,235988#msg-235988 The response I got: It's bad idea to use Transfer-Encoding while working via CGI and derived protocols like FastCGI. Quote from RFC 3875,

Re: [Mono-dev] Object.GetType() is virtual on mono but is not on .NET?

2013-02-07 Thread Rafael Teixeira
looks like a bug. please report Rafael Monoman Teixeira --- The most exciting phrase to hear in science, the one that heralds new discoveries, is not 'Eureka!' (I found it!) but 'That's funny ...' Isaac Asimov US science fiction novelist scholar (1920 - 1992)

[Mono-list] Running a shell builtin from mono

2013-02-07 Thread Mathias Tausig
Hy! I want to execute a shell builtin command from mono on a linux box. (To be precise: I want to read the current umask with the 'umask' command). Using the Process class doesn't work, since it looks for an actual command file to run. Is there a way to do this? cheers Mathias

Re: [Mono-list] Running a shell builtin from mono

2013-02-07 Thread Ian Norton
On Thu, Feb 07, 2013 at 11:08:22AM +, Mathias Tausig wrote: Hy! I want to execute a shell builtin command from mono on a linux box. (To be precise: I want to read the current umask with the 'umask' command). Using the Process class doesn't work, since it looks for an actual command

Re: [Mono-list] Running a shell builtin from mono

2013-02-07 Thread Ulrich Hertlein
Hi, On 07.02.2013, at 23:05, Ian Norton ian.norton-bad...@thales-esecurity.com wrote: On Thu, Feb 07, 2013 at 11:08:22AM +, Mathias Tausig wrote: I want to execute a shell builtin command from mono on a linux box. (To be precise: I want to read the current umask with the 'umask'

Re: [Mono-list] Running a shell builtin from mono

2013-02-07 Thread Jonathan Pryor
On Feb 7, 2013, at 8:27 AM, Ulrich Hertlein u.hertl...@gmail.com wrote: Any particular reason why you don't just call the POSIX syscall directly, w/o exec a shell? Which is bound as Syscall.umask():

Re: [Mono-list] Running a shell builtin from mono

2013-02-07 Thread Mathias Tausig
On Thursday 07. February 2013 12:05:32 Ian Norton wrote: On Thu, Feb 07, 2013 at 11:08:22AM +, Mathias Tausig wrote: Hy! I want to execute a shell builtin command from mono on a linux box. (To be precise: I want to read the current umask with the 'umask' command). Using the Process

[Mono-list] Accept two ports

2013-02-07 Thread acrym
I have a Silverlight application that uses sockets. I'm trying to get Mono to accept TCP connections on ports 943 and 4530. But I am fairly new to Mono and Apache. Could someone tell me what I should put in my httpd.conf file? -- View this message in context:

Re: [Mono-list] Running a shell builtin from mono

2013-02-07 Thread Ulrich Hertlein
Hi Mathias, On Fri, Feb 8, 2013 at 2:10 AM, Mathias Tausig mathias.tau...@a-cert.atwrote: On Thursday 07. February 2013 12:05:32 Ian Norton wrote: On Thu, Feb 07, 2013 at 11:08:22AM +, Mathias Tausig wrote: Hy! I want to execute a shell builtin command from mono on a linux box.