[Mono-aspnet-list] NPGSQL - Connection Refused

2014-07-15 Thread eSPiYa
I created an ASP.NET MVC4 Web API application which is hosted on Apache2 server through mod_mono. The PostgreSQL database server is hosted on the same machine. It works fine on my development machine(Windows), using SSH-tunnel to access the database server. But whenever I try to put it on the

[Mono-dev] Which SQLite?

2014-07-15 Thread Edward Ned Harvey (mono)
For cross-platform compatibility with mono on mac/linux, and .NET on windows... What is recommended SQLite? When I add System.Data.SQLite.Core via NuGet in windows... it seems to be incompatible with mono... It looks like there is SQLite built-in to mono via Mono.Data.SQLite, and I could

Re: [Mono-dev] Which SQLite?

2014-07-15 Thread Brandon Perry
In the past, I have just shipped Mono.Data.SQLite with my apps on windows. On Tue, Jul 15, 2014 at 1:55 PM, Edward Ned Harvey (mono) edward.harvey.m...@clevertrove.com wrote: For cross-platform compatibility with mono on mac/linux, and .NET on windows... What is recommended SQLite?

[Mono-dev] MIPS64 port status

2014-07-15 Thread Jose A. Saumell
Hello! I have the task to port mono runtime to an Octeon MIPS64 based platform running OpenWrt. I have tried to cross-compile but eventually run into an error: ake[7]: Entering directory `/home/jose/erl/openwrt/build_dir/target-mips64_octeon_64_eglibc-2.19/mono-3.0.10/mono/utils'

Re: [Mono-dev] MIPS64 port status

2014-07-15 Thread Zoltan Varga
Hi, mips32 support used to work a few years ago, i.e. it could run a full bootstrap and a large portion of the mono test suite. It might be somewhat broken now but it could probably be fixed with a small amount of work. Doing a new port, even a 32-64 bit port is a large amount of work.

[Mono-dev] How to step into mono codes?

2014-07-15 Thread morteza adi
I cloned the mono codes and build the code in my pc. In monodevelope I unchecked the do not step into mono code however it doesn't work. I dont known where to put my mono codes for IDE I use ubuntu 14.04 and I tried /usr/..src Also /build/buildd with no success! How can I step into mono?

[Mono-dev] Hi System.xml.parse error in compiling mono

2014-07-15 Thread morteza adi
*Hi* *I successfully make install the mono code in ubuntu 12.04* *when i do the same steps in ubuntu 14.04 i get this error* Bootstrap compiler: Mono C# compiler version 3.2.8.0 MCS [build] System.Xml.dll System.Xml.XPath/Parser.jay(12,0): error CS1525: Unexpected symbol `using'

[Mono-list] Embedded API: calling explicit interface properties

2014-07-15 Thread Jonathan Mitchell
Hi I have a class that implements the following two interfaces and I am having trouble accessing explicit interface properties via the embedded API. My unit tests fail (see below). The explicit interface properties are found okay but the property assignment fails in a way which makes me think

Re: [Mono-list] Embedded API: calling explicit interface properties

2014-07-15 Thread Robert Jordan
On 15.07.2014 13:24, Jonathan Mitchell wrote: Hi I have a class that implements the following two interfaces and I am having trouble accessing explicit interface properties via the embedded API. My unit tests fail (see below). The explicit interface properties are found okay but the property

Re: [Mono-list] Embedded API: calling explicit interface properties

2014-07-15 Thread Jonathan Mitchell
On 15 Jul 2014, at 14:50, Robert Jordan robe...@gmx.net wrote: On 15.07.2014 13:24, Jonathan Mitchell wrote: Hi I have a class that implements the following two interfaces and I am having trouble accessing explicit interface properties via the embedded API. IIRC, the name of

[Mono-list] Which SQLite?

2014-07-15 Thread Edward Ned Harvey (mono)
For cross-platform compatibility with mono on mac/linux, and .NET on windows... What is recommended SQLite? When I add System.Data.SQLite.Core via NuGet in windows... it seems to be incompatible with mono... It looks like there is SQLite built-in to mono via Mono.Data.SQLite, and I could

Re: [Mono-list] Which SQLite?

2014-07-15 Thread Luke Pulverenti
I will respond with what we're doing with Media Browser in case anyone can offer suggestions. We are using the nuget package for windows. There is only one single line of code that knows our data provider is Sqlite:

Re: [Mono-list] Embedded API: calling explicit interface properties

2014-07-15 Thread Jonathan Mitchell
On 15 Jul 2014, at 16:31, Jonathan Mitchell jonat...@mugginsoft.com wrote: When using the IReferenceObject1 I see the accessors without the prefix and reporting the correct argument type. To me it looks like we are good to go - but the the unit test still fails. Perhaps I am sort of