[Mono-aspnet-list] How make ASP.Net recompile page on changes?

2012-12-17 Thread donrhummy
When I make changes to an aspx page (and/or the aspx.cs codebehind), the page does not get recompiled. It appears that ASP.Net (the apache+mono web server) is not recompiling despite changes to the file. The only way to get it to recompile is to change web.config and then restart the web server!

Re: [Mono-list] App: Cross Platform Programming

2012-12-17 Thread svenesaar
Thanks to all Members for the Answers. Thanks a lot -- View this message in context: http://mono.1490590.n4.nabble.com/App-Cross-Platform-Programming-tp4657778p4657793.html Sent from the Mono - General mailing list archive at Nabble.com. ___

[Mono-list] Questions on Mono.Unix.Pipes

2012-12-17 Thread mickeyf
I have some questions about Mono.Unix.Pipes. I have been using this with some success, but I am relatively new to Linux, and the mono documentation that I have found is missing or incomplete. The Linux manual pages docs on pipes are clearly referring to a different animal than this.

Re: [Mono-list] Questions on Mono.Unix.Pipes

2012-12-17 Thread Ian Norton
Sounds like for you it would be easier to just pinvoke a byte array. I guess it depends how much data is involved. On Mon, Dec 17, 2012 at 05:05:07PM +, mickeyf wrote: I have some questions about Mono.Unix.Pipes. I have been using this with some success, but I am relatively new to Linux,

Re: [Mono-list] Questions on Mono.Unix.Pipes

2012-12-17 Thread mickeyf
Sorry, I'm not understanding your response. Are you suggesting I somehow read a byte array directly rather than sending it back via a pipe (which I'm doing now)? I'm looking into unix domain sockets as an alternative, but I struggling to find documentation and examples for that also. -- View

Re: [Mono-list] Questions on Mono.Unix.Pipes

2012-12-17 Thread Bill Six
Since you are relatively new to Linux, write two simple programs in C which use pipes to communicate (the first program is the producer, the second is the consumer). You'll need fork, exec, and probably dup2. Once done, porting the consumer to Mono is straightforward. (Assuming you know C and

Re: [Mono-list] HttpWebRequest concurrency issues

2012-12-17 Thread Esben Laursen
Den 14-12-2012 15:17, Daniel Lo Nigro skrev: You should try the same code in Mono 3.0.x to see if the bug has been fixed. You can try out the Parallel Mono packages for Debian, they should work on Ubuntu: http://inorton.wordpress.com/pmono-parallel-mono-debian-pacakges/ Otherwise, it's

Re: [Mono-list] Questions on Mono.Unix.Pipes

2012-12-17 Thread mickeyf
I have long had a working C# app that consumes data piped from the C library that I have written. This has nothing to do with forking a new process or child processes. What I am looking for is the detailed and complete documentation on correct use of Mono.Unix.UnixPipes - the documentation for

Re: [Mono-list] Questions on Mono.Unix.Pipes

2012-12-17 Thread Jonathan Pryor
On Dec 17, 2012, at 12:05 PM, mickeyf mic...@thesweetoasis.com wrote: I have been using this with some success, but I am relatively new to Linux, and the mono documentation that I have found is missing or incomplete. Is it? http://docs.go-mono.com/?link=T%3aMono.Unix.UnixPipes