Re: [Mono-dev] Renew DHCP based IP address

2016-03-01 Thread techi eth
OK.

Just describing below issue.Please suggest hint for handling issue.

I have renew lease of dhcp due to change in network setting but i don't
found way to get new ip address.in general dhcp client will take some
second to get the IP address so i am looking any event or better way to get
the changed IP address.

i hope i able to clarify my issue.

Thanks



On Tue, Mar 1, 2016 at 5:31 PM, Miguel de Icaza  wrote:

> No
>
> On Tue, Mar 1, 2016 at 8:33 AM, techi eth  wrote:
>
>> Hi,
>>
>> Is it possible to renew DHCP based IP address using System.Net.
>>
>> Techi
>>
>>
>>
>>
>> ___
>> Mono-devel-list mailing list
>> Mono-devel-list@lists.ximian.com
>> http://lists.ximian.com/mailman/listinfo/mono-devel-list
>>
>>
>
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Embedded API : Error initialising the configuration system

2016-03-01 Thread Jonathan Mitchell
Hi

On Mono 4.0.4.4

My app uses the embedded API to run managed code in a Cocoa OS X environment.
Just recently, having updated some of my managed code, I have been getting 
errors from the managed configuration system.

Error initialising the configuration system
System.Configuration.ConfigurationErrorsException.

I use mono_jit_exec() to run an exe assembly with a static Main().

Prior to this I call mono_domain_set_config() with the path to the exe assembly 
folder and the path to the exe assemble config.

Have I missed something?

Thanks

Jonathan
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Renew DHCP based IP address

2016-03-01 Thread Miguel de Icaza
No

On Tue, Mar 1, 2016 at 8:33 AM, techi eth  wrote:

> Hi,
>
> Is it possible to renew DHCP based IP address using System.Net.
>
> Techi
>
>
>
>
> ___
> Mono-devel-list mailing list
> Mono-devel-list@lists.ximian.com
> http://lists.ximian.com/mailman/listinfo/mono-devel-list
>
>
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


[Mono-dev] Renew DHCP based IP address

2016-03-01 Thread techi eth
Hi,

Is it possible to renew DHCP based IP address using System.Net.

Techi
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Unix Signal in mono

2016-03-01 Thread techi eth
Thanks.

I am able to use signal between process!!!

On Mon, Feb 29, 2016 at 9:33 PM, Jonathan Pryor  wrote:

> On Feb 29, 2016, at 8:18 AM, techi eth  wrote:
> > Thanks for quick hint.
> > We can receive signal by using signal handler using
> Mono.Unix.Native.Stdlib.signal.
> > I am trying to check possibility of sending signal from one process to
> another.
> >
> > Example : If i have two process (P1 & P2) & P1 want to send SIGTERM to
> P2.
>
> Don’t use Stdlib.signal() to setup signal handlers. It’s [Obsolete]
> because it isn’t signal safe, i.e. it isn’t safe to invoke managed code
> from within a signal handler.
>
> Instead, to receive a notification of signal delivery, you should use
> UnixSignal:
>
> http://www.jprl.com/Blog/archive/development/mono/2008/Feb-08.html
> http://docs.go-mono.com/?link=T%3aMono.Unix.UnixSignal
> https://gist.github.com/jonpryor/1555261
>
> To *send* a signal, use Syscall.kill().
>
>  - Jon
>
>
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list