Struts app with web service, Axis and Eclipse

2006-11-07 Thread Dave Kennedy
Hi, http://www.eclipse.org/webtools/jst/components/ws/1.5/tutorials/index.html I've implemented these tutorials and would now like to add web services to a Struts application. Any tutorials/suggestions/examples using Axis, Struts, Eclipse would be greatly appreciated. Thanks in advance ___

Use html:link in User defined Tag

2006-09-11 Thread Dave Kennedy
Hi, I am trying to create a link on a page with the following URL http://localhost:8080///list.do This JSP code specifies the Upload produces this link http://localhost:8080//upload/upload.do But, this Java code in a Tag out.print("Upload"); produces this link http://localhost:8080///

Download file from server and save on client

2006-09-11 Thread Dave Kennedy
I need to download a file from a server to client computer using Struts. I've implemented StrutsFileDownload from the Struts Wiki, but this displays the contents of the file http://wiki.apache.org/struts/StrutsFileDownload How can I save the file on the client drive instead of displaying the con

Pass ActionForm attribute to user defined Tag

2006-09-10 Thread Dave Kennedy
I would like to replace the sectoin "Existing code" with the "New Code" But causes an error (see below) - contents is an ArrayList I've looked at JSTL but can't seem to solve this Any help would be greatly appreciated items true true New Code =

Display files on server

2006-09-07 Thread Dave Kennedy
I need to write an FTP client to upload/download files from a server I've implemented StrutsFileUplaod and StrutsFileDownload from the Struts Wiki How can I retrieve and display a directory/file list of the server? Does anyone have a Struts example which displays a list of directories and files?