DynaValidatorForm extends DynaActionForm implements Serializable?

2003-02-14 Thread Nekkalapudi, Viplava
Can any one explain why we need to explicitly implement Serializable? Thanks, Vip. -Original Message- From: Hohlen, John Sent: Friday, February 14, 2003 1:07 PM To: 'Struts Users Mailing List' Subject: RE: Why isn't DynaActionForm serializable? Please disregard this question. I now

RE: DynaValidatorForm extends DynaActionForm implements Serializable?

2003-02-14 Thread Nekkalapudi, Viplava
. -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Friday, February 14, 2003 2:49 PM To: Struts Users Mailing List Subject: Re: DynaValidatorForm extends DynaActionForm implements Serializable? On Fri, 14 Feb 2003, Nekkalapudi, Viplava wrote: Date: Fri, 14

Struts-EL Tag Library Problem

2002-12-04 Thread Nekkalapudi, Viplava
Our team is trying to use the latest nightly build version (12/03/2002) of the Struts-EL subproject. It appears that the latest TLDs do no match the source code. For example, earlier today I encountered the following error for the ELBaseTag at runtime: No setter method corresponding to TLD

FW: Struts-EL Tag Library Problem

2002-12-04 Thread Nekkalapudi, Viplava
Our team is trying to use the latest nightly build version (12/03/2002) of the Struts-EL subproject. It appears that the latest TLDs do no match the source code. For example, earlier today I encountered the following error for the ELBaseTag at runtime: No setter method corresponding to TLD

RE: Struts-EL Tag Library Problem (More Info)

2002-12-04 Thread Nekkalapudi, Viplava
] at java.beans.Introspector.getBeanInfo(Introspector.java:128) -Original Message- From: Nekkalapudi, Viplava Sent: Tuesday, December 03, 2002 2:34 PM To: '[EMAIL PROTECTED]' Subject: Struts-EL Tag Library Problem Our team is trying to use the latest nightly build version (12/03/2002

RE: Struts-EL Tag Library Problem (Even More Info)

2002-12-04 Thread Nekkalapudi, Viplava
is compatible with Struts 1.1 B2? Thanks, Vip. -Original Message- From: Nekkalapudi, Viplava Sent: Tuesday, December 03, 2002 2:42 PM To: '[EMAIL PROTECTED]' Subject: RE: Struts-EL Tag Library Problem (More Info) Here are some additional details from my server log. It appears

RE: Struts1.1 B2 BUG OR Weblogic 6.1 SP2 BUG??????????

2002-11-06 Thread Nekkalapudi, Viplava
to the following line or just add the weblogic.jar to your classpath of the server. java weblogic.Admin -url t3://localhost:82 -username system -password password SHUTDOWN 0 This is the clean way to shut down a server. - Original Message - From: Nekkalapudi, Viplava [EMAIL PROTECTED

RE: Struts1.1 B2 BUG OR Weblogic 6.1 SP2 BUG??????????

2002-11-06 Thread Nekkalapudi, Viplava
. On the console screen under the server. When u run Strts 1.0.2, WLS 6.1, are u running on two servers or one. I would love to help u but i am up to my eye balls in work. Demo is due Nov 21, I wanted it due Nov 26 State Judges here i come - Original Message - From: Nekkalapudi, Viplava [EMAIL

Struts1.1 B2 BUG OR Weblogic 6.1 SP2 BUG??????????

2002-11-05 Thread Nekkalapudi, Viplava
?! greetings stf --- Ursprüngliche Nachricht --- Datum: 15.10.2002 18:13 Von: Nekkalapudi, Viplava [EMAIL PROTECTED] An: Struts Users Mailing List [EMAIL PROTECTED] Betreff: Struts1.1 B2 BUG OR Weblogic 6.1 SP2 BUG?? We are trying to update a web application based

struts-config_1_1.dtd and struts-config_1_0.dtd

2002-11-05 Thread Nekkalapudi, Viplava
Why is ?xml version=1.0 encoding=ISO-8859-1? is missing from struts-config_1_1.dtd? Is it by mistake OR is there any purpose? I see it in the file struts-config_1_0.dtd. I checked these files at http://jakarta.apache.org/struts/dtds/. --- Vip. -- To unsubscribe, e-mail:

RE: Struts1.1 B2 BUG OR Weblogic 6.1 SP2 BUG??????????

2002-11-05 Thread Nekkalapudi, Viplava
that will open that port :-) You asked for an idea: - complain *loudly* to your server vendor! (file a bug if there isn't one outstanding) - find other people having this problem - organize and lobby to have it fixed ... that's my idea. Nekkalapudi, Viplava wrote: I already

RE: struts-config_1_1.dtd and struts-config_1_0.dtd

2002-11-05 Thread Nekkalapudi, Viplava
On Tue, 5 Nov 2002, Nekkalapudi, Viplava wrote: Date: Tue, 5 Nov 2002 15:28:22 -0600 From: Nekkalapudi, Viplava [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List (E-mail) [EMAIL PROTECTED] Subject: struts-config_1_1.dtd and struts

RE: Maxlength validation returns null in error message

2002-10-29 Thread Nekkalapudi, Viplava
I think, arg2 is only required for the range validation error message not for minlength/maxlength. please check for the error messages declared in the validator-rules.xml. But in the struts-example application in validation.xml, arg2 is declared for maxlength, field property=username

RE: Maxlength validation returns null in error message

2002-10-29 Thread Nekkalapudi, Viplava
I think, arg2 is only required for the range validation error message not for minlength/maxlength. please check for the error messages declared in the validator-rules.xml. But in the struts-example application in validation.xml, arg2 is declared for maxlength, field property=username

RE: JavaScript Validation: MinLength MaxLength Functions Don't Work

2002-10-25 Thread Nekkalapudi, Viplava
Nekkalapudi, Viplava [EMAIL PROTECTED] wrote:It looks like the min/max length JavaScript functions do NOT work on HTML password fields. We just verified this. I totally agree with Hajratwala. Struts should not impose this limitation on the developers. It is the developers responsibility to control

RE: JavaScript Validation: MinLength MaxLength Functions Don't Work

2002-10-24 Thread Nekkalapudi, Viplava
in struts too. Thanks ! Bachan Nekkalapudi, Viplava [EMAIL PROTECTED] wrote: My team can't get the Struts client-side (i.e. JavaScript) validation framework to work. We want to ensure that a password is between 6 and 30 characters. Has anyone been able to get these checks to work? The required field

JavaScript Validation: MinLength MaxLength Functions Don't Work

2002-10-24 Thread Nekkalapudi, Viplava
My team can't get the Struts client-side (i.e. JavaScript) validation framework to work. We want to ensure that a password is between 6 and 30 characters. Has anyone been able to get these checks to work? The required field check works, but the minlength and maxlength do not. Here's what our

RE: JavaScript Validation: MinLength MaxLength Functions Don't Work

2002-10-24 Thread Nekkalapudi, Viplava
the depends for password and give minlength and maxlength. Since minLength is mentioned required is not necesary. Try it and let ue know. this may be considered as a bug in struts too. Thanks ! Bachan Nekkalapudi, Viplava wrote: My team can't get the Struts client-side (i.e. JavaScript

RE: Struts1.1 B2 BUG OR Weblogic 6.1 SP2 BUG??????????

2002-10-15 Thread Nekkalapudi, Viplava
additional information that may help them assist you? It would be helpful to know how your server is setup probably - are you clustered as Kevin suggested? Good Luck! Nekkalapudi, Viplava wrote: Exactly, the server is not able to bind to the port and throws java.net.BindException. I couldn't guess

RE: Struts1.1 B2 BUG OR Weblogic 6.1 SP2 BUG??????????

2002-10-15 Thread Nekkalapudi, Viplava
But this may be the temporary solution in our development environment. We are trying to get a solution if any one encountered the same problem and resolved it. Anyway thanks. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 15, 2002 5:05 PM To:

RE: Struts1.1 B2 BUG OR Weblogic 6.1 SP2 BUG??????????

2002-10-15 Thread Nekkalapudi, Viplava
the same. But I get the feeling I'm just missing something - do I understand correctly that you desire for some reason to have two server instances on the same IP addess and port? Why? Nekkalapudi, Viplava [EMAIL PROTECTED] on 10/15/2002 06:12:28 PM Please respond to Struts Users Mailing List

Struts1.1 B2 BUG OR Weblogic 6.1 SP2 BUG??????????

2002-10-15 Thread Nekkalapudi, Viplava
We are trying to update a web application based on Struts1.0.2 to Struts 1.1 B2. We use Weblogic 6.1 SP2 on Win 2000. It used to work fine with Struts 1.0.2 and with Struts 1.1 B2, weblogic server fails to start properly using the port and shut down initialized automatically

RE: Struts1.1 B2 BUG OR Weblogic 6.1 SP2 BUG??????????

2002-10-15 Thread Nekkalapudi, Viplava
to bind to the port so it can listen for requests. Maybe WebLogic didn't shut down clean? That is my best guess. You might shut it down and then run netstat -a to verify the ports are free before you fire it back up. Nekkalapudi, Viplava wrote: We are trying to update a web

RE: Struts1.1 B2 BUG OR Weblogic 6.1 SP2 BUG??????????

2002-10-15 Thread Nekkalapudi, Viplava
it at the same port setting as the original server? Nekkalapudi, Viplava [EMAIL PROTECTED] on 10/15/2002 12:13:11 PM Please respond to Struts Users Mailing List [EMAIL PROTECTED] To:Struts Users Mailing List [EMAIL PROTECTED] cc: (bcc: Kevin Bedell/Systems/USHO/SunLife

java.net.BindException with Struts1.1 B2

2002-10-08 Thread Nekkalapudi, Viplava
Hi all, I am trying to update a small web application based on Struts 1.0.2 to Struts 1.1 B2. We are using Weblogic 6.1 SP2 on WIN 2000. It used to work fine but when we modified our build files to use Struts 1.1 B2, weblogic server fails to start and shutdown initialized

Block e-mails from struts-users group for some time.

2002-08-09 Thread Nekkalapudi, Viplava
Hi, Is there a way to block (not to receive) e-mails from struts-users group for a couple of weeks, and we can enable it after some time? OR We can only unsubscribe and subscribe again. Thanks, Vip. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For

RE: Block e-mails from struts-users group for some time.

2002-08-09 Thread Nekkalapudi, Viplava
: Block e-mails from struts-users group for some time. You could set up a rule that deletes emails from struts-user as they come in. However, give your mail server a break and simply unsubscribe if you don't plan to be listening in. SS -Original Message- From: Nekkalapudi, Viplava [mailto

URL Rewriting support in Struts html:form and html:link

2002-08-02 Thread Nekkalapudi, Viplava
Craig All containers that implement Servlet 2.2 or 2.3 are required to support URL rewriting, which encodes the session identifier in the url as a path parameter (not a query parameter). However, it is up to your application to make sure you call response.encodeURL() as you are creating such

How to avoid storing data in session (we prefer request scoped data) when the JSP requires form validation?

2002-06-26 Thread Nekkalapudi, Viplava
-Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 11:31 AM To: Struts Users Mailing List Subject: Re: what to store in session? On Wed, 26 Jun 2002, [EMAIL PROTECTED] wrote: Date: Wed, 26 Jun 2002 15:19:48 +0200 From: [EMAIL

RE: some PDF stuff

2002-06-12 Thread Nekkalapudi, Viplava
Generating a PDF report from struts action class using 'iText' works fine. But We have a small issue related with Struts. When there is a validation error, The errors display on the input page. So we enter required data, and click 'Generate PDF report', Opens up Acrobat reader with the

Issue with struts when generate reports from action class

2002-06-12 Thread Nekkalapudi, Viplava
Generating a PDF report from struts action class using 'iText' works fine. But We have a small issue related with Struts. When there is a validation error, The errors display on the input page. So we enter required data, and click 'Generate PDF report', Opens up Acrobat reader with the

RE: Issue with struts when generate reports from action class

2002-06-12 Thread Nekkalapudi, Viplava
James Mitchell Software Engineer\Struts Evangelist Struts-Atlanta, the Open Minded Developer Network http://struts-atlanta.open-tools.org -Original Message- From: Nekkalapudi, Viplava [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 1:55 PM To: 'Struts Users Mailing List

RE: Generating PDF question.

2002-06-12 Thread Nekkalapudi, Viplava
You can try iText also, http://www.lowagie.com/iText -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 2:54 PM To: [EMAIL PROTECTED] Subject: Generating PDF question. Question: What is the preferred way to generate PDF in struts?

RE: some PDF stuff

2002-05-02 Thread Nekkalapudi, Viplava
Where can we get different HTML Header name+value information, so that we can set from JSP/Servlet whenever required. Any ideas? -Original Message- From: Vincent Aumont [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 7:45 PM To: Struts Users Mailing List Subject: Re: some PDF

some practical web stuff

2002-04-30 Thread Nekkalapudi, Viplava
Hi, Any one have an idea on these problems: There are two different issues, I want to clarify before I implement differently. 1. We just started using iText to generate reports. Right we open PDF's in the browser window (My acrobat reader is set up like that).

RE: some PDF stuff

2002-04-30 Thread Nekkalapudi, Viplava
response.setHeader(Expires, 0); response.setHeader(Cache-Control, no-cache); This was what Struts Action Servlet processNoCache(response) do. We can simply set init parameter nocahe to true in web.xml. This is working fine for all the JSP caching. But what is happening is: Click a

RE: Opening a new window in Javascript

2002-03-26 Thread Nekkalapudi, Viplava
Try using: window.open(url, name, features); where url - any url, including the struts action path, name - any name for the window, features - like, width=500,height=200,left=50,top=50,scrollbars=yes -Original Message- From: Bhaskar Gopalan

RE: How to Pre-fill a formbean

2002-03-15 Thread Nekkalapudi, Viplava
// Create a form with the name given in struts-config.xml MainForm mainForm = new MainForm(); mainForm.setProperty1(..); ... request.setAtribute(mainForm, mainForm); // **// Struts Action Servlet creates mainForm just before displaying the main.jsp, if

How to get List/Collection from request attribute with form validation.

2002-01-23 Thread Nekkalapudi, Viplava
If we have a proper ActionForm with the same field as our html:form, validation error retrieves the user entered values. But if we have a List/Collection of data saved as a property of the ActionForm OR as request attribute, How to retrieve this data, when there is a validation error. For

RE: html:text

2002-01-22 Thread Nekkalapudi, Viplava
Have you specified the property attribute, which is required. It may give compile time error. -Original Message- From: Chalissary, David [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 22, 2002 1:13 PM To: Struts Users Mailing List Subject: RE: html:text the code html:text

RE: html:text

2002-01-22 Thread Nekkalapudi, Viplava
We are using Struts 1.0, But the attributes readonly and disabled are working fine for html tag. The problem we have is for, html:button property=myButton onclick=submitWithNewActionName buttonValue /html:button The value of myButton is not submitted as request parameter. It works fine with

RE: logic:iterator - how to determine if this is the first time t hrough an iteration

2001-12-20 Thread Nekkalapudi, Viplava
Hi, Is there any way to specify the value or name dynamically? Basically I want to display some rows of data with different back ground colors. From indexId, I can get either 0 or 1 using mod. What is the best way to get this? The following code gives me an option for the first

RE: logic:iterator - how to determine if this is the first time t hrough an iteration

2001-12-20 Thread Nekkalapudi, Viplava
.../td /tr /logic:iterate Mark -Original Message- From: Nekkalapudi, Viplava [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 20, 2001 4:10 PM To: 'Struts Users Mailing List' Subject: RE: logic:iterator - how to determine if this is the first time t hrough an iteration Hi

RE: Java script submit on select from drop down

2001-11-20 Thread Nekkalapudi, Viplava
onchange=this.form.submit() Here 'this' means the select object(drop down), You can say, document.form.submit() OR simply onchange=submit() -Original Message- From: Ravi Kharse [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 12:44 AM To: [EMAIL PROTECTED]

RE: Jbuilder 5/Weblogic 6.1/Struts

2001-11-20 Thread Nekkalapudi, Viplava
I think, JBuilder 5 doesn't support weblogic 6.1. Please check with borland. And you can work with Struts in JB5.0 without Struts Plugin. -Original Message- From: Chen, Yong [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 2:32 PM To: Struts-User (E-mail) Subject: Jbuilder

RE: Jbuilder 5/Weblogic 6.1/Struts

2001-11-20 Thread Nekkalapudi, Viplava
Users Mailing List Subject: Re: Jbuilder 5/Weblogic 6.1/Struts We use JBuilder 5 Enterprise with WebLogic 6.1 here. - Original Message - From: Nekkalapudi, Viplava [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Tuesday, November 20, 2001 3:17 PM Subject: RE

RE: Jbuilder 5/Weblogic 6.1/Struts

2001-11-20 Thread Nekkalapudi, Viplava
. - Original Message - From: Nekkalapudi, Viplava [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Tuesday, November 20, 2001 3:17 PM Subject: RE: Jbuilder 5/Weblogic 6.1/Struts I think, JBuilder 5 doesn't support weblogic 6.1. Please check with borland. And you can

RE: Jbuilder 5/Weblogic 6.1/Struts

2001-11-20 Thread Nekkalapudi, Viplava
: Tuesday, November 20, 2001 3:37 PM To: Struts Users Mailing List Subject: Re: Jbuilder 5/Weblogic 6.1/Struts We use JBuilder 5 Enterprise with WebLogic 6.1 here. - Original Message - From: Nekkalapudi, Viplava [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent

RE: Struts and JBuilder

2001-11-15 Thread Nekkalapudi, Viplava
nostrutstomcat32.jar webinfextension.jar These are Struts Support Addin for JBuilder 5.0 and not required for JB4.0/JB6.0. -Original Message- From: Richard Reich [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 15, 2001 12:34 PM To: Struts Users Mailing List Subject: Re: Struts

FW: Struts Support AddIn for JBuilder 5.0

2001-11-15 Thread Nekkalapudi, Viplava
I have already forwarded it, But this tells about JB6.0 also. -Original Message- From: Ken Sipe [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 07, 2001 2:40 PM To: Nekkalapudi, Viplava Subject: Re: Struts Support AddIn for JBuilder 5.0 You should be able to have struts work

RE: html checkbox tag

2001-11-15 Thread Nekkalapudi, Viplava
check here in the documentation. http://jakarta.apache.org/struts/struts-html.html#checkbox -Original Message- From: Juan Alvarado [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 15, 2001 11:42 AM To: Struts Subject: html checkbox tag Can anyone tell me why the following is

RE: Struts and Javascript question

2001-11-13 Thread Nekkalapudi, Viplava
You can try passing field using this. And get the object name mapped to this. Something like this: function getObject(myField) { // myField is your dataObject } And in form use this as the parameter to JavaScript. html:text proeprty=data.fieldname onBlur=getObject(this) / -- Viplava

RE: Help!!Banging my head trying to figure out how to do this.

2001-11-12 Thread Nekkalapudi, Viplava
You can populate a form with property of any object within object by multiple bean:define. But your form should have defined with some properties. I am sure you can't have form with dynamic properties (Created at run time). -Original Message- From: Alex Colic [mailto:[EMAIL

RE: WAR file???

2001-11-12 Thread Nekkalapudi, Viplava
This is also very useful from weblogic documentation center. http://www.weblogic.com/docs51/classdocs/webappguide.html -Original Message- From: John Yu [mailto:[EMAIL PROTECTED]] Sent: Monday, November 12, 2001 4:22 AM To: Struts Users Mailing List Subject: Re: WAR file??? See