commons-daemon on windows, not honoring JvmMx setting?

2018-04-16 Thread Alex O7;Ree
I've been experimenting with prunsrv and have been able to get my java process to fire up as a windows service when using the "jvm" mode (couldn't get java or exe to work). I am noticing that the setting "--JvmMx" does not seem to be honored. According to the docs, it should. > Maximum memory poo

Re: commons-daemon on windows, not honoring JvmMx setting?

2018-04-26 Thread Alex O7;Ree
I had it set to 300, task mgr listed it at 800 On Mon, Apr 16, 2018, 9:59 AM Mark Thomas wrote: > On 16/04/18 14:37, Alex O'Ree wrote: > > I've been experimenting with prunsrv and have been able to get my java > > process to fire up as a windows service when using t

Re: commons-daemon on windows, not honoring JvmMx setting?

2018-04-26 Thread Alex O7;Ree
So 500mb overhead is normal? On Thu, Apr 26, 2018, 8:36 AM Mark Thomas wrote: > On 26/04/18 11:32, Alex O'Ree wrote: > > I had it set to 300, task mgr listed it at 800 > > That looks normal. > > "Maximum Java Heap Size" != "Maximum OS Memory footprint&qu

Re: commons-daemon on windows, not honoring JvmMx setting?

2018-04-26 Thread Alex O7;Ree
mmand line arguments do you use and how many threads are active? > > Gruss > Bernd > -- > http://bernd.eckenfels.net > > From: Alex O'Ree > Sent: Thursday, April 26, 2018 5:33:55 PM > To: Commons Users List > Subject: Re: commo

Commons bsf

2023-01-31 Thread Alex O7;Ree
Is the bsf library still supported? Looks like the website hasn't been published since 2011.

Re: Commons bsf

2023-01-31 Thread Alex O7;Ree
component. Let's see how else pipes in. > > Gary > > On Tue, Jan 31, 2023, 17:21 Alex O'Ree wrote: > > > Is the bsf library still supported? Looks like the website hasn't been > > published since 2011. > > >

jexl upgrade path from 1.x

2023-01-31 Thread Alex O7;Ree
Hi i'm doing some maintenance work on the bsf library which currently depends on a jexl 1.x. There's a few imports that aren't exactly resolving. import org.apache.commons.jexl.JexlContext; moved to import org.apache.commons.jexl3.JexlContext; import org.apache.commons.jexl.JexlHelper; unknown wh

Re: Commons bsf

2023-02-01 Thread Alex O7;Ree
Hmm if it's no longer needed, maybe consider a vote to move it to the attic On Wed, Feb 1, 2023, 7:27 AM Rony G. Flatscher (Apache) wrote: > On 01.02.2023 09:49, sebb wrote: > > On Wed, 1 Feb 2023 at 00:22, Alex O'Ree wrote: > >> No problem. There was some activit

Re: Commons bsf

2023-02-01 Thread Alex O7;Ree
I'm not sure I have commit permissions to that repo. It would be rather rude of me to just commit to a project I've never supported before. IMO On Wed, Feb 1, 2023, 7:58 AM Gilles Sadowski wrote: > Le mer. 1 févr. 2023 à 13:27, Rony G. Flatscher (Apache) > a écrit : > > > > [...] > > One thing

Re: jexl upgrade path from 1.x

2023-02-01 Thread Alex O7;Ree
Perhaps I wasn't clear. Let's pretend I'm a user of jexl 1.x looking to upgrade to a newer version. Is there any documentation for migrating to a newer version? On Tue, Jan 31, 2023 at 8:56 PM Gilles Sadowski wrote: > Hi. > > Le mer. 1 févr. 2023 à 02:37, Alex O'

[net] decoding quoted-printable?

2014-02-03 Thread Alex O7;Ree
I'm sending an email to a local mail server (hmail) using the standard javax.mail api. Here's a snippit MimeMessage message = new MimeMessage(session); InternetAddress address = new InternetAddress("receiver@local.domain"); Address[] to = {address}; message.setRecipients(RecipientType.TO, to); mes

Re: [net] decoding quoted-printable?

2014-02-03 Thread Alex O7;Ree
t;UTF8")); msg = new String(bits, "UTF8"); } catch (Exception ex){//throw from here } Any suggestions? On Mon, Feb 3, 2014 at 11:51 AM, Thomas Neidhart wrote: > On 02/03/2014 05:48 PM, Alex O'Ree wrote: >> I'm sending an email to a local mail server (hmail)

Re: [net] decoding quoted-printable?

2014-02-03 Thread Alex O7;Ree
Thanks for the tip. Problem solved with commons-email! On Mon, Feb 3, 2014 at 1:31 PM, Thomas Neidhart wrote: > On 02/03/2014 07:16 PM, Alex O'Ree wrote: >> Thanks for the quick reply. >> >> I'm running into this now. >> >> org.apache.commons.codec.De