Re: [Mono-dev] Error trying to compile mono on CentOs 5

2015-06-11 Thread Timotheus Pokorra
 Supplementary question - I am trying to load a time zone using:

 TimeZoneInfo.FindSystemTimeZoneById(GMT Standard Time)
Try to use TimeZoneInfo.FindSystemTimeZoneById(GMT) instead.

The timezone must exist as a file in /usr/share/zoneinfo
see for details:
https://github.com/mono/mono/blob/mono-4.0.0-branch/mcs/class/corlib/System/TimeZoneInfo.cs#L451
and 
https://github.com/mono/mono/blob/mono-4.0.0-branch/mcs/class/corlib/System/TimeZoneInfo.cs#L163

hope that helps,
  Timotheus
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list


Re: [Mono-dev] Error trying to compile mono on CentOs 5

2015-06-11 Thread Nikki Locke
What a star you are, Timotheus!

Supplementary question - I am trying to load a time zone using:

TimeZoneInfo.FindSystemTimeZoneById(GMT Standard Time)

and I get:

Exception of type 'System.TimeZoneNotFoundException' was thrown.
  at System.TimeZoneInfo.FindSystemTimeZoneByFileName (System.String id, 
System.String filepath) [0x00018] in /usr/src/redhat/BUILD/mono-
4.0.1/mcs/class/corlib/System/TimeZoneInfo.cs:464
  at System.TimeZoneInfo.FindSystemTimeZoneById (System.String id) [0x0005e] in 
/usr/src/redhat/BUILD/mono-4.0.1/mcs/class/corlib/System/TimeZoneInfo.cs:451

is this something I have not configured properly, or is it not supported?

Timotheus Pokorra wrote:
  I have mono 3.12 packages built for CentOS5 here:
  https://lbs.solidcharity.com/package/tpokorra/mono/mono-opt
 
  I did not upgrade them to 4.0, but if that would help you, I could have a 
  look.
 I have just built the Mono 4.0.1.44 packages for CentOS5, 32 bit and 64 bit.
 
 hope this helps,
   Timotheus



-- 
Nikki Locke, Trumphurst Ltd.  PC  Unix consultancy  programming
http://www.trumphurst.com/


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


Re: [Mono-dev] Error trying to compile mono on CentOs 5

2015-06-11 Thread Nikki Locke
Thanks again, Timotheus - I am now using GB time zone on Linux (not GMT, as I 
want BST in summer) - 
of course, that doesn't work on Windows, so I have put in conditional code.

Timotheus Pokorra wrote:
  Supplementary question - I am trying to load a time zone using:
 
  TimeZoneInfo.FindSystemTimeZoneById(GMT Standard Time)
 Try to use TimeZoneInfo.FindSystemTimeZoneById(GMT) instead.
 
 The timezone must exist as a file in /usr/share/zoneinfo
 see for details:
 https://github.com/mono/mono/blob/mono-4.0.0-branch/mcs/class/corlib/System/TimeZoneInfo.cs#L451
 and 
 https://github.com/mono/mono/blob/mono-4.0.0-branch/mcs/class/corlib/System/TimeZoneInfo.cs#L163
 
 hope that helps,
   Timotheus

-- 
Nikki Locke, Trumphurst Ltd.  PC  Unix consultancy  programming
http://www.trumphurst.com/


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


Re: [Mono-dev] Mono/Windows Services

2015-06-11 Thread Slide
Mono has mono-service2 that you can use to wrap a Windows service on *nix
to become a daemon that you can issue start and stop commands to like most
daemons.

On Thu, Jun 11, 2015 at 1:50 PM Paul McEwan paul.mce...@atlium.com wrote:

 I have a Windows Service that I converted to Mono.  What's the recommended
 way to keep it running in the background like a Windows Service -- i.e. you
 start it and it keeps running until you stop it?

 Should you just put a loop in the main thread that sleeps and wakes up
 every second and performs work?

 Or is there a better way?


 --

 This message contains confidential information and is intended only for
 the individual named. If you are not the named addressee you should not
 disseminate, distribute or copy this e-mail. Please notify the sender
 immediately by e-mail if you have received this e-mail by mistake and
 delete this e-mail from your system. E-mail transmission cannot be
 guaranteed to be secure or error-free as information could be intercepted,
 corrupted, lost, destroyed, arrive late or incomplete, or contain viruses.
 The sender therefore does not accept liability for any errors or omissions
 in the contents of this message, which arise as a result of e-mail
 transmission. If verification is required please request a hard-copy
 version. Atlium Global Services, 3438 East Lake Rd, Ste 14, PMB #664, Palm
 Harbor, FL  34685


 ___
 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] Mono/Windows Services

2015-06-11 Thread Paul McEwan
I have a Windows Service that I converted to Mono.  What's the recommended
way to keep it running in the background like a Windows Service -- i.e. you
start it and it keeps running until you stop it?

Should you just put a loop in the main thread that sleeps and wakes up
every second and performs work?

Or is there a better way?

-- 

--

This message contains confidential information and is intended only for the 
individual named. If you are not the named addressee you should not 
disseminate, distribute or copy this e-mail. Please notify the sender 
immediately by e-mail if you have received this e-mail by mistake and 
delete this e-mail from your system. E-mail transmission cannot be 
guaranteed to be secure or error-free as information could be intercepted, 
corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. 
The sender therefore does not accept liability for any errors or omissions 
in the contents of this message, which arise as a result of e-mail 
transmission. If verification is required please request a hard-copy 
version. Atlium Global Services, 3438 East Lake Rd, Ste 14, PMB #664, Palm 
Harbor, FL  34685

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


Re: [Mono-dev] Mono/Windows Services

2015-06-11 Thread Oskar Berggren
You can use the mono-service tool to start the application through the
ServiceBase class, as in Windows.

But ServiceBase or not, typically you would enter some sort of mainloop.
Most services will _wait_ for something to happen and not wake up until it
does. High-frequency timer-based polling should only be used as a last
resort - i.e. if there is no practically useful construct that you can wait
on. You can do timer-based if you have long sleep times (such as every hour
or less), or if the service's purpose is time-based data collection.

/Oskar




2015-06-11 21:49 GMT+01:00 Paul McEwan paul.mce...@atlium.com:

 I have a Windows Service that I converted to Mono.  What's the recommended
 way to keep it running in the background like a Windows Service -- i.e. you
 start it and it keeps running until you stop it?

 Should you just put a loop in the main thread that sleeps and wakes up
 every second and performs work?

 Or is there a better way?


 --

 This message contains confidential information and is intended only for
 the individual named. If you are not the named addressee you should not
 disseminate, distribute or copy this e-mail. Please notify the sender
 immediately by e-mail if you have received this e-mail by mistake and
 delete this e-mail from your system. E-mail transmission cannot be
 guaranteed to be secure or error-free as information could be intercepted,
 corrupted, lost, destroyed, arrive late or incomplete, or contain viruses.
 The sender therefore does not accept liability for any errors or omissions
 in the contents of this message, which arise as a result of e-mail
 transmission. If verification is required please request a hard-copy
 version. Atlium Global Services, 3438 East Lake Rd, Ste 14, PMB #664, Palm
 Harbor, FL  34685



 ___
 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


Re: [Mono-dev] Mono/Windows Services

2015-06-11 Thread Bryan Crotaz
Turn an exe into a daemon:

http://serverfault.com/questions/135859/is-there-a-standard-way-to-make-daemon-in-debian

To keep it idle, I'd suggest using Task objects, with a lambda for each
task with the work in it. They'll run on the thread pool. Then your main
thread should just sleep until a kill message comes in.

On 11 June 2015 at 21:49, Paul McEwan paul.mce...@atlium.com wrote:

 I have a Windows Service that I converted to Mono.  What's the recommended
 way to keep it running in the background like a Windows Service -- i.e. you
 start it and it keeps running until you stop it?

 Should you just put a loop in the main thread that sleeps and wakes up
 every second and performs work?

 Or is there a better way?


 --

 This message contains confidential information and is intended only for
 the individual named. If you are not the named addressee you should not
 disseminate, distribute or copy this e-mail. Please notify the sender
 immediately by e-mail if you have received this e-mail by mistake and
 delete this e-mail from your system. E-mail transmission cannot be
 guaranteed to be secure or error-free as information could be intercepted,
 corrupted, lost, destroyed, arrive late or incomplete, or contain viruses.
 The sender therefore does not accept liability for any errors or omissions
 in the contents of this message, which arise as a result of e-mail
 transmission. If verification is required please request a hard-copy
 version. Atlium Global Services, 3438 East Lake Rd, Ste 14, PMB #664, Palm
 Harbor, FL  34685



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




-- 
Bryan Crotaz
Managing Director
Silver Curve
___
Mono-devel-list mailing list
Mono-devel-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-devel-list