Re: [vfs] does vfs webdav support https

2012-05-31 Thread Ralph Goers
Well darn. I keep thinking this should be as simple as using webdavs as the protocol but we never implemented a WebdavsFileProvider. Ralph On May 31, 2012, at 8:53 PM, Dan Tran wrote: > Can somehone shows me an example on how to configure webdav:// url to use > https? > > Thanks > > -D > >

[vfs] does vfs webdav support https

2012-05-31 Thread Dan Tran
Can somehone shows me an example on how to configure webdav:// url to use https? Thanks -D - To unsubscribe, e-mail: user-unsubscr...@commons.apache.org For additional commands, e-mail: user-h...@commons.apache.org

Re: [math] PolynomialFitter.fit() stalls

2012-05-31 Thread Kurt Pernstich
Hi, thanks for your quick response !! My guess is that it will throw an exception if you wait long enough. ;-) > Well, not within 90 min ... This looks like a bug. Could you please open a ticket on the bug tracking > system[1]? Once the issue is created, you should also upload a fully > containe

Re: Commons daemon - stop the service

2012-05-31 Thread Mladen Turk
On 05/31/2012 07:53 PM, James Wang wrote: Thanks for the comments. I set both start mode and stop mode to JVM. OK. What will happen when a thread needs 20 more minutes to complete its job? Well for something like that procrun is not the toolkit to use. First of all, if you need to frequentl

RE: Commons daemon - stop the service

2012-05-31 Thread James Wang
Thanks for the comments. I set both start mode and stop mode to JVM. My test showed that worked best for me. The procrun documentation says that to use this mode, the start method should not stop until stop is called. My start method exits immediately but it did not seem to be the cause of my gr

Re: [math] PolynomialFitter.fit() stalls

2012-05-31 Thread Gilles Sadowski
On Thu, May 31, 2012 at 07:00:58PM +0200, Thomas Neidhart wrote: > On 05/31/2012 06:12 PM, Gilles Sadowski wrote: > > Hi. > > > >> Hi, in certain cases I ran into the problem that the PolynomialFitter.fit() > >> method stalls, meaning that it does not return, nor throw an Exception. Is > >> there

Re: [math] PolynomialFitter.fit() stalls

2012-05-31 Thread Gilles Sadowski
Hi. > > > > [snip test case] > > > This looks like a bug. Could you please open a ticket on the bug tracking > > system[1]? Once the issue is created, you should also upload a fully > > contained > > unit test demonstrating the problem. > > This is most likely related to the GaussNewtonOptimi

Re: [math] PolynomialFitter.fit() stalls

2012-05-31 Thread Thomas Neidhart
On 05/31/2012 06:12 PM, Gilles Sadowski wrote: > Hi. > >> Hi, in certain cases I ran into the problem that the PolynomialFitter.fit() >> method stalls, meaning that it does not return, nor throw an Exception. Is >> there a way to tell the PolynomialFitter to iterate only N-times to ensure >> that

Re: [math] PolynomialFitter.fit() stalls

2012-05-31 Thread Thomas Neidhart
On 05/31/2012 06:12 PM, Gilles Sadowski wrote: > Hi. > [snip test case] > This looks like a bug. Could you please open a ticket on the bug tracking > system[1]? Once the issue is created, you should also upload a fully contained > unit test demonstrating the problem. This is most likely related

Re: Commons daemon - stop the service

2012-05-31 Thread Mladen Turk
On 05/31/2012 02:37 PM, James Wang wrote: I need some insights on how procrun shuts down an application. Procrun has a parameter called “StopTimeout” which Defines the timeout in seconds that procrun waits for service to exit gracefully. What happens after the timeout period? Doe procrun shut

Re: [math] PolynomialFitter.fit() stalls

2012-05-31 Thread Gilles Sadowski
Hi. > Hi, in certain cases I ran into the problem that the PolynomialFitter.fit() > method stalls, meaning that it does not return, nor throw an Exception. Is > there a way to tell the PolynomialFitter to iterate only N-times to ensure > that my program does not stall? My guess is that it will th

Re: [configuration] attributes in xml config don't apply to all entries of a list

2012-05-31 Thread Oliver Heger
Am 31.05.2012 08:30, schrieb Alexander Selg: Hi Oliver, thanks for your clarification. From my point of view it would be more straightforward assigning attributes to all nodes of a list. Otherwise the list feature seems incomlete to me. Our lists are a bit longish so I was very happy that I ca

[math] PolynomialFitter.fit() stalls

2012-05-31 Thread Kurt Pernstich
Hi, in certain cases I ran into the problem that the PolynomialFitter.fit() method stalls, meaning that it does not return, nor throw an Exception. Is there a way to tell the PolynomialFitter to iterate only N-times to ensure that my program does not stall? Maybe I should note that when I used a L

Re: [scxml] ANN: SCION-Java project

2012-05-31 Thread Jacob Beard
Will do. Thanks, Jake On Thu, May 31, 2012 at 9:31 AM, Rahul Akolkar wrote: > If you want to provide a patch to the Commons SCXML home page source > via JIRA, we could add this to the "Related Projects" section [1]. > > -Rahul > > [1] http://commons.apache.org/scxml/#Related_Projects > > > On We

Re: [scxml] ANN: SCION-Java project

2012-05-31 Thread Rahul Akolkar
If you want to provide a patch to the Commons SCXML home page source via JIRA, we could add this to the "Related Projects" section [1]. -Rahul [1] http://commons.apache.org/scxml/#Related_Projects On Wed, May 30, 2012 at 5:36 PM, Jacob Beard wrote: > Hi, > > While not specifically related to S

Commons daemon - stop the service

2012-05-31 Thread James Wang
I need some insights on how procrun shuts down an application. Procrun has a parameter called "StopTimeout" which Defines the timeout in seconds that procrun waits for service to exit gracefully. What happens after the timeout period? Doe procrun shut down the JVM? A more general question is: ho