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



open source to convert movie to SWF or FLV

2006-10-20 Thread wilson wong
Hi All
Looking for open source or commercial product to
convert AVI, MPG, MPEG, WMV, MOV, ASF, MP4  into SWF
or FLV, this product must provide java API for
integration Thanks for your time.

Wilson

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Problem in action forwarding

2005-08-24 Thread wilson wong
Found my own problem

In one of my include JSP 
  I have this html tag defined 


This will trigger the Struts frmawork to execute
contextpath/index.jsp if you have this 
 in your JSP page
Wonder if this the way how struts work or this is a
bug.

--- wilson wong <[EMAIL PROTECTED]> wrote:

> Greeting
> 
>Setup Win 2K , Tomcat 5.0.28 with struts 1.2.7
> 
>Problem: Every action  being "forward to" always
> execute the webapps/mycontext/index.jsp prior to the
> action being invoked
> 
> 
> 
> Web.xml
> 
> 
> index.jsp
>   
> 
> 
>  index.jsp
> 
> %@ page language="java" %>
> <%@ taglib uri="/WEB-INF/struts-logic.tld"
> prefix="logic" %>
> <%
>   System.out.println("-- MAIN INDEX.JSP "); 
> 
> %>
> 
> 
> 
> struts-config.xml
> 
> 
type="org.storeorder.store.catalog.action.EnterAction"
>   validate="false">
>path="/catalog/catalog.jsp"/>
> 
>  forward="/catalog/aboutus.jsp"/>
> 
> 
> in catalog.jsp
> 
> tr> 
>   
> 
href="<%=request.getContextPath()%>/storeinfo.do">About
> Us
>
> 
> 
> when I click on the  "About Us" 
> 
> this is what happen  From the server log
> 
> 
> DEBUG 15:19:20 ModuleUtils - Get module name for
> path
> /storeinfo.do
> DEBUG 15:19:20 ModuleUtils - Module name found:
> default
> DEBUG 15:19:20 RequestProcessor - Processing a 'GET'
> for path '/storeinfo'
> DEBUG 15:19:20 RequestProcessor -  Delegating via
> forward to '/catalog/aboutus.jsp'
> -- MAIN INDEX.JSP 
> DEBUG 15:19:20 ModuleUtils - Get module name for
> path
> /enter.do
> DEBUG 15:19:20 ModuleUtils - Module name found:
> default
> DEBUG 15:19:20 RequestProcessor - Processing a 'GET'
> for path '/enter'
> DEBUG 15:19:20 RequestProcessor -  Looking for
> Action
> instance for class org.sto
> reorder.store.catalog.action.EnterAction
> DEBUG 15:19:20 RequestProcessor -   Returning
> existing
> Action instance
> Inside Enter Action
> DEBUG 15:19:20 EnterAction -  EnterAction  - Exit 0
> DEBUG 15:19:20 RequestProcessor -
> processForwardConfig(ForwardConfig[name=sucess
>
,path=/catalog/catalog.jsp,redirect=false,contextRelative=false,module=null])
> 
> 
> It seems to me it went back and execute the
> index.jsp
> again  before execute /catalog/aboutus.jsp 
> 
> It happens in all other action, it always executes
> the
> index.jsp from the context path first why ?
> 
> Any Clue ?
> 
> Thanks in advance
> 
> 
> 
>   
> 
> Start your day with Yahoo! - make it your home page 
> http://www.yahoo.com/r/hs 
>  
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Problem in action forwarding

2005-08-23 Thread wilson wong
Greeting

   Setup Win 2K , Tomcat 5.0.28 with struts 1.2.7

   Problem: Every action  being "forward to" always
execute the webapps/mycontext/index.jsp prior to the
action being invoked



Web.xml


index.jsp
  


 index.jsp

%@ page language="java" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld"
prefix="logic" %>
<%
  System.out.println("-- MAIN INDEX.JSP ");  
%>



struts-config.xml


  




in catalog.jsp

tr> 
  
About
Us
   


when I click on the  "About Us" 

this is what happen  From the server log


DEBUG 15:19:20 ModuleUtils - Get module name for path
/storeinfo.do
DEBUG 15:19:20 ModuleUtils - Module name found:
default
DEBUG 15:19:20 RequestProcessor - Processing a 'GET'
for path '/storeinfo'
DEBUG 15:19:20 RequestProcessor -  Delegating via
forward to '/catalog/aboutus.jsp'
-- MAIN INDEX.JSP 
DEBUG 15:19:20 ModuleUtils - Get module name for path
/enter.do
DEBUG 15:19:20 ModuleUtils - Module name found:
default
DEBUG 15:19:20 RequestProcessor - Processing a 'GET'
for path '/enter'
DEBUG 15:19:20 RequestProcessor -  Looking for Action
instance for class org.sto
reorder.store.catalog.action.EnterAction
DEBUG 15:19:20 RequestProcessor -   Returning existing
Action instance
Inside Enter Action
DEBUG 15:19:20 EnterAction -  EnterAction  - Exit 0
DEBUG 15:19:20 RequestProcessor -
processForwardConfig(ForwardConfig[name=sucess
,path=/catalog/catalog.jsp,redirect=false,contextRelative=false,module=null])


It seems to me it went back and execute the index.jsp
again  before execute /catalog/aboutus.jsp 

It happens in all other action, it always executes the
index.jsp from the context path first why ?

Any Clue ?

Thanks in advance





Start your day with Yahoo! - make it your home page 
http://www.yahoo.com/r/hs 
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]