[Mono-dev] self hosted WCF service with client certificates?

2015-11-08 Thread Darkness
Hi, I initially asked in the mono-general list, but was suggested to post here. I currently have the following up and running without issues: * self hosted WCF service, compiled with .Net/Visual studio 2013, running on Linux+mono 3.12.0 * WCF service uses basicHttpBinding with transport security

Re: [Mono-list] mono embedding in c++: how to get a array from C# code?

2015-11-08 Thread Jonathan Mitchell
> On 8 Nov 2015, at 02:41, sunsflower wrote: > > I've tried to use a monoclassfield but it doesn't work with a string array in > C#. the return value is invalide. > c++: > > MonoClassField* field; > field = mono_class_get_field_from_name(klass, "entry"); >

Re: [Mono-list] mono embedding in c++: how to get a array from C# code?

2015-11-08 Thread sunsflower
//I reckon that mono_field_get_value will return a MonoArray, //Try something a bit like this: // //MonoArray* monoArray = NULL; //mono_field_get_value(obj, field, monoArrayl); //MonoString *monoString = mono_array_get(monoArray, MonoString *, 0) //char *s = mono_string_to_utf8(monoString); //

Re: [Mono-list] mono embedding in c++: how to get a array from C# code?

2015-11-08 Thread sunsflower
thanks, it did work! only I need to pass a monoarray** to this function "mono_field_get_value(obj, field, );" . Mono is so poor documented, but it is really good! -- View this message in context: