Re: Java URL Batch Application

2009-08-10 Thread john feng
Embedding Quartz in application that is deplpoyed on a non clustered
environment is a nice solution. But not good for cluster deployment
with multiple JVMs.

John Feng

On Fri, Aug 7, 2009 at 9:58 AM, Manos Batsis wrote:
> Tom Holmes Jr. wrote:
>>
>> Sorry ... this might be off topic.  I'm a Struts1/2 and Spring MVC Java
>> developer myself.
>> And yes, I am Googling for this information as well.
>>
>> I am looking for some Java open-source app that does some batching.  I
>> basically want a java web-app where I can schedule a URL to be called at a
>> certain time with certain parameters and then store those results?
>> I'd like this to record the start-time when this was called, and the stop
>> time of when the results come back.
>>
>> It doesn't matter which framework this uses, so long as it's java and
>> open-source.
>>
>
> In case you dont find something ridiculously fitting your task, it should be
> fairly easy to patch up exactly what you want using jakarta httpclient and
> then schedule your java code to be called using Quartz/timer/cron whatever.
>
> hth,
>
> Manos
>
> -
> To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
> For additional commands, e-mail: user-h...@struts.apache.org
>
>

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: Java URL Batch Application

2009-08-08 Thread Haroon Rafique
On Yesterday at 12:36pm, THJ=>Tom Holmes Jr.  wrote:
THJ> 
THJ> [..snip..]
THJ> But again, since I am using Spring, I will stick qith Squartz.
THJ> 
THJ> Again, sorry to be off topic ... but I have some great starting points.
THJ> 
THJ> Thanks!
THJ>Tom

Perhaps Spring Batch as well...
http://static.springsource.org/spring-batch/

I haven't used it, but it might help you.

Cheers,
--
Haroon Rafique



-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: Java URL Batch Application

2009-08-07 Thread Tom Holmes Jr.

The first thing I want to do is create a basic java class.
I have to make sure that I am calling the correct URL with the correct 
parameters.

The jarkarta commons HttpClient is definitely an API I can use.

As far as scheduling, I agree, Quartz with Spring is the easiest way to go.

This really just allows me to focus on the business logic at hand ... I 
knew a java oss scheduling source was out there.
I found a few actually at:  
http://java-source.net/open-source/job-schedulers

But again, since I am using Spring, I will stick qith Squartz.

Again, sorry to be off topic ... but I have some great starting points.

Thanks!
   Tom

Burton Rhodes wrote:

Since you are already using spring, quartz would most likely be the easiest.

On 8/7/09, Manos Batsis  wrote:
  

Manos Batsis wrote:


Tom Holmes Jr. wrote:
  

Sorry ... this might be off topic.  I'm a Struts1/2 and Spring MVC
Java developer myself.
And yes, I am Googling for this information as well.

I am looking for some Java open-source app that does some batching.  I
basically want a java web-app where I can schedule a URL to be called
at a certain time with certain parameters and then store those results?
I'd like this to record the start-time when this was called, and the
stop time of when the results come back.

It doesn't matter which framework this uses, so long as it's java and
open-source.



In case you dont find something ridiculously fitting your task, it
should be fairly easy to patch up exactly what you want using jakarta
httpclient and then schedule your java code to be called using
Quartz/timer/cron whatever.
  

Oh. Checking out if jmeter can be used for recording your scenarios to
its XML and then running them using an API could be a better idea.

Cheers,

Manos

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org





-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org


  



-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: Java URL Batch Application

2009-08-07 Thread Burton Rhodes
Since you are already using spring, quartz would most likely be the easiest.

On 8/7/09, Manos Batsis  wrote:
> Manos Batsis wrote:
>> Tom Holmes Jr. wrote:
>>> Sorry ... this might be off topic.  I'm a Struts1/2 and Spring MVC
>>> Java developer myself.
>>> And yes, I am Googling for this information as well.
>>>
>>> I am looking for some Java open-source app that does some batching.  I
>>> basically want a java web-app where I can schedule a URL to be called
>>> at a certain time with certain parameters and then store those results?
>>> I'd like this to record the start-time when this was called, and the
>>> stop time of when the results come back.
>>>
>>> It doesn't matter which framework this uses, so long as it's java and
>>> open-source.
>>>
>>
>> In case you dont find something ridiculously fitting your task, it
>> should be fairly easy to patch up exactly what you want using jakarta
>> httpclient and then schedule your java code to be called using
>> Quartz/timer/cron whatever.
>
> Oh. Checking out if jmeter can be used for recording your scenarios to
> its XML and then running them using an API could be a better idea.
>
> Cheers,
>
> Manos
>
> -
> To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
> For additional commands, e-mail: user-h...@struts.apache.org
>
>

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: Java URL Batch Application

2009-08-07 Thread Manos Batsis

Manos Batsis wrote:

Tom Holmes Jr. wrote:
Sorry ... this might be off topic.  I'm a Struts1/2 and Spring MVC 
Java developer myself.

And yes, I am Googling for this information as well.

I am looking for some Java open-source app that does some batching.  I 
basically want a java web-app where I can schedule a URL to be called 
at a certain time with certain parameters and then store those results?
I'd like this to record the start-time when this was called, and the 
stop time of when the results come back.


It doesn't matter which framework this uses, so long as it's java and 
open-source.




In case you dont find something ridiculously fitting your task, it 
should be fairly easy to patch up exactly what you want using jakarta 
httpclient and then schedule your java code to be called using 
Quartz/timer/cron whatever.


Oh. Checking out if jmeter can be used for recording your scenarios to 
its XML and then running them using an API could be a better idea.


Cheers,

Manos

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: Java URL Batch Application

2009-08-07 Thread Manos Batsis

Tom Holmes Jr. wrote:
Sorry ... this might be off topic.  I'm a Struts1/2 and Spring MVC Java 
developer myself.

And yes, I am Googling for this information as well.

I am looking for some Java open-source app that does some batching.  I 
basically want a java web-app where I can schedule a URL to be called at 
a certain time with certain parameters and then store those results?
I'd like this to record the start-time when this was called, and the 
stop time of when the results come back.


It doesn't matter which framework this uses, so long as it's java and 
open-source.




In case you dont find something ridiculously fitting your task, it 
should be fairly easy to patch up exactly what you want using jakarta 
httpclient and then schedule your java code to be called using 
Quartz/timer/cron whatever.


hth,

Manos

-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Re: Java URL Batch Application

2009-08-07 Thread wilson wong
httpclient 
http://hc.apache.org/httpclient-3.x/


- Original Message 
From: Tom Holmes Jr. 
To: Struts Users Mailing List 
Sent: Friday, August 7, 2009 9:47:02 AM
Subject: Java URL Batch Application

Sorry ... this might be off topic.  I'm a Struts1/2 and Spring MVC Java 
developer myself.
And yes, I am Googling for this information as well.

I am looking for some Java open-source app that does some batching.  I 
basically want a java web-app where I can schedule a URL to be called at a 
certain time with certain parameters and then store those results?
I'd like this to record the start-time when this was called, and the stop time 
of when the results come back.

It doesn't matter which framework this uses, so long as it's java and 
open-source.

Thanks!
                            Tom


-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org




-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org



Java URL Batch Application

2009-08-07 Thread Tom Holmes Jr.
Sorry ... this might be off topic.  I'm a Struts1/2 and Spring MVC Java 
developer myself.

And yes, I am Googling for this information as well.

I am looking for some Java open-source app that does some batching.  
I basically want a java web-app where I can schedule a URL to be called 
at a certain time with certain parameters and then store those results?
I'd like this to record the start-time when this was called, and the 
stop time of when the results come back.


It doesn't matter which framework this uses, so long as it's java and 
open-source.


Thanks!
Tom


-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org