How to use 'parameter' attribute of the action tag.?

2001-09-18 Thread Suriyanarayanan, Senthil Kumar
Hello, How do I use the parameter attribute of the action tag. The struts-config_1_0.dtd says, action tag takes parameter attribute as.. parameter General purpose configuration parameter that can be used to pass extra information to the Action selected by t

No struts trace if JspException is detected by the errorPage directive..

2001-07-03 Thread Suriyanarayanan, Senthil Kumar
Hello, My errorpage.jsp (which is mentioned as the errorPage directive on all the jsps) does not show any struts trace if an JspException is thrown by struts layer.. If I remove the errorpage directive on the problematic jsp, the stack trace on the console is .. javax.servlet.jsp

How to achieve this..

2001-04-26 Thread Suriyanarayanan, Senthil Kumar
Hello, I would like to know how to assign a message:bean' s value to a variable. /> does not work. Thanks in advance Senthil Kumar.S ** The Information transmitted herewith is sensitive information intended only

How to use the MESSAGE as an attribute's value?

2001-04-26 Thread Suriyanarayanan, Senthil Kumar
Title: Reducing the burden on ActionServlet. Hello,     I would like to know how to subsitute the Message's value in the following code..     .   How to replace the string "profile" with      ThanksSenthil Kumar.S

RE: What is token and When/Why/Where to use it?

2001-04-25 Thread Suriyanarayanan, Senthil Kumar
(request)). If it is not valid, you can send them to an error or help page. If it is valid, resetToken(request) and process. "Suriyanarayanan, Senthil Kumar" wrote: > > Hello, > I would like to know what is the significant of the token in the > Action class. > Also

How to use bean:message as a page attribute of the link tag.?

2001-04-25 Thread Suriyanarayanan, Senthil Kumar
Hello, My jsp is coded as .. ">ClickMe and I get the following error.. /common/navigation.jsp(8): no corresponding open tag for tag extension close: probably occurred due to an error in /common/navigation.jsp line 8: ">ClickMe How can I fix it? Thanks Senthil K

What is token and When/Why/Where to use it?

2001-04-25 Thread Suriyanarayanan, Senthil Kumar
Hello, I would like to know what is the significant of the token in the Action class. Also I would like to know when/Why/Where to use it. Thanks in advance, Senthil Kumar.S ** The Information transmitted herewith is

Who are using Struts?

2001-04-23 Thread Suriyanarayanan, Senthil Kumar
Hello, I wonder if anyone can provide me the list of few sites currently using Struts as their part of Presentation Framework. Thanks in advance, Senthil Kumar.S ** The Information transmitted herewith is sensitive

RE: How to use the html:img tag?

2001-04-16 Thread Suriyanarayanan, Senthil Kumar
April 10, 2001 8:06 PM To: '[EMAIL PROTECTED]' Subject: RE: How to use the html:img tag? Probably something like: ? > -Original Message- > From: Suriyanarayanan, Senthil Kumar > [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 10, 2001 5:01 PM > To: [EMAI

Deploying struts-example WAR using NSAPI plugin with Weblogic6.0

2001-04-16 Thread Suriyanarayanan, Senthil Kumar
Hello, I'm using Weblogic6.0 with IPlanet WS with NSAPI plugin. When I deploy the struts-example.war on my Weblogic6.0 server and try to access using http://localhost/weblogic/struts-example, all those links inside the jsp refer as http://localhost/struts-example/... and hence they are bro

RE: Equivalent of jsp:setProperty

2001-04-16 Thread Suriyanarayanan, Senthil Kumar
: Friday, April 13, 2001 11:20 PM To: [EMAIL PROTECTED] Subject: Re: Equivalent of jsp:setProperty On Tue, 10 Apr 2001, Suriyanarayanan, Senthil Kumar wrote: > Hello, > Is there a struts equivalent for setProperty. I'm using logic:equals > inside a html:form tag, to check

REPOST: How to code and use the html:image tag?

2001-04-12 Thread Suriyanarayanan, Senthil Kumar
Hello, How do you use html:image tag inside my html:tag? I need to have two image buttons namely login, forgotPassword. Which is the right one to use, either the html:image tag or directly use the input type=image? Say for example I define the html:image inside my html:for

How to use the html:image tag?

2001-04-11 Thread Suriyanarayanan, Senthil Kumar
Hello, How do you use html:image tag inside my html:tag? I need to have two image buttons namely login, forgotPassword. Which is the right one to use, either the html:image tag or directly use the input type=image? Say for example I define the html:image inside my html:for

How to use the html:img tag?

2001-04-10 Thread Suriyanarayanan, Senthil Kumar
Hello, I would like to know create an hyperlink image using the html:img ? Basically I want to convert the following html in to html:img ... Thanks Senthil Kumar.S ** The Information transm

Equivalent of jsp:setProperty

2001-04-10 Thread Suriyanarayanan, Senthil Kumar
Hello, Is there a struts equivalent for setProperty. I'm using logic:equals inside a html:form tag, to check for a specific property's value of the form and display some extra information. I need to reset the value at the end of the logic tag. How could I achieve it other than jsp:setPrope

how to handle the runtime or uncaught exceptions thrown from the Action class.

2001-03-29 Thread Suriyanarayanan, Senthil Kumar
Hello, I have my logon.jsp page as .. <%@ page language="java" isErrorPage="false" errorPage="errorpage.jsp" %> <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %> and errorpage.jsp as .. <%@ pa

How to redirect to the input jsp page from the formbean's validate method instead of populating ActionErrors.

2001-03-28 Thread Suriyanarayanan, Senthil Kumar
Hello, How do I redirect to the input jsp page from the formbean's validate method instead of populating ActionErrors. I knew redirecting from the perform method of the Action object, wondering is it possible to simulate the same from the validate method. Thanks in advance, Senthil Kumar.

html:errors

2001-03-26 Thread Suriyanarayanan, Senthil Kumar
Hello, How do I generate error messages dynamically. Say for example if the error property is not predefined in the ApplicationResources.properties. Also does takes any arguments? If it takes some arguments how can I use it? Also is it possible to have multiple with in the same jsp file.

How to use html:errors ?

2001-03-23 Thread Suriyanarayanan, Senthil Kumar
How do you make the errors shows up on the generated page.? Here is the code snapshot.. LogonForm.java public ActionErrors validate(ActionMapping mapping, HttpServletRequest request) { if(password == null || !password.equals("password")) {

New to struts..

2001-03-20 Thread Suriyanarayanan, Senthil Kumar
I'm new to struts and started using it (just deployed the struts-example). I wonder whether we could use struts out of the Web Application Archive, as an extracted one, without any reference to web.xml and just refer only the tld and struts.jar file. Are there any sample or simple application demo