Re: [Mono-dev] Review of PR1354 - add Request.Abort()

2014-10-19 Thread Martin Thwaites
Thanks Miguel, From the documentation, it simply says it throws an exception if not integrated so that should be simple to add. I wasn't aware that the pipelines existed in mono which is why I've not done it. Is there an example of doing a check that you know of off the top of your head? In

[Mono-dev] State of aspnetwebstack on mono

2014-10-19 Thread Martin Thwaites
Hi all, Just wanted to give a quick update on where I'm at with getting things implemented for the aspnetwebstack to work on mono. As I've said before, my goal is to make it so that the aspnetwebstack solution will compile against mono, without tweaking anything (this is stage 1). It's proving

[Mono-dev] How to create https site with XSP-server?

2014-10-19 Thread Арсен Шнурков
please give any comments to this question: http://stackoverflow.com/questions/26450340/please-explain-how-to-work-with-tls-in-the-xsp-server thanks. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

[Mono-dev] DllImport on Mac

2014-10-19 Thread Brandon Perry
I have a set of C# bindings I have written for the ClamAV project which work on Windows and Linux by simply DllImport(clamav). On mac, libclamav.6.dylib gets installed into /usr/lib/x86_64/libclamav.6.dylib I cannot for the life of my figure out how to reference this library on mac for a

Re: [Mono-dev] DllImport on Mac

2014-10-19 Thread Daniel Lo Nigro
DllImport(clamav) should still work. Try running your app with the MONO_LOG_LEVEL=debug environment variable set and see which paths it's trying to load the library from: MONO_LOG_LEVEL=debug mono yourapp.exe Since your library is 64-bit (as it's in /usr/lib/x86_64/), ensure you are running a

Re: [Mono-list] Consts.cs vs. Consts.cs.in

2014-10-19 Thread Jonathan Pryor
On Oct 16, 2014, at 12:54 PM, Maury Markowitz maury.markow...@gmail.com wrote: 1) Almost all of the projects refer to /System/Consts.cs. I do not have such a file, but I do have Consts.cs.in, which looks a lot like a cs file. I am unfamiliar with .in - is this supposed to be converted into a

Re: [Mono-list] Asp.Net questions

2014-10-19 Thread Daniel Lo Nigro
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: - ASP.NET MVC 4 - Cassette for CSS/JS combination and minification - ServiceStack OrmLite with MySql.Data for the data access layer - SimpleInjector for IoC / Dependency