RE: Is there a way to capture a copy of the html page that my jspcreates?

2002-05-16 Thread Rajesh Kalluri manduca
Richard, I do something similar capture jsp output to a html file but to avoid the over head of exposing a jsp as i work on a content site with havey traffic traffic, here is how i use io tag and it works fine for me. <% File titufile = new File( "/local/mypage.html" ); FileWriter fileWr

RE: Parameterized Struts Templates

2002-05-16 Thread Rajesh Kalluri manduca
Brian, This is what i do with tiles to change a template sections u can safely replace tiles with templates and it should work. <%@ page language="java" %> <%@ taglib uri="/WEB-INF/TLD/tiles.tld" prefix="tiles" %> <% String content ="/index.html" %> Note that you can put in re

RE: IO Tags....talking to a password protected site-- REPOST

2002-05-06 Thread Rajesh Kalluri manduca
Hi, I am trying to use the io tags to publish a dynamic jsp page to a static html thru filewrite, the tag works fine. Can any one tell me how to pass a username/password when talking to a password protected site its basic browser based authentication like htpasswd. Also this jsp is in the same

IO Tags....talking to a password protected site

2002-04-25 Thread Rajesh Kalluri manduca
Hi, I am trying to use the io tags to publish a dynamic jsp page to a static html thru filewrite, the tag works fine. Can any one tell me how to pass a username/password when talking to a password protected site its basic browser based authentication like htpasswd. Also this jsp is in the same

DB tags dealing with an empty result set...(sql printed as html)

2002-04-17 Thread Rajesh Kalluri manduca
Hi All, My jsp using dbtags is printing out the sql query on to the browser as html when my result set is null, i have attempted to deal with ti in the following way with no use: select id, url, title from view_daily_content where ARTICLETYPE='AVANCES' and CHANNEL='CARACAS'