Help needed

2003-01-06 Thread Suresh Addagalla
Title: Message



Hi,
 
I have 
a login page. If the login fails, I want to show the errors next to the specific 
field (if username is wrong, the error is shown next to username field, etc.) I 
am using programmatic exception handling.
 
    try 
{    
service.authenticate(userName, password) 
;    } catch (InvalidLoginException 
ile) 
{  
  
System.out.println("adding action errors in action class") 
;  
  
ActionErrors errors = new 
ActionErrors();  
errors.add( "userName", new ActionError("invalid.login") 
);  
saveErrors( request, errors 
);  
  
return mapping.findForward("Failure") 
;    }
 
How 
should I access these errors in my JSP to show the errors?
 
Thanks,
Suresh
**Disclaimer** 
   
 
 Information contained in this E-MAIL being proprietary to Wipro Limited is 
'privileged' 
and 'confidential' and intended for use only by the individual or entity to which it 
is 
addressed. You are notified that any use, copying or dissemination of the information 
contained in the E-MAIL in any manner whatsoever is strictly prohibited.




--
To unsubscribe, e-mail:   
For additional commands, e-mail: 


Help needed

2003-06-18 Thread Vijay K Hegde
Hi,

I am developing an struts application that uses EJB classes.

The EJB classes refers a properties file for some constant values. It works fine when 
working in WSAD5.0 but when deployed on the unix server it is not able to find the 
path. It shows the following error.

file:/apps/websphere/ws405/installedApps/CAA.ear/CAAEJB.jar!/resources/TGTSystemProperties.properties
 (No such file or directory)

Can anyone help??

Vijay K. Hegde
Infosys Technologies Limited, Hyderabad



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



Help needed

2002-08-22 Thread Richard Stevens

Hi,

I'm a little lost and I'm searching for documentation. I've been 
fiddeling around with struts for quite some time now but I always get 
lost trying to access the Struts form from my JSP's java context. I 
found out, that I can access for example the counter in an iteration 
created with struts tags via the pageContext but how can I access the 
Form itself or the various beans in there.

Thanks for any help, especially for some links to further reading on 
this and/or similar subjects. Please don't point me to the struts docs 
because I'm afraid I'd need a little more guidance ;)

Richard


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Help needed.

2002-06-10 Thread Yaman Kumar

Hi,

I have a jsp page named x.jsp with several href links and one of them
refers to myaction.do which expects a formbean and its validation is false
and that forwards to mypage.jsp.

and mypage.jsp has got same form bean and its action is again myaction.do
but this time i would like to validate the formbean, Is it possible to
do ? my struts-config.xml looks like this.



The above code is used by x.jsp and i have requirement to use same action
by mypage.jsp but this time form should be validated.

As i can't give another action with different path and same type and
validate="true".

In short can I validate the form bean in above action when it is
used by mypage.jsp. or can i change this validate value dynamically.

thanks,
rayaku


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




URGENT... HELP NEEDED...

2003-10-02 Thread Joseph William
Hi All...
 
This has got nothing to do with Struts... It is javascript function I am developing...
 
I need to generate all Friday dates for the past one year from the current date... Has 
anyone got such code??? I tried to search the net but wasn't able to find anything 
very precise... It would be of great help if anyone can help me here...
 
Appreciate your guidance... Thanks!
 
-Joseph


-
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

RE: Help needed

2003-01-06 Thread C.Bhaskaran
Title: Message



put 
 tag

  
  -Original Message-From: Suresh Addagalla 
  [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 
  4:30 PMTo: [EMAIL PROTECTED]Subject: Help 
  needed
  Hi,
   
  I 
  have a login page. If the login fails, I want to show the errors next to the 
  specific field (if username is wrong, the error is shown next to username 
  field, etc.) I am using programmatic exception handling.
   
      try 
  {    
  service.authenticate(userName, password) 
  ;    } catch (InvalidLoginException 
  ile) 
  {  
    
  System.out.println("adding action errors in action class") 
  ;  
    
  ActionErrors errors = new 
  ActionErrors();  
  errors.add( "userName", new ActionError("invalid.login") 
  );  
  saveErrors( request, errors 
  );  
    
  return mapping.findForward("Failure") 
  ;    }
   
  How 
  should I access these errors in my JSP to show the errors?
   
  Thanks,
  Suresh
**Disclaimer** 
   
 
 Information contained in this E-MAIL being proprietary to Wipro Limited is 
'privileged' 
and 'confidential' and intended for use only by the individual or entity to which it 
is 
addressed. You are notified that any use, copying or dissemination of the information 
contained in the E-MAIL in any manner whatsoever is strictly prohibited.







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


Re: Help needed

2003-01-06 Thread ashokd
MessageHi,

If we displayed  tag, All errors will display.

If we want appropirate error we would get by using key (errors.add( "userName", new 
ActionError("invalid.login") );)

In above example userName is the key to get appropriage error message corresponding.

In API we have method on ActionError class, to get this.

Thanks & Regards,
Ashok.D
  - Original Message - 
  From: C.Bhaskaran 
  To: 'Struts Users Mailing List' ; [EMAIL PROTECTED] 
  Sent: Monday, January 06, 2003 4:42 PM
  Subject: RE: Help needed


  put  tag
-Original Message-
From: Suresh Addagalla [mailto:[EMAIL PROTECTED]] 
Sent: Monday, January 06, 2003 4:30 PM
To: [EMAIL PROTECTED]
Subject: Help needed


Hi,

I have a login page. If the login fails, I want to show the errors next to the 
specific field (if username is wrong, the error is shown next to username field, etc.) 
I am using programmatic exception handling.

try {
service.authenticate(userName, password) ;
} catch (InvalidLoginException ile) {
  
  System.out.println("adding action errors in action class") ;
  
  ActionErrors errors = new ActionErrors();
  errors.add( "userName", new ActionError("invalid.login") );
  saveErrors( request, errors );
  
  return mapping.findForward("Failure") ;
}

How should I access these errors in my JSP to show the errors?

Thanks,
Suresh


--


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



Re: Help needed

2003-06-18 Thread Kostadinis
Why you dont leave your properties file, out of jar?

Create a directory in your application Server, and insert it there.

It works OK for me in Linux-Environment,

One drawback of properties file inside a jar is that if you want to change a
value, what  do you do?


Vangos.



- Original Message -
From: "Vijay K Hegde" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 18, 2003 1:07 PM
Subject: Help needed


Hi,

I am developing an struts application that uses EJB classes.

The EJB classes refers a properties file for some constant values. It works
fine when working in WSAD5.0 but when deployed on the unix server it is not
able to find the path. It shows the following error.

file:/apps/websphere/ws405/installedApps/CAA.ear/CAAEJB.jar!/resources/TGTSy
stemProperties.properties (No such file or directory)

Can anyone help??

Vijay K. Hegde
Infosys Technologies Limited, Hyderabad



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




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



Re: Help needed

2003-06-18 Thread Carlos Duque
Confirm via manual inspection whether or not the properties file actually 
exists on the system at the location specified.  It most likely has not 
been included in the EAR that WSAD created.  Most likely you will need to 
place the properties file in your source project directory as well.  I 
presume you have it only in your output directory.

Carlos

At 03:07 AM 6/18/03, you wrote:
Hi,

I am developing an struts application that uses EJB classes.

The EJB classes refers a properties file for some constant values. It 
works fine when working in WSAD5.0 but when deployed on the unix server it 
is not able to find the path. It shows the following error.

file:/apps/websphere/ws405/installedApps/CAA.ear/CAAEJB.jar!/resources/TGTSystemProperties.properties 
(No such file or directory)

Can anyone help??

Vijay K. Hegde
Infosys Technologies Limited, Hyderabad


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


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


Urgent help needed

2001-05-11 Thread Vinod Shintre

can some1 tell me why am i getting this error & possible solution
---
Internal Servlet Error:

org.apache.jasper.compiler.CompileException:
/home/vshintre/jakarta/jakarta-tomcat-3.2.1/webapps/struts-blank/login.jsp(3,2)
Unable to load class org.apache.struts.taglib.html.FormTag
at
org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:129)

---

thanx in advance

vin






Urgent help needed

2001-05-13 Thread Sudhir M

Hi Amarnath 

I am absolutely new to STRUTS and i have just downloaded the
Examples from the net. Can u please help me in running the same. I mean,
where excatly to place the jar files and what all other setttings are
required. Please!

Thanks 
Sudhir 

-Original Message-
From: Nanduri, Amarnath [mailto:[EMAIL PROTECTED]]
Sent: Saturday, May 12, 2001 2:07 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Urgent help needed


Try this

  Keep the struts.jar file in the tomcat\lib directory and see it that
helps.



-Original Message-
From: Vinod Shintre [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 11, 2001 2:46 PM
To: [EMAIL PROTECTED]
Subject: Urgent help needed


can some1 tell me why am i getting this error & possible solution
---
Internal Servlet Error:

org.apache.jasper.compiler.CompileException:
/home/vshintre/jakarta/jakarta-tomcat-3.2.1/webapps/struts-blank/login.jsp(3
,2)
Unable to load class org.apache.struts.taglib.html.FormTag
at
org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:129
)

---

thanx in advance

vin

***Confidential Notice

This e-mail communication may contain information that is
confidential and privileged. The information is intended
to be for the use of the addressee only. If you are not the
named addressee you should not disseminate, distribute or
copy this e-mail: to do so could be a breach of confidence.

Kshema Technologies Ltd.,
# 33/1, Lalbagh Road, Bangalore 560027, INDIA. 
Tel: (91) 80- 2995114/5/6
Fax: (91) 80 2272933 

**



Digester help needed !

2001-10-04 Thread Paula Young

I need some basic DIGESTER help!  I think I'm trying to do something simple,
but it's not working for me and I've tried several things, etc,etc,etc...  I
just want to parse  an XML string that looks like:

18
Your smallcorp site login has expired!!


My ErrResp.java bean that should result in the parse looks like:

package com.oaktree.struts.common;

import java.io.Serializable;

public class ErrResp implements Serializable {
   private int errnum = 0;
   private String errdesc = null;

// -- integer code for the error
   public int getErrnum() {
  return errnum;
   }

   public void setErrnum(int errnum) {
  this.errnum = errnum;
   }

   // -- description of error
   public String getErrdesc() {
  return errdesc;
   }

   public void setgetErrdesc(String errdesc) {
  this.errdesc = errdesc;
   }

   // -- Utils
   public String toString()  {
  StringBuffer sb = new StringBuffer("ErrResp is:\n");


  sb.append("Errnum=" + errnum + ".\n");
  sb.append("Errdesc=" + errdesc + ".\n");
  return sb.toString();
   }


}

AND my code (in the LoginAction.java ) looks like:

 // simulate XML string return for an error.
  StringBuffer xmlerr = new StringBuffer("");
  xmlerr.append("\n");

  xmlerr.append("18\n");
  xmlerr.append("Your smallcorp site login has
expired!!\n");

  xmlerr.append("\n");

  // Use Apache digester util to parse that xml string.
  // LoginResp bean : it contains: Away, Buddy, Group beans
  String xrsp = xmlerr.toString();
  System.out.println("XML is:\n" + xrsp);
  Digester digester = new Digester();
  digester.push(this);
  digester.setDebug(10);
  digester.setValidating(false);
  digester.addObjectCreate("loginerr",
  "com.oaktree.struts.common.ErrResp");
  digester.addSetProperties("loginerr");
  digester.addSetNext("loginerr", "gotErr",
  "com.oaktree.struts.common.ErrResp");

  try {
  digester.parse(new org.xml.sax.InputSource(new
StringReader(xrsp)));
  } catch (IOException e){
  e.printStackTrace();
  } catch (SAXException e) {
  e.printStackTrace();
  }




The 'gotErr ' that's referred to above is in the LoginAction.java class and
is simply:

// Method called after parsing a Loginerr XML Response:
public void gotErr(ErrResp er)
{
System.out.println("ErrResp bean:\n" + er.toString());
}




When it runs, the debug output I see in my window is:

New com.oaktree.struts.common.ErrResp
Set com.oaktree.struts.common.ErrResp properties
Call com.oaktree.struts.logon.LogonAction.gotErr(ErrResp is:
Errnum=0.
Errdesc=null.
)
ErrResp bean:
ErrResp is:
Errnum=0.
Errdesc=null.

Pop com.oaktree.struts.common.ErrResp

... I see the ErrResp object gets created, then properties set, but when
gotErr is called, the bean is empty.  I'm not understanding why this
straightforward case isn't working!  Otherwise, I think the Digester utility
is pretty slick, and I'd also be interested in the reverse-digester utility,
if any, question in "tiles / portal / digester" message subject post.

Paula Young

 winmail.dat


*** URGENT Help needed ****

2002-05-03 Thread Reid Tardy

Dearest Struts Gurus,

My name is Reid Tardy.

This may be a bit off topic but I need all of you all to drop what you are 
doing and help me right now. I am trying to modify the Struts example to run 
on a machine with VB instead of Java. I also want to be able to download gif 
files into Lotus Notes. I have never used Java before but since I hold an AA 
in make-up application, an AS in auto mechanics, an AS in massage therapy, a 
BA in history, an MA in 20th-Century Bulgarian Literature with a minor in 
sword fighting, a PHD in Political Science from a college somewhere in 
Newfoundland and numerous continuing ed certificates. I have spent the 
better part of ten minutes trying to get it to work but it doesn’t. My 
browser don't shows anything ... it don't even show an exception. I haven’t 
bothered to look at the documentation. One last question, do I need some 
thing like TomCat? What is a TomCat anyway? Could you tell me how to install 
one if I need it? Please help immediately but not too fast because I am 
going for beers soon.

Many thanks and kind regards,

Reid

P.S. By the way, James and Mark you both suck more than Micael because you 
haven’t answered my question before I posted it.




_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: Help needed.

2002-06-10 Thread Sri Sankaran

Just add another action mapping like:





The 'type' attribute's value will result in the same action being executed -- this 
time *with* validation.

HTH

Sri

-Original Message-
From: Yaman Kumar [mailto:[EMAIL PROTECTED]]
Sent: Sunday, March 10, 2002 2:21 PM
To: Struts Users Mailing List
Subject: Help needed.


Hi,

I have a jsp page named x.jsp with several href links and one of them
refers to myaction.do which expects a formbean and its validation is false
and that forwards to mypage.jsp.

and mypage.jsp has got same form bean and its action is again myaction.do
but this time i would like to validate the formbean, Is it possible to
do ? my struts-config.xml looks like this.



The above code is used by x.jsp and i have requirement to use same action
by mypage.jsp but this time form should be validated.

As i can't give another action with different path and same type and
validate="true".

In short can I validate the form bean in above action when it is
used by mypage.jsp. or can i change this validate value dynamically.

thanks,
rayaku


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

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




RE: Help needed.

2002-06-10 Thread Yaman Kumar

Hi Sri,
It was implemented as you suggested but i have preferred action paths.
Just i wanted to know is there a way to change the validate value
dynamically to true/false
without creating a new one which refers to same action class.


Thanks
rayaku
-Original Message-
From: Sri Sankaran [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, 11 June 2002 12:57 AM
To: 'Struts Users Mailing List'
Subject: RE: Help needed.


Just add another action mapping like:





The 'type' attribute's value will result in the same action being
executed -- this time *with* validation.

HTH

Sri

-Original Message-
From: Yaman Kumar [mailto:[EMAIL PROTECTED]]
Sent: Sunday, March 10, 2002 2:21 PM
To: Struts Users Mailing List
Subject: Help needed.


Hi,

I have a jsp page named x.jsp with several href links and one of them
refers to myaction.do which expects a formbean and its validation is false
and that forwards to mypage.jsp.

and mypage.jsp has got same form bean and its action is again myaction.do
but this time i would like to validate the formbean, Is it possible to
do ? my struts-config.xml looks like this.



The above code is used by x.jsp and i have requirement to use same action
by mypage.jsp but this time form should be validated.

As i can't give another action with different path and same type and
validate="true".

In short can I validate the form bean in above action when it is
used by mypage.jsp. or can i change this validate value dynamically.

thanks,
rayaku


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

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


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




RE: URGENT... HELP NEEDED...

2003-10-02 Thread Paananen, Tero
> Hi All...

Reading the subject I thought you'd offer me $10K
in exchange for me shipping your millions to the US
from Nigeria.

I was so dissapointed to find out I wasn't about
to get rich :(

-TPP

-
This email may contain confidential and privileged material for the sole use of the 
intended recipient(s). Any review, use, retention, distribution or disclosure by 
others is strictly prohibited. If you are not the intended recipient (or authorized to 
receive for the recipient), please contact the sender by reply email and delete all 
copies of this message.  Also, email is susceptible to data corruption, interception, 
tampering, unauthorized amendment and viruses. We only send and receive emails on the 
basis that we are not liable for any such corruption, interception, tampering, 
amendment or viruses or any consequence thereof.


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



RE: URGENT... HELP NEEDED...

2003-10-02 Thread jbaker
Attn Sir.

I understand quite well that this message will sound so strange to you out 

it is a very serious matter that we need to tackle together very rgent. 
Before i proceed further,Let me formally introduce myself to you .I am DR. 

JOSEPH HUSTED , the first adopted son of TED HUSTED, the noted Struts 
author.

I am contacting you today for an urgent assistance to transfer into your 
account the sum of US$28.7,000.000.00(TWENTY EIGHT MILLION SEVEN HUNDRED 
THOUSAD UNITED STATES DOLLARS). I hope that you may be aware of the recent 

differences that is going on rigth now between my father and the struts 
community, 
due to his work on a .NET project.  This also brought about the struts 
community 
sanctioning my father and freezing all his book earnings both in America 
and britain.

I am contacting you therefore on the account that you will support me with 
your foreign account 
and to come over to Redmond so that we can both claim the fund 
together, and then we can travel down to your country for proper 
investment 
of the fund.

JOSEPH HUSTED





"Paananen, Tero" <[EMAIL PROTECTED]>
10/02/03 02:54 PM
Please respond to "Struts Users Mailing List"

 
To: 'Struts Users Mailing List' <[EMAIL PROTECTED]>
cc: 
    Subject:RE: URGENT... HELP NEEDED...


> Hi All...

Reading the subject I thought you'd offer me $10K
in exchange for me shipping your millions to the US
from Nigeria.

I was so dissapointed to find out I wasn't about
to get rich :(

 -TPP

-
This email may contain confidential and privileged material for the sole 
use of the intended recipient(s). Any review, use, retention, distribution 
or disclosure by others is strictly prohibited. If you are not the 
intended recipient (or authorized to receive for the recipient), please 
contact the sender by reply email and delete all copies of this message. 
Also, email is susceptible to data corruption, interception, tampering, 
unauthorized amendment and viruses. We only send and receive emails on the 
basis that we are not liable for any such corruption, interception, 
tampering, amendment or viruses or any consequence thereof.


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





Re: URGENT... HELP NEEDED...

2003-10-02 Thread atta-ur rehman
Okay. its not a struts questions and probably should be sent to a JavaScript
forum. but i spirit of Struts; here is what i would call a very crude method
of doing it. i hope it would give you a starting point.


function doIt() {

  var today = new Date();
  var fridays = new Array();
  for (i = 1; i <= 365; i++) {
   d = new Date(today - (8640 * i));
   if (d.getDay() == 5) {
fridays.splice(fridays.length, 0, d);
}
  }

  for (i = 0; i < fridays.length; i++) {
// show it in a text field on this page!
   document.forms[0].t1.value = document.forms[0].t1.value +
fridays[i].toString();
  }
}


the Date object in javascript, when constructed without any arguments is
initialized with today's date. that's exactly what 'today' variable is for.
now, Date object could also be initialized with milliseconds and it also
support addition and substraction. there are 8640 ms in a day. and we go
back 365 days from today!

the getDay() method on Date object returns 0 for Sunday, 1 for Monday and so
on. so we get only Fridays when getDay() == 5!

crude as i said. i'd get the first friday and increment 'i' by 7 instead of
1.

Oh, and by the way, Array.splice() makes javascript Array object as dynamic
and ArrayList in java!

hope this would help.

ATTA

- Original Message - 
From: "Joseph William" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, October 02, 2003 11:48 AM
Subject: URGENT... HELP NEEDED...


> Hi All...
>
> This has got nothing to do with Struts... It is javascript function I am
developing...
>
> I need to generate all Friday dates for the past one year from the current
date... Has anyone got such code??? I tried to search the net but wasn't
able to find anything very precise... It would be of great help if anyone
can help me here...
>
> Appreciate your guidance... Thanks!
>
> -Joseph
>
>
> -
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search



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



RE: URGENT... HELP NEEDED...

2003-10-02 Thread Daniel Joshua
ha ha ha

Regards,
Daniel


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Friday, 03 October, 2003 2:58 AM
To: Struts Users Mailing List
Subject: RE: URGENT... HELP NEEDED...


Attn Sir.

I understand quite well that this message will sound so strange to you out

it is a very serious matter that we need to tackle together very rgent.
Before i proceed further,Let me formally introduce myself to you .I am DR.

JOSEPH HUSTED , the first adopted son of TED HUSTED, the noted Struts
author.

I am contacting you today for an urgent assistance to transfer into your
account the sum of US$28.7,000.000.00(TWENTY EIGHT MILLION SEVEN HUNDRED
THOUSAD UNITED STATES DOLLARS). I hope that you may be aware of the recent

differences that is going on rigth now between my father and the struts
community,
due to his work on a .NET project.  This also brought about the struts
community
sanctioning my father and freezing all his book earnings both in America
and britain.

I am contacting you therefore on the account that you will support me with
your foreign account
and to come over to Redmond so that we can both claim the fund
together, and then we can travel down to your country for proper
investment
of the fund.

JOSEPH HUSTED





"Paananen, Tero" <[EMAIL PROTECTED]>
10/02/03 02:54 PM
Please respond to "Struts Users Mailing List"


To: 'Struts Users Mailing List' <[EMAIL PROTECTED]>
cc:
    Subject:RE: URGENT... HELP NEEDED...


> Hi All...

Reading the subject I thought you'd offer me $10K
in exchange for me shipping your millions to the US
from Nigeria.

I was so dissapointed to find out I wasn't about
to get rich :(

 -TPP

-
This email may contain confidential and privileged material for the sole
use of the intended recipient(s). Any review, use, retention, distribution
or disclosure by others is strictly prohibited. If you are not the
intended recipient (or authorized to receive for the recipient), please
contact the sender by reply email and delete all copies of this message.
Also, email is susceptible to data corruption, interception, tampering,
unauthorized amendment and viruses. We only send and receive emails on the
basis that we are not liable for any such corruption, interception,
tampering, amendment or viruses or any consequence thereof.


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





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



Help needed uploading files

2002-09-25 Thread Brett



Hello, I know this has been discussed before but the struts site seems to be playing 
up and I cant get into it to search the list.  Anyway I am having problems getting 
files to upload to my server.  The problem I have is when I read from the InputStream 
opened from the Request I get -1.  In other words there is nothing to read.

Is there anything I have to configure with Struts so that the files in the HTML page 
are uploaded properly.  At the moment it seems as if they are not arriving correctly 
to the server.

(I have ENCTYPE set to multipart etc).

Thanks.


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Bean Utils - Help needed

2002-10-22 Thread Podhigai Thendral
Hi all,

I see a commons-beanutils.jar file that comes with struts. I would 
like to know the functionalities offered by this package. I read 
somewhere that this is the one that helps in auto population of 
the form beans. Is it right ? Please help.

Thanks in advance.

-Thendral



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 



help needed with DynaActionForm

2002-11-14 Thread Andy Kriger
I am trying to set properties of an object using DynaActionForm.

In my struts-config.xml I have in the 


In my JSP I try


The CreditCard class has a no-arg ctor and get/set methods for all of its
fields.

When I load the JSP I get an error
Null property value for 'creditCard'

I'm guessing that DynaActionForm is not initializing the CreditCard object,
but I don't know why (I thought that was the point of DynaActionForm - to be
able to use any object and initialize it from the form automatically).

Can anyone who has done this successfully point me in the right direction?

thx
andy



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Help needed on Design

2002-04-17 Thread B Manikandan

Hi..
I have to design an application with the following layout.



  | HEADER
MENU  |---
  |TABS

1)The header is common for a menu and all the tabs in that menu.
2)When a particular tab is selected and some input has been given in the
body,I need to submit the body along with the header info.

I plan to achieve the general layout using tiles.

The question is how to submit the common header along with the
body(which varies for each tab) to the server.

TIA,
Mani



**Disclaimer
  


Information contained in this E-MAIL being proprietary to Wipro Limited
is 'privileged' and 'confidential' and intended for use only by the
individual or entity to which it is addressed. You are notified that any
use, copying or dissemination of the information contained in the E-MAIL
in any manner whatsoever is strictly prohibited.



 



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 


RE: Urgent help needed

2001-05-11 Thread Abraham Kang

Is struts.jar in your WEB-INF/lib directory?

--Abraham

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 11, 2001 11:46 AM
> To: [EMAIL PROTECTED]
> Subject: Urgent help needed
> 
> 
> can some1 tell me why am i getting this error & possible solution
> ---
> Internal Servlet Error:
> 
> org.apache.jasper.compiler.CompileException:
> /home/vshintre/jakarta/jakarta-tomcat-3.2.1/webapps/struts-blank/l
> ogin.jsp(3,2)
> Unable to load class org.apache.struts.taglib.html.FormTag
> at
> org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerato
> r.java:129)
> 
> ---
> 
> thanx in advance
> 
> vin
> 
> 
> 
> 



RE: Urgent help needed

2001-05-11 Thread Nanduri, Amarnath

Try this

  Keep the struts.jar file in the tomcat\lib directory and see it that
helps.



-Original Message-
From: Vinod Shintre [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 11, 2001 2:46 PM
To: [EMAIL PROTECTED]
Subject: Urgent help needed


can some1 tell me why am i getting this error & possible solution
---
Internal Servlet Error:

org.apache.jasper.compiler.CompileException:
/home/vshintre/jakarta/jakarta-tomcat-3.2.1/webapps/struts-blank/login.jsp(3
,2)
Unable to load class org.apache.struts.taglib.html.FormTag
at
org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:129
)

---

thanx in advance

vin





RE: Urgent help needed

2001-05-11 Thread Deadman, Hal

Where is your struts.jar located? Have you modified your classpath at all? I
am not sure if struts-blank.war is meant to actually run out of the box. It
may just be shell to get started with. Does struts-example.war work for you?

> -Original Message-
> From: Vinod Shintre [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 11, 2001 2:46 PM
> To: [EMAIL PROTECTED]
> Subject: Urgent help needed
>
>
> can some1 tell me why am i getting this error & possible solution
> ---
> Internal Servlet Error:
>
> org.apache.jasper.compiler.CompileException:
> /home/vshintre/jakarta/jakarta-tomcat-3.2.1/webapps/struts-bla
> nk/login.jsp(3,2)
> Unable to load class org.apache.struts.taglib.html.FormTag
> at
> org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGene
> rator.java:129)
>
> ---
>
> thanx in advance
>
> vin
>
>
>



RE: Urgent help needed

2001-05-11 Thread Inder Sabharwal

Have you checked your classpath?

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 11, 2001 11:46 AM
> To: [EMAIL PROTECTED]
> Subject: Urgent help needed
> 
> 
> can some1 tell me why am i getting this error & possible solution
> ---
> Internal Servlet Error:
> 
> org.apache.jasper.compiler.CompileException:
> /home/vshintre/jakarta/jakarta-tomcat-3.2.1/webapps/struts-blank/l
> ogin.jsp(3,2)
> Unable to load class org.apache.struts.taglib.html.FormTag
> at
> org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerato
> r.java:129)
> 
> ---
> 
> thanx in advance
> 
> vin
> 
> 
> 



Re: Urgent help needed

2001-05-12 Thread Dan Miser

That is the wrong place to put your struts.jar. If doing this actually
works, then that means there's a larger configuration issue. The proper
place for struts.jar is in WEB-INF\lib.
--
Dan Miser
http://www.distribucon.com

- Original Message -
From: "Nanduri, Amarnath" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 11, 2001 3:37 PM
Subject: RE: Urgent help needed


>   Keep the struts.jar file in the tomcat\lib directory and see it that
> helps.





RE: Urgent help needed

2001-05-14 Thread Nanduri, Amarnath

Hello Sudhir,

   I will try my best. All the examples that come with the struts 1.0
beta download are in the form of war files. According to the sun specs, a
war file is a self-contained web archive repository. It means all the info
required to run that application resides in that war itself. So you can take
a war running on a webserver and drop it in an other webserver, and it would
run seamlessly without any hiccups.
If you want to get to the structure of the war file, use winzip on the war
file and you will get the directory structure as to how the war file is
organized. On Tomcat there is a directory called webapps. Drop your war
files in there and when you restart tomcat it will automatically pickup the
app and load it. If you are facing problems, then it is a configuration
issue with your webserver.

There is also documentation on struts (it comes with the download). This is
an excellent starting point to learn struts. 
An other good site to visit is  http://www.husted.com/about/struts/ . There
you will find excellent resources on struts. Hope this helps.

cheers,
Amar..

-Original Message-
From: Sudhir M [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 14, 2001 12:52 AM
To: [EMAIL PROTECTED]
Subject: Urgent help needed


Hi Amarnath 

I am absolutely new to STRUTS and i have just downloaded the
Examples from the net. Can u please help me in running the same. I mean,
where excatly to place the jar files and what all other setttings are
required. Please!

Thanks 
Sudhir 

-Original Message-
From: Nanduri, Amarnath [mailto:[EMAIL PROTECTED]]
Sent: Saturday, May 12, 2001 2:07 AM
To: '[EMAIL PROTECTED]'
Subject: RE: Urgent help needed


Try this

  Keep the struts.jar file in the tomcat\lib directory and see it that
helps.



-Original Message-
From: Vinod Shintre [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 11, 2001 2:46 PM
To: [EMAIL PROTECTED]
Subject: Urgent help needed


can some1 tell me why am i getting this error & possible solution
---
Internal Servlet Error:

org.apache.jasper.compiler.CompileException:
/home/vshintre/jakarta/jakarta-tomcat-3.2.1/webapps/struts-blank/login.jsp(3
,2)
Unable to load class org.apache.struts.taglib.html.FormTag
at
org.apache.jasper.compiler.TagBeginGenerator.init(TagBeginGenerator.java:129
)

---

thanx in advance

vin

***Confidential Notice

This e-mail communication may contain information that is
confidential and privileged. The information is intended
to be for the use of the addressee only. If you are not the
named addressee you should not disseminate, distribute or
copy this e-mail: to do so could be a breach of confidence.

Kshema Technologies Ltd.,
# 33/1, Lalbagh Road, Bangalore 560027, INDIA. 
Tel: (91) 80- 2995114/5/6
Fax: (91) 80 2272933 

**



Basic Flow Help Needed...

2001-06-12 Thread Ryan Cornia

I'm in need of some guidance (and couldn't really find what I needed in the mail 
archives)-

I've been working on a struts application, and so far have a login page that validates 
the user and forwards to a "Organization List" page. This "Organization List" page is 
currently using DBTags to get a list of the organization from a database and display 
them in a table. From here, I need to user to be able to add, edit, or delete 
organizations. My thought was to simply generate a link around an image, or even text, 
to the effect of -

 "orgAction.do?MODE=EDIT&ORG="

that goes to an Action object created using struts. The action object would look at 
the MODE and either create a blank OrganizationForm bean, create and load and 
Organization Form bean, or forward to a delete confirmation page. 

If editing or adding, the action would forward to an OrgEdit.jsp that listing this one 
organizations information, and have a "save" button on it that goes back to a 
different (or the same?) action object above to perform the save. (?)

Any advice on this design? It seems complex to keep track of which mode and state 
we're in. Am I missing an easier way? This would seem like a common thing to want to 
do. (Table maintenance through a web app.)

Thanks,
Ryan





Help needed extending BaseHandlerTag

2001-05-10 Thread Ariff Sidi

I want to create my own Radio button tag that's a slightly modified version
of the struts RadioTag.

So, I made a new class that extends BaseHandlerTag (just like RadioTag) and
copied the RadioTag code to my new class (NewRadioTag).  I successfully
compiled my new Tag and added it to my existing custom tld file.

Now keep in mind that the code is EXACTLY the same as Struts' RadioTag
except for a couple extra imports I had to make because the new package is
different.

I then modified the JSP file from using  to .

The exception I get is:

javax.servlet.ServletException: runtime failure in custom tag 'form'
at
jsp_servlet._jsp._supplier._company._companytype._jspService(_companytype.ja
va:1097)
at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:106)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:124)
at
weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
l.java:154)
at
org.apache.struts.action.ActionServlet.processActionForward(ActionServlet.ja
va:1697)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1540)
at
org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:491)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:106)
at
weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
l.java:154)
at
com.zeborg.erfp.web.servlet.NavigationServlet.service(NavigationServlet.java
:113)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
at
weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
:106)
at
weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
l.java:907)
at
weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImp
l.java:851)
at
weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContext
Manager.java:252)
at
weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:364)
at
weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:252)
at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)




Why would this happen given that my new tag has IDENTICAL code to RadioTag,
which works.  My platform is Weblogic 5.1SP8.




RE: *** URGENT Help needed ****

2002-05-03 Thread Etienne, Ingo (Goetzfried AG)

Applause !!!
Really good one :)))

-Original Message-
From: Reid Tardy [mailto:[EMAIL PROTECTED]]
Sent: Freitag, 3. Mai 2002 13:30
To: [EMAIL PROTECTED]
Subject: *** URGENT Help needed 


Dearest Struts Gurus,

My name is Reid Tardy.

This may be a bit off topic but I need all of you all to drop what you are 
doing and help me right now. I am trying to modify the Struts example to run

on a machine with VB instead of Java. I also want to be able to download gif

files into Lotus Notes. I have never used Java before but since I hold an AA

in make-up application, an AS in auto mechanics, an AS in massage therapy, a

BA in history, an MA in 20th-Century Bulgarian Literature with a minor in 
sword fighting, a PHD in Political Science from a college somewhere in 
Newfoundland and numerous continuing ed certificates. I have spent the 
better part of ten minutes trying to get it to work but it doesn't. My 
browser don't shows anything ... it don't even show an exception. I haven't 
bothered to look at the documentation. One last question, do I need some 
thing like TomCat? What is a TomCat anyway? Could you tell me how to install

one if I need it? Please help immediately but not too fast because I am 
going for beers soon.

Many thanks and kind regards,

Reid

P.S. By the way, James and Mark you both suck more than Micael because you 
haven't answered my question before I posted it.




_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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

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




Re: *** URGENT Help needed ****

2002-05-03 Thread SUPRIYA MISRA

TomCat is an alley cat which delivers requests provided there are no M$ 
stuff in it.


>From: "Reid Tardy" <[EMAIL PROTECTED]>
>Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: *** URGENT Help needed 
>Date: Fri, 03 May 2002 08:59:32 -0230
>
>Dearest Struts Gurus,
>
>My name is Reid Tardy.
>
>This may be a bit off topic but I need all of you all to drop what you are
>doing and help me right now. I am trying to modify the Struts example to 
>run
>on a machine with VB instead of Java. I also want to be able to download 
>gif
>files into Lotus Notes. I have never used Java before but since I hold an 
>AA
>in make-up application, an AS in auto mechanics, an AS in massage therapy, 
>a
>BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
>sword fighting, a PHD in Political Science from a college somewhere in
>Newfoundland and numerous continuing ed certificates. I have spent the
>better part of ten minutes trying to get it to work but it doesn’t. My
>browser don't shows anything ... it don't even show an exception. I haven’t
>bothered to look at the documentation. One last question, do I need some
>thing like TomCat? What is a TomCat anyway? Could you tell me how to 
>install
>one if I need it? Please help immediately but not too fast because I am
>going for beers soon.
>
>Many thanks and kind regards,
>
>Reid
>
>P.S. By the way, James and Mark you both suck more than Micael because you
>haven’t answered my question before I posted it.
>
>
>
>
>_
>MSN Photos is the easiest way to share and print your photos:
>http://photos.msn.com/support/worldwide.aspx
>
>
>--
>To unsubscribe, e-mail:   
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: 
><mailto:[EMAIL PROTECTED]>
>




_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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




RE: *** URGENT Help needed ****

2002-05-03 Thread Vikram Goyal01

suck suck gets better..

-Original Message-
From: Etienne, Ingo (Goetzfried AG)
[mailto:[EMAIL PROTECTED]]
Sent: Friday, May 03, 2002 5:06 PM
To: 'Struts Users Mailing List'
Subject: RE: *** URGENT Help needed 


Applause !!!
Really good one :)))

-Original Message-
From: Reid Tardy [mailto:[EMAIL PROTECTED]]
Sent: Freitag, 3. Mai 2002 13:30
To: [EMAIL PROTECTED]
Subject: *** URGENT Help needed 


Dearest Struts Gurus,

My name is Reid Tardy.

This may be a bit off topic but I need all of you all to drop what you are 
doing and help me right now. I am trying to modify the Struts example to run

on a machine with VB instead of Java. I also want to be able to download gif

files into Lotus Notes. I have never used Java before but since I hold an AA

in make-up application, an AS in auto mechanics, an AS in massage therapy, a

BA in history, an MA in 20th-Century Bulgarian Literature with a minor in 
sword fighting, a PHD in Political Science from a college somewhere in 
Newfoundland and numerous continuing ed certificates. I have spent the 
better part of ten minutes trying to get it to work but it doesn't. My 
browser don't shows anything ... it don't even show an exception. I haven't 
bothered to look at the documentation. One last question, do I need some 
thing like TomCat? What is a TomCat anyway? Could you tell me how to install

one if I need it? Please help immediately but not too fast because I am 
going for beers soon.

Many thanks and kind regards,

Reid

P.S. By the way, James and Mark you both suck more than Micael because you 
haven't answered my question before I posted it.




_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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

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


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




Re: *** URGENT Help needed ****

2002-05-03 Thread Ketan Malekar

hi Reid,
Why do u need java? to download gif's? I didnt get what exactly u want to
do... Well, if u want to download gif's from java application and want to
call java application from VB then this can be done if ur requirement is
like this, just let me know and If the task is only to download gif's
then that can be done in VB also.

repost ur queries with details
cheers
Ketan
- Original Message -
From: Reid Tardy <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 4:59 PM
Subject: *** URGENT Help needed 


> Dearest Struts Gurus,
>
> My name is Reid Tardy.
>
> This may be a bit off topic but I need all of you all to drop what you are
> doing and help me right now. I am trying to modify the Struts example to
run
> on a machine with VB instead of Java. I also want to be able to download
gif
> files into Lotus Notes. I have never used Java before but since I hold an
AA
> in make-up application, an AS in auto mechanics, an AS in massage therapy,
a
> BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
> sword fighting, a PHD in Political Science from a college somewhere in
> Newfoundland and numerous continuing ed certificates. I have spent the
> better part of ten minutes trying to get it to work but it doesn't. My
> browser don't shows anything ... it don't even show an exception. I
haven't
> bothered to look at the documentation. One last question, do I need some
> thing like TomCat? What is a TomCat anyway? Could you tell me how to
install
> one if I need it? Please help immediately but not too fast because I am
> going for beers soon.
>
> Many thanks and kind regards,
>
> Reid
>
> P.S. By the way, James and Mark you both suck more than Micael because you
> haven't answered my question before I posted it.
>
>
>
>
> _
> MSN Photos is the easiest way to share and print your photos:
> http://photos.msn.com/support/worldwide.aspx
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>
>

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




Re: *** URGENT Help needed ****

2002-05-03 Thread Chad Johnson

Haha, well thats a good early morning laugh!!!

-Chad Johnson

- Original Message -
From: "Reid Tardy" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 6:29 AM
Subject: *** URGENT Help needed 


> Dearest Struts Gurus,
>
> My name is Reid Tardy.
>
> This may be a bit off topic but I need all of you all to drop what you are
> doing and help me right now. I am trying to modify the Struts example to
run
> on a machine with VB instead of Java. I also want to be able to download
gif
> files into Lotus Notes. I have never used Java before but since I hold an
AA
> in make-up application, an AS in auto mechanics, an AS in massage therapy,
a
> BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
> sword fighting, a PHD in Political Science from a college somewhere in
> Newfoundland and numerous continuing ed certificates. I have spent the
> better part of ten minutes trying to get it to work but it doesn't. My
> browser don't shows anything ... it don't even show an exception. I
haven't
> bothered to look at the documentation. One last question, do I need some
> thing like TomCat? What is a TomCat anyway? Could you tell me how to
install
> one if I need it? Please help immediately but not too fast because I am
> going for beers soon.
>
> Many thanks and kind regards,
>
> Reid
>
> P.S. By the way, James and Mark you both suck more than Micael because you
> haven't answered my question before I posted it.
>
>
>
>
> _
> MSN Photos is the easiest way to share and print your photos:
> http://photos.msn.com/support/worldwide.aspx
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>


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




RE: *** URGENT Help needed ****

2002-05-03 Thread James Mitchell

This was actually a joke.

JM



> -Original Message-
> From: Ketan Malekar [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, June 02, 1999 8:11 PM
> To: Struts Users Mailing List
> Subject: Re: *** URGENT Help needed 
>
>
> hi Reid,
> Why do u need java? to download gif's? I didnt get what exactly u want to
> do... Well, if u want to download gif's from java application and want to
> call java application from VB then this can be done if ur
> requirement is
> like this, just let me know and If the task is only to download gif's
> then that can be done in VB also.
>
> repost ur queries with details
> cheers
> Ketan
> - Original Message -
> From: Reid Tardy <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, May 03, 2002 4:59 PM
> Subject: *** URGENT Help needed 
>
>
> > Dearest Struts Gurus,
> >
> > My name is Reid Tardy.
> >
> > This may be a bit off topic but I need all of you all to drop
> what you are
> > doing and help me right now. I am trying to modify the Struts example to
> run
> > on a machine with VB instead of Java. I also want to be able to download
> gif
> > files into Lotus Notes. I have never used Java before but since
> I hold an
> AA
> > in make-up application, an AS in auto mechanics, an AS in
> massage therapy,
> a
> > BA in history, an MA in 20th-Century Bulgarian Literature with
> a minor in
> > sword fighting, a PHD in Political Science from a college somewhere in
> > Newfoundland and numerous continuing ed certificates. I have spent the
> > better part of ten minutes trying to get it to work but it doesn't. My
> > browser don't shows anything ... it don't even show an exception. I
> haven't
> > bothered to look at the documentation. One last question, do I need some
> > thing like TomCat? What is a TomCat anyway? Could you tell me how to
> install
> > one if I need it? Please help immediately but not too fast because I am
> > going for beers soon.
> >
> > Many thanks and kind regards,
> >
> > Reid
> >
> > P.S. By the way, James and Mark you both suck more than Micael
> because you
> > haven't answered my question before I posted it.
> >
> >
> >
> >
> > _
> > MSN Photos is the easiest way to share and print your photos:
> > http://photos.msn.com/support/worldwide.aspx
> >
> >
> > --
> > To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
> >
> >
>
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
>
>


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




Re: *** URGENT Help needed ****

2002-05-03 Thread Robert Williams

Oh no, here we go again!  And it's Friday and 6:30AM, what could be worse?

Someone wake up Craig NOW!


- Original Message -
From: "Reid Tardy" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 6:29 AM
Subject: *** URGENT Help needed 


> Dearest Struts Gurus,
>
> My name is Reid Tardy.
>
> This may be a bit off topic but I need all of you all to drop what you are
> doing and help me right now. I am trying to modify the Struts example to
run
> on a machine with VB instead of Java. I also want to be able to download
gif
> files into Lotus Notes. I have never used Java before but since I hold an
AA
> in make-up application, an AS in auto mechanics, an AS in massage therapy,
a
> BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
> sword fighting, a PHD in Political Science from a college somewhere in
> Newfoundland and numerous continuing ed certificates. I have spent the
> better part of ten minutes trying to get it to work but it doesn't. My
> browser don't shows anything ... it don't even show an exception. I
haven't
> bothered to look at the documentation. One last question, do I need some
> thing like TomCat? What is a TomCat anyway? Could you tell me how to
install
> one if I need it? Please help immediately but not too fast because I am
> going for beers soon.
>
> Many thanks and kind regards,
>
> Reid
>
> P.S. By the way, James and Mark you both suck more than Micael because you
> haven't answered my question before I posted it.
>
>
>
>
> _
> MSN Photos is the easiest way to share and print your photos:
> http://photos.msn.com/support/worldwide.aspx
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>


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




RE: *** URGENT Help needed ****

2002-05-03 Thread Wilson, Les J SI-FSIA

I guess not realising it was a joke could be worse ;)

Les


-Original Message-
From: Robert Williams [mailto:[EMAIL PROTECTED]]
Sent: 03 May 2002 14:43
To: Struts Users Mailing List
Subject: Re: *** URGENT Help needed 


Oh no, here we go again!  And it's Friday and 6:30AM, what could be worse?

Someone wake up Craig NOW!


- Original Message -
From: "Reid Tardy" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 6:29 AM
Subject: *** URGENT Help needed 


> Dearest Struts Gurus,
>
> My name is Reid Tardy.
>
> This may be a bit off topic but I need all of you all to drop what you are
> doing and help me right now. I am trying to modify the Struts example to
run
> on a machine with VB instead of Java. I also want to be able to download
gif
> files into Lotus Notes. I have never used Java before but since I hold an
AA
> in make-up application, an AS in auto mechanics, an AS in massage therapy,
a
> BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
> sword fighting, a PHD in Political Science from a college somewhere in
> Newfoundland and numerous continuing ed certificates. I have spent the
> better part of ten minutes trying to get it to work but it doesn't. My
> browser don't shows anything ... it don't even show an exception. I
haven't
> bothered to look at the documentation. One last question, do I need some
> thing like TomCat? What is a TomCat anyway? Could you tell me how to
install
> one if I need it? Please help immediately but not too fast because I am
> going for beers soon.
>
> Many thanks and kind regards,
>
> Reid
>
> P.S. By the way, James and Mark you both suck more than Micael because you
> haven't answered my question before I posted it.
>
>
>
>
> _
> MSN Photos is the easiest way to share and print your photos:
> http://photos.msn.com/support/worldwide.aspx
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>


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

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




Re: *** URGENT Help needed ****

2002-05-03 Thread bhatia10

People in this group are nuts :)


"And thats all I have to say about that."
Forrest Gump
- Original Message -
From: "Robert Williams" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 8:43 AM
Subject: Re: *** URGENT Help needed 


> Oh no, here we go again!  And it's Friday and 6:30AM, what could be worse?
>
> Someone wake up Craig NOW!
>
>
> - Original Message -
> From: "Reid Tardy" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, May 03, 2002 6:29 AM
> Subject: *** URGENT Help needed 
>
>
> > Dearest Struts Gurus,
> >
> > My name is Reid Tardy.
> >
> > This may be a bit off topic but I need all of you all to drop what you
are
> > doing and help me right now. I am trying to modify the Struts example to
> run
> > on a machine with VB instead of Java. I also want to be able to download
> gif
> > files into Lotus Notes. I have never used Java before but since I hold
an
> AA
> > in make-up application, an AS in auto mechanics, an AS in massage
therapy,
> a
> > BA in history, an MA in 20th-Century Bulgarian Literature with a minor
in
> > sword fighting, a PHD in Political Science from a college somewhere in
> > Newfoundland and numerous continuing ed certificates. I have spent the
> > better part of ten minutes trying to get it to work but it doesn't. My
> > browser don't shows anything ... it don't even show an exception. I
> haven't
> > bothered to look at the documentation. One last question, do I need some
> > thing like TomCat? What is a TomCat anyway? Could you tell me how to
> install
> > one if I need it? Please help immediately but not too fast because I am
> > going for beers soon.
> >
> > Many thanks and kind regards,
> >
> > Reid
> >
> > P.S. By the way, James and Mark you both suck more than Micael because
you
> > haven't answered my question before I posted it.
> >
> >
> >
> >
> > _
> > MSN Photos is the easiest way to share and print your photos:
> > http://photos.msn.com/support/worldwide.aspx
> >
> >
> > --
> > To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
> >
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>
>

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




RE: *** URGENT Help needed ****

2002-05-03 Thread James Mitchell

No, not all the time.

Just on Fridays.

JM

> -Original Message-
> From: bhatia10 [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 03, 2002 10:24 AM
> To: Struts Users Mailing List
> Subject: Re: *** URGENT Help needed 
>
>
> People in this group are nuts :)
>
>
> "And thats all I have to say about that."
> Forrest Gump
> - Original Message -
> From: "Robert Williams" <[EMAIL PROTECTED]>
> To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> Sent: Friday, May 03, 2002 8:43 AM
> Subject: Re: *** URGENT Help needed 
>
>
> > Oh no, here we go again!  And it's Friday and 6:30AM, what
> could be worse?
> >
> > Someone wake up Craig NOW!
> >
> >
> > - Original Message -----
> > From: "Reid Tardy" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Friday, May 03, 2002 6:29 AM
> > Subject: *** URGENT Help needed 
> >
> >
> > > Dearest Struts Gurus,
> > >
> > > My name is Reid Tardy.
> > >
> > > This may be a bit off topic but I need all of you all to drop what you
> are
> > > doing and help me right now. I am trying to modify the Struts
> example to
> > run
> > > on a machine with VB instead of Java. I also want to be able
> to download
> > gif
> > > files into Lotus Notes. I have never used Java before but since I hold
> an
> > AA
> > > in make-up application, an AS in auto mechanics, an AS in massage
> therapy,
> > a
> > > BA in history, an MA in 20th-Century Bulgarian Literature with a minor
> in
> > > sword fighting, a PHD in Political Science from a college somewhere in
> > > Newfoundland and numerous continuing ed certificates. I have spent the
> > > better part of ten minutes trying to get it to work but it doesn't. My
> > > browser don't shows anything ... it don't even show an exception. I
> > haven't
> > > bothered to look at the documentation. One last question, do
> I need some
> > > thing like TomCat? What is a TomCat anyway? Could you tell me how to
> > install
> > > one if I need it? Please help immediately but not too fast
> because I am
> > > going for beers soon.
> > >
> > > Many thanks and kind regards,
> > >
> > > Reid
> > >
> > > P.S. By the way, James and Mark you both suck more than Micael because
> you
> > > haven't answered my question before I posted it.
> > >
> > >
> > >
> > >
> > > _
> > > MSN Photos is the easiest way to share and print your photos:
> > > http://photos.msn.com/support/worldwide.aspx
> > >
> > >
> > > --
> > > To unsubscribe, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> > > For additional commands, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> > >
> >
> >
> > --
> > To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
> >
> >
>
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
>
>


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




Re: *** URGENT Help needed ****

2002-05-03 Thread Kevin . Bedell




I believe the answer to this is 42.

Reid - I've actually already done this. I did this port using .NET, VB,
cobol, j2ee, xml, xpl. Then I hacked it all together using Perl.

I've posted the resulting work on my web site:
http:/www.YouReallySuck.com/I/am/a/bonehead.html

I'll be happy to spend all my time answering any question you may have. You
really seem great and you're questions are Brilliant!

FWIW -
Kevin







"Reid Tardy" <[EMAIL PROTECTED]> on 05/03/2002 04:59:32 AM

Please respond to "Struts Users Mailing List"
  <[EMAIL PROTECTED]>

To:   [EMAIL PROTECTED]
cc:(bcc: Kevin Bedell/Systems/USHO/SunLife)
Subject:  *** URGENT Help needed 


Dearest Struts Gurus,

My name is Reid Tardy.

This may be a bit off topic but I need all of you all to drop what you are
doing and help me right now. I am trying to modify the Struts example to
run
on a machine with VB instead of Java. I also want to be able to download
gif
files into Lotus Notes. I have never used Java before but since I hold an
AA
in make-up application, an AS in auto mechanics, an AS in massage therapy,
a
BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
sword fighting, a PHD in Political Science from a college somewhere in
Newfoundland and numerous continuing ed certificates. I have spent the
better part of ten minutes trying to get it to work but it doesn't. My
browser don't shows anything ... it don't even show an exception. I haven't
bothered to look at the documentation. One last question, do I need some
thing like TomCat? What is a TomCat anyway? Could you tell me how to
install
one if I need it? Please help immediately but not too fast because I am
going for beers soon.

Many thanks and kind regards,

Reid

P.S. By the way, James and Mark you both suck more than Micael because you
haven't answered my question before I posted it.




_
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx


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







---
This e-mail message (including attachments, if any) is intended for the use
of the individual or entity to which it is addressed and may contain
information that is privileged, proprietary , confidential and exempt from
disclosure.  If you are not the intended recipient, you are notified that
any dissemination, distribution or copying of this communication is
strictly prohibited.  If you have received this communication in error,
please notify the sender and erase this e-mail message immediately.
---


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




RE: *** URGENT Help needed ****

2002-05-03 Thread James Mitchell

I'm getting "This page cannot be displayed" when I click on that hyperlink.

Is that an error page from Struts, Tomcat, or Flash?

How can I add such a feature to my application?  I am using arrays in flash
but it don't show no errors.

This is definitely a struts problem.

Waaa...help me Craig

JM






> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 03, 2002 10:42 AM
> To: Struts Users Mailing List
> Subject: Re: *** URGENT Help needed 
>
>
>
>
>
> I believe the answer to this is 42.
>
> Reid - I've actually already done this. I did this port using .NET, VB,
> cobol, j2ee, xml, xpl. Then I hacked it all together using Perl.
>
> I've posted the resulting work on my web site:
> http:/www.YouReallySuck.com/I/am/a/bonehead.html
>
> I'll be happy to spend all my time answering any question you may
> have. You
> really seem great and you're questions are Brilliant!
>
> FWIW -
> Kevin
>
>
>
>
>
>
>
> "Reid Tardy" <[EMAIL PROTECTED]> on 05/03/2002 04:59:32 AM
>
> Please respond to "Struts Users Mailing List"
>   <[EMAIL PROTECTED]>
>
> To:   [EMAIL PROTECTED]
> cc:(bcc: Kevin Bedell/Systems/USHO/SunLife)
> Subject:  *** URGENT Help needed 
>
>
> Dearest Struts Gurus,
>
> My name is Reid Tardy.
>
> This may be a bit off topic but I need all of you all to drop what you are
> doing and help me right now. I am trying to modify the Struts example to
> run
> on a machine with VB instead of Java. I also want to be able to download
> gif
> files into Lotus Notes. I have never used Java before but since I hold an
> AA
> in make-up application, an AS in auto mechanics, an AS in massage therapy,
> a
> BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
> sword fighting, a PHD in Political Science from a college somewhere in
> Newfoundland and numerous continuing ed certificates. I have spent the
> better part of ten minutes trying to get it to work but it doesn't. My
> browser don't shows anything ... it don't even show an exception.
> I haven't
> bothered to look at the documentation. One last question, do I need some
> thing like TomCat? What is a TomCat anyway? Could you tell me how to
> install
> one if I need it? Please help immediately but not too fast because I am
> going for beers soon.
>
> Many thanks and kind regards,
>
> Reid
>
> P.S. By the way, James and Mark you both suck more than Micael because you
> haven't answered my question before I posted it.
>
>
>
>
> _
> MSN Photos is the easiest way to share and print your photos:
> http://photos.msn.com/support/worldwide.aspx
>
>
> --
> To unsubscribe, e-mail:   <
> mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <
> mailto:[EMAIL PROTECTED]>
>
>
>
>
>
>
>
> --
> -
> This e-mail message (including attachments, if any) is intended
> for the use
> of the individual or entity to which it is addressed and may contain
> information that is privileged, proprietary , confidential and exempt from
> disclosure.  If you are not the intended recipient, you are notified that
> any dissemination, distribution or copying of this communication is
> strictly prohibited.  If you have received this communication in error,
> please notify the sender and erase this e-mail message immediately.
> --
> -
>
>
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
>
>


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




RE: *** URGENT Help needed ****

2002-05-03 Thread SUPRIYA MISRA

How can you expect this asp page to work without tomcat?


>From: "James Mitchell" <[EMAIL PROTECTED]>
>Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>Subject: RE: *** URGENT Help needed 
>Date: Fri, 3 May 2002 11:16:12 -0400
>
>I'm getting "This page cannot be displayed" when I click on that hyperlink.
>
>Is that an error page from Struts, Tomcat, or Flash?
>
>How can I add such a feature to my application?  I am using arrays in flash
>but it don't show no errors.
>
>This is definitely a struts problem.
>
>Waaa...help me Craig
>
>JM
>
>
>
>
>
>
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, May 03, 2002 10:42 AM
> > To: Struts Users Mailing List
> > Subject: Re: *** URGENT Help needed 
> >
> >
> >
> >
> >
> > I believe the answer to this is 42.
> >
> > Reid - I've actually already done this. I did this port using .NET, VB,
> > cobol, j2ee, xml, xpl. Then I hacked it all together using Perl.
> >
> > I've posted the resulting work on my web site:
> > http:/www.YouReallySuck.com/I/am/a/bonehead.html
> >
> > I'll be happy to spend all my time answering any question you may
> > have. You
> > really seem great and you're questions are Brilliant!
> >
> > FWIW -
> > Kevin
> >
> >
> >
> >
> >
> >
> >
> > "Reid Tardy" <[EMAIL PROTECTED]> on 05/03/2002 04:59:32 AM
> >
> > Please respond to "Struts Users Mailing List"
> >   <[EMAIL PROTECTED]>
> >
> > To:   [EMAIL PROTECTED]
> > cc:(bcc: Kevin Bedell/Systems/USHO/SunLife)
> > Subject:  *** URGENT Help needed 
> >
> >
> > Dearest Struts Gurus,
> >
> > My name is Reid Tardy.
> >
> > This may be a bit off topic but I need all of you all to drop what you 
>are
> > doing and help me right now. I am trying to modify the Struts example to
> > run
> > on a machine with VB instead of Java. I also want to be able to download
> > gif
> > files into Lotus Notes. I have never used Java before but since I hold 
>an
> > AA
> > in make-up application, an AS in auto mechanics, an AS in massage 
>therapy,
> > a
> > BA in history, an MA in 20th-Century Bulgarian Literature with a minor 
>in
> > sword fighting, a PHD in Political Science from a college somewhere in
> > Newfoundland and numerous continuing ed certificates. I have spent the
> > better part of ten minutes trying to get it to work but it doesn't. My
> > browser don't shows anything ... it don't even show an exception.
> > I haven't
> > bothered to look at the documentation. One last question, do I need some
> > thing like TomCat? What is a TomCat anyway? Could you tell me how to
> > install
> > one if I need it? Please help immediately but not too fast because I am
> > going for beers soon.
> >
> > Many thanks and kind regards,
> >
> > Reid
> >
> > P.S. By the way, James and Mark you both suck more than Micael because 
>you
> > haven't answered my question before I posted it.
> >
> >
> >
> >
> > _
> > MSN Photos is the easiest way to share and print your photos:
> > http://photos.msn.com/support/worldwide.aspx
> >
> >
> > --
> > To unsubscribe, e-mail:   <
> > mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail: <
> > mailto:[EMAIL PROTECTED]>
> >
> >
> >
> >
> >
> >
> >
> > --
> > -
> > This e-mail message (including attachments, if any) is intended
> > for the use
> > of the individual or entity to which it is addressed and may contain
> > information that is privileged, proprietary , confidential and exempt 
>from
> > disclosure.  If you are not the intended recipient, you are notified 
>that
> > any dissemination, distribution or copying of this communication is
> > strictly prohibited.  If you have received this communication in error,
> > please notify the sender and erase this e-mail message immediately.
> > --
> > -
> >
> >
> > --
> > To unsubscribe, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> >
> >
>
>
>--
>To unsubscribe, e-mail:   
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: 
><mailto:[EMAIL PROTECTED]>
>




_
Chat with friends online, try MSN Messenger: http://messenger.msn.com


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




Re: *** URGENT Help needed ****

2002-05-03 Thread bhatia10

Did you follow this week on the group?

:)


"And thats all I have to say about that."
Forrest Gump
- Original Message -
From: "James Mitchell" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 9:33 AM
Subject: RE: *** URGENT Help needed 


> No, not all the time.
>
> Just on Fridays.
>
> JM
>
> > -Original Message-
> > From: bhatia10 [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, May 03, 2002 10:24 AM
> > To: Struts Users Mailing List
> > Subject: Re: *** URGENT Help needed 
> >
> >
> > People in this group are nuts :)
> >
> >
> > "And thats all I have to say about that."
> > Forrest Gump
> > - Original Message -
> > From: "Robert Williams" <[EMAIL PROTECTED]>
> > To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> > Sent: Friday, May 03, 2002 8:43 AM
> > Subject: Re: *** URGENT Help needed 
> >
> >
> > > Oh no, here we go again!  And it's Friday and 6:30AM, what
> > could be worse?
> > >
> > > Someone wake up Craig NOW!
> > >
> > >
> > > - Original Message -
> > > From: "Reid Tardy" <[EMAIL PROTECTED]>
> > > To: <[EMAIL PROTECTED]>
> > > Sent: Friday, May 03, 2002 6:29 AM
> > > Subject: *** URGENT Help needed 
> > >
> > >
> > > > Dearest Struts Gurus,
> > > >
> > > > My name is Reid Tardy.
> > > >
> > > > This may be a bit off topic but I need all of you all to drop what
you
> > are
> > > > doing and help me right now. I am trying to modify the Struts
> > example to
> > > run
> > > > on a machine with VB instead of Java. I also want to be able
> > to download
> > > gif
> > > > files into Lotus Notes. I have never used Java before but since I
hold
> > an
> > > AA
> > > > in make-up application, an AS in auto mechanics, an AS in massage
> > therapy,
> > > a
> > > > BA in history, an MA in 20th-Century Bulgarian Literature with a
minor
> > in
> > > > sword fighting, a PHD in Political Science from a college somewhere
in
> > > > Newfoundland and numerous continuing ed certificates. I have spent
the
> > > > better part of ten minutes trying to get it to work but it doesn't.
My
> > > > browser don't shows anything ... it don't even show an exception. I
> > > haven't
> > > > bothered to look at the documentation. One last question, do
> > I need some
> > > > thing like TomCat? What is a TomCat anyway? Could you tell me how to
> > > install
> > > > one if I need it? Please help immediately but not too fast
> > because I am
> > > > going for beers soon.
> > > >
> > > > Many thanks and kind regards,
> > > >
> > > > Reid
> > > >
> > > > P.S. By the way, James and Mark you both suck more than Micael
because
> > you
> > > > haven't answered my question before I posted it.
> > > >
> > > >
> > > >
> > > >
> > > > _
> > > > MSN Photos is the easiest way to share and print your photos:
> > > > http://photos.msn.com/support/worldwide.aspx
> > > >
> > > >
> > > > --
> > > > To unsubscribe, e-mail:
> > > <mailto:[EMAIL PROTECTED]>
> > > > For additional commands, e-mail:
> > > <mailto:[EMAIL PROTECTED]>
> > > >
> > >
> > >
> > > --
> > > To unsubscribe, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> > > For additional commands, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> > >
> > >
> >
> > --
> > To unsubscribe, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
> > <mailto:[EMAIL PROTECTED]>
> >
> >
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>
>

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




Re: *** URGENT Help needed ****

2002-05-03 Thread Craig R. McClanahan



On Fri, 3 May 2002, Robert Williams wrote:

> Date: Fri, 3 May 2002 08:43:02 -0500
> From: Robert Williams <[EMAIL PROTECTED]>
> Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]>
> To: Struts Users Mailing List <[EMAIL PROTECTED]>
> Subject: Re: *** URGENT Help needed 
>
> Oh no, here we go again!  And it's Friday and 6:30AM, what could be worse?
>
> Someone wake up Craig NOW!
>

So *that* was the banging I heard on my Windows this morning  :-)

Craig


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




RE: *** URGENT Help needed ****

2002-05-03 Thread Craig R. McClanahan



On Fri, 3 May 2002, James Mitchell wrote:

> Date: Fri, 3 May 2002 11:16:12 -0400
> From: James Mitchell <[EMAIL PROTECTED]>
> Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]>
> To: Struts Users Mailing List <[EMAIL PROTECTED]>
> Subject: RE: *** URGENT Help needed 
>
> I'm getting "This page cannot be displayed" when I click on that hyperlink.
>
> Is that an error page from Struts, Tomcat, or Flash?
>
> How can I add such a feature to my application?  I am using arrays in flash
> but it don't show no errors.
>
> This is definitely a struts problem.
>
> Waaa...help me Craig
>


My favorite computer error message of all time was in the command line
interpreter program of an ancient minicomputer operating system from Data
General.  If you typed a particular incorrect command, it simply said:

  You can't do that



> JM
>

Craig


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




RE: *** URGENT Help needed ****

2002-05-03 Thread Micael Padraig Og mac Grene

There is a difference between saying you are superior and being worth a 
damn.  You obviously are sucking -- up.  My problem with Jim and Mark is 
they did not bother to read my question.  You apparently have not either.

At 05:17 PM 5/3/02 +0530, you wrote:
>suck suck gets better..
>
>-Original Message-
>From: Etienne, Ingo (Goetzfried AG)
>[mailto:[EMAIL PROTECTED]]
>Sent: Friday, May 03, 2002 5:06 PM
>To: 'Struts Users Mailing List'
>Subject: RE: *** URGENT Help needed 
>
>
>Applause !!!
>Really good one :)))
>
>-Original Message-
>From: Reid Tardy [mailto:[EMAIL PROTECTED]]
>Sent: Freitag, 3. Mai 2002 13:30
>To: [EMAIL PROTECTED]
>Subject: *** URGENT Help needed 
>
>
>Dearest Struts Gurus,
>
>My name is Reid Tardy.
>
>This may be a bit off topic but I need all of you all to drop what you are
>doing and help me right now. I am trying to modify the Struts example to run
>
>on a machine with VB instead of Java. I also want to be able to download gif
>
>files into Lotus Notes. I have never used Java before but since I hold an AA
>
>in make-up application, an AS in auto mechanics, an AS in massage therapy, a
>
>BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
>sword fighting, a PHD in Political Science from a college somewhere in
>Newfoundland and numerous continuing ed certificates. I have spent the
>better part of ten minutes trying to get it to work but it doesn't. My
>browser don't shows anything ... it don't even show an exception. I haven't
>bothered to look at the documentation. One last question, do I need some
>thing like TomCat? What is a TomCat anyway? Could you tell me how to install
>
>one if I need it? Please help immediately but not too fast because I am
>going for beers soon.
>
>Many thanks and kind regards,
>
>Reid
>
>P.S. By the way, James and Mark you both suck more than Micael because you
>haven't answered my question before I posted it.
>
>
>
>
>_
>MSN Photos is the easiest way to share and print your photos:
>http://photos.msn.com/support/worldwide.aspx
>
>
>--
>To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
>
>--
>To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
>
>
>--
>To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>



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




RE: *** URGENT Help needed ****

2002-05-03 Thread Voytek . Jarnot

Just shut up already, no one owes you anything...

-Original Message-
From: Micael Padraig Og mac Grene [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 03, 2002 11:30 AM
To: Struts Users Mailing List
Subject: RE: *** URGENT Help needed 


There is a difference between saying you are superior and being worth a 
damn.  You obviously are sucking -- up.  My problem with Jim and Mark is 
they did not bother to read my question.  You apparently have not either.

At 05:17 PM 5/3/02 +0530, you wrote:
>suck suck gets better..
>
>-Original Message-
>From: Etienne, Ingo (Goetzfried AG)
>[mailto:[EMAIL PROTECTED]]
>Sent: Friday, May 03, 2002 5:06 PM
>To: 'Struts Users Mailing List'
>Subject: RE: *** URGENT Help needed 
>
>
>Applause !!!
>Really good one :)))
>
>-Original Message-
>From: Reid Tardy [mailto:[EMAIL PROTECTED]]
>Sent: Freitag, 3. Mai 2002 13:30
>To: [EMAIL PROTECTED]
>Subject: *** URGENT Help needed 
>
>
>Dearest Struts Gurus,
>
>My name is Reid Tardy.
>
>This may be a bit off topic but I need all of you all to drop what you are
>doing and help me right now. I am trying to modify the Struts example to
run
>
>on a machine with VB instead of Java. I also want to be able to download
gif
>
>files into Lotus Notes. I have never used Java before but since I hold an
AA
>
>in make-up application, an AS in auto mechanics, an AS in massage therapy,
a
>
>BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
>sword fighting, a PHD in Political Science from a college somewhere in
>Newfoundland and numerous continuing ed certificates. I have spent the
>better part of ten minutes trying to get it to work but it doesn't. My
>browser don't shows anything ... it don't even show an exception. I haven't
>bothered to look at the documentation. One last question, do I need some
>thing like TomCat? What is a TomCat anyway? Could you tell me how to
install
>
>one if I need it? Please help immediately but not too fast because I am
>going for beers soon.
>
>Many thanks and kind regards,
>
>Reid
>
>P.S. By the way, James and Mark you both suck more than Micael because you
>haven't answered my question before I posted it.
>
>
>
>
>_
>MSN Photos is the easiest way to share and print your photos:
>http://photos.msn.com/support/worldwide.aspx
>
>
>--
>To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
>
>--
>To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>
>
>--
>To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>



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

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




Re: *** URGENT Help needed ****

2002-05-03 Thread Eddie Bush

LMAO - I love it =)

... kind of like doing 'cat "can of catfood"' on a Unix box =)

(cat: cannot open can of catfood)


- Original Message -
From: "Craig R. McClanahan" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 11:12 AM
Subject: RE: *** URGENT Help needed 


>
>
> On Fri, 3 May 2002, James Mitchell wrote:
>
> > Date: Fri, 3 May 2002 11:16:12 -0400
> > From: James Mitchell <[EMAIL PROTECTED]>
> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]>
> > To: Struts Users Mailing List <[EMAIL PROTECTED]>
> > Subject: RE: *** URGENT Help needed 
> >
> > I'm getting "This page cannot be displayed" when I click on that
hyperlink.
> >
> > Is that an error page from Struts, Tomcat, or Flash?
> >
> > How can I add such a feature to my application?  I am using arrays in
flash
> > but it don't show no errors.
> >
> > This is definitely a struts problem.
> >
> > Waaa...help me Craig
> >
>
> 
> My favorite computer error message of all time was in the command line
> interpreter program of an ancient minicomputer operating system from Data
> General.  If you typed a particular incorrect command, it simply said:
>
>   You can't do that
>
> 
>
> > JM
> >
>
> Craig
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>


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




Re: *** URGENT Help needed ****

2002-05-03 Thread Eddie Bush

AMEN! *applause*

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 12:06 PM
Subject: RE: *** URGENT Help needed 


> Just shut up already, no one owes you anything...
>
> -Original Message-
> From: Micael Padraig Og mac Grene [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 03, 2002 11:30 AM
> To: Struts Users Mailing List
> Subject: RE: *** URGENT Help needed 
>
>
> There is a difference between saying you are superior and being worth a
> damn.  You obviously are sucking -- up.  My problem with Jim and Mark is
> they did not bother to read my question.  You apparently have not either.
>
> At 05:17 PM 5/3/02 +0530, you wrote:
> >suck suck gets better..
> >
> >-Original Message-
> >From: Etienne, Ingo (Goetzfried AG)
> >[mailto:[EMAIL PROTECTED]]
> >Sent: Friday, May 03, 2002 5:06 PM
> >To: 'Struts Users Mailing List'
> >Subject: RE: *** URGENT Help needed 
> >
> >
> >Applause !!!
> >Really good one :)))
> >
> >-Original Message-
> >From: Reid Tardy [mailto:[EMAIL PROTECTED]]
> >Sent: Freitag, 3. Mai 2002 13:30
> >To: [EMAIL PROTECTED]
> >Subject: *** URGENT Help needed 
> >
> >
> >Dearest Struts Gurus,
> >
> >My name is Reid Tardy.
> >
> >This may be a bit off topic but I need all of you all to drop what you
are
> >doing and help me right now. I am trying to modify the Struts example to
> run
> >
> >on a machine with VB instead of Java. I also want to be able to download
> gif
> >
> >files into Lotus Notes. I have never used Java before but since I hold an
> AA
> >
> >in make-up application, an AS in auto mechanics, an AS in massage
therapy,
> a
> >
> >BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
> >sword fighting, a PHD in Political Science from a college somewhere in
> >Newfoundland and numerous continuing ed certificates. I have spent the
> >better part of ten minutes trying to get it to work but it doesn't. My
> >browser don't shows anything ... it don't even show an exception. I
haven't
> >bothered to look at the documentation. One last question, do I need some
> >thing like TomCat? What is a TomCat anyway? Could you tell me how to
> install
> >
> >one if I need it? Please help immediately but not too fast because I am
> >going for beers soon.
> >
> >Many thanks and kind regards,
> >
> >Reid
> >
> >P.S. By the way, James and Mark you both suck more than Micael because
you
> >haven't answered my question before I posted it.
> >
> >
> >
> >
> >_
> >MSN Photos is the easiest way to share and print your photos:
> >http://photos.msn.com/support/worldwide.aspx
> >
> >
> >--
> >To unsubscribe, e-mail:
> ><mailto:[EMAIL PROTECTED]>
> >For additional commands, e-mail:
> ><mailto:[EMAIL PROTECTED]>
> >
> >--
> >To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> >For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
> >
> >
> >--
> >To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> >For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
>
>
>
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>


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




Re: *** URGENT Help needed ****

2002-05-03 Thread Eddie Bush

Is Micael trying to say that he built the hotmail account to disguise
himself from Mark/James - and that this is, in fact, a thread initiated by
HIM incognito? *gasp* =O

... friday - not a day of the week, but a STATE OF MIND (if you're on the
struts-user mailing list that is =)

- Original Message -
From: "Micael Padraig Og mac Grene" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 11:29 AM
Subject: RE: *** URGENT Help needed 


> There is a difference between saying you are superior and being worth a
> damn.  You obviously are sucking -- up.  My problem with Jim and Mark is
> they did not bother to read my question.  You apparently have not either.
>
> At 05:17 PM 5/3/02 +0530, you wrote:
> >suck suck gets better..
> >
> >-Original Message-
> >From: Etienne, Ingo (Goetzfried AG)
> >[mailto:[EMAIL PROTECTED]]
> >Sent: Friday, May 03, 2002 5:06 PM
> >To: 'Struts Users Mailing List'
> >Subject: RE: *** URGENT Help needed 
> >
> >
> >Applause !!!
> >Really good one :)))
> >
> >-Original Message-----
> >From: Reid Tardy [mailto:[EMAIL PROTECTED]]
> >Sent: Freitag, 3. Mai 2002 13:30
> >To: [EMAIL PROTECTED]
> >Subject: *** URGENT Help needed 
> >
> >
> >Dearest Struts Gurus,
> >
> >My name is Reid Tardy.
> >
> >This may be a bit off topic but I need all of you all to drop what you
are
> >doing and help me right now. I am trying to modify the Struts example to
run
> >
> >on a machine with VB instead of Java. I also want to be able to download
gif
> >
> >files into Lotus Notes. I have never used Java before but since I hold an
AA
> >
> >in make-up application, an AS in auto mechanics, an AS in massage
therapy, a
> >
> >BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
> >sword fighting, a PHD in Political Science from a college somewhere in
> >Newfoundland and numerous continuing ed certificates. I have spent the
> >better part of ten minutes trying to get it to work but it doesn't. My
> >browser don't shows anything ... it don't even show an exception. I
haven't
> >bothered to look at the documentation. One last question, do I need some
> >thing like TomCat? What is a TomCat anyway? Could you tell me how to
install
> >
> >one if I need it? Please help immediately but not too fast because I am
> >going for beers soon.
> >
> >Many thanks and kind regards,
> >
> >Reid
> >
> >P.S. By the way, James and Mark you both suck more than Micael because
you
> >haven't answered my question before I posted it.
> >
> >
> >
> >
> >_
> >MSN Photos is the easiest way to share and print your photos:
> >http://photos.msn.com/support/worldwide.aspx
> >
> >
> >--
> >To unsubscribe, e-mail:
> ><mailto:[EMAIL PROTECTED]>
> >For additional commands, e-mail:
> ><mailto:[EMAIL PROTECTED]>
> >
> >--
> >To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> >For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
> >
> >
> >--
> >To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> >For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>


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




RE: *** URGENT Help needed ****

2002-05-03 Thread James Mitchell

See intermixed.






> -Original Message-
> From: Eddie Bush [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 03, 2002 4:08 PM
> To: Struts Users Mailing List
> Subject: Re: *** URGENT Help needed 
>
>
> Is Micael trying to say that he built the hotmail account to disguise
> himself from Mark/James - and that this is, in fact, a thread initiated by
> HIM incognito? *gasp* =O



Not sure.




I have a message for those who post messages in a rude and ignorant manner
(no names).





They expect an answer (NOW!!!).





We know who you are.





Keep scrolling.



Keep scrolling.



Keep scrolling.



Here ya go...customized just for you!!!




  _
 ' '
|   |
|   |
|   |
|   |
|   |
|   |
  __|   |__
 '  |   |  '__
 |  |   |  |  '
 |  |   |  |  |
 |  |   |  |  |
 '   '
  '_'



Have a wonderful friday.

James Mitchell




>
> ... friday - not a day of the week, but a STATE OF MIND (if you're on the
> struts-user mailing list that is =)
>
> - Original Message -
> From: "Micael Padraig Og mac Grene" <[EMAIL PROTECTED]>
> To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> Sent: Friday, May 03, 2002 11:29 AM
> Subject: RE: *** URGENT Help needed 
>
>
> > There is a difference between saying you are superior and being worth a
> > damn.  You obviously are sucking -- up.  My problem with Jim and Mark is
> > they did not bother to read my question.  You apparently have
> not either.
> >
> > At 05:17 PM 5/3/02 +0530, you wrote:
> > >suck suck gets better..
> > >
> > >-Original Message-
> > >From: Etienne, Ingo (Goetzfried AG)
> > >[mailto:[EMAIL PROTECTED]]
> > >Sent: Friday, May 03, 2002 5:06 PM
> > >To: 'Struts Users Mailing List'
> > >Subject: RE: *** URGENT Help needed 
> > >
> > >
> > >Applause !!!
> > >Really good one :)))
> > >
> > >-Original Message-
> > >From: Reid Tardy [mailto:[EMAIL PROTECTED]]
> > >Sent: Freitag, 3. Mai 2002 13:30
> > >To: [EMAIL PROTECTED]
> > >Subject: *** URGENT Help needed 
> > >
> > >
> > >Dearest Struts Gurus,
> > >
> > >My name is Reid Tardy.
> > >
> > >This may be a bit off topic but I need all of you all to drop what you
> are
> > >doing and help me right now. I am trying to modify the Struts
> example to
> run
> > >
> > >on a machine with VB instead of Java. I also want to be able
> to download
> gif
> > >
> > >files into Lotus Notes. I have never used Java before but
> since I hold an
> AA
> > >
> > >in make-up application, an AS in auto mechanics, an AS in massage
> therapy, a
> > >
> > >BA in history, an MA in 20th-Century Bulgarian Literature with
> a minor in
> > >sword fighting, a PHD in Political Science from a college somewhere in
> > >Newfoundland and numerous continuing ed certificates. I have spent the
> > >better part of ten minutes trying to get it to work but it doesn't. My
> > >browser don't shows anything ... it don't even show an exception. I
> haven't
> > >bothered to look at the documentation. One last question, do I
> need some
> > >thing like TomCat? What is a TomCat anyway? Could you tell me how to
> install
> > >
> > >one if I need it? Please help immediately but not too fast because I am
> > >going for beers soon.
> > >
> > >Many thanks and kind regards,
> > >
> > >Reid
> > >
> > >P.S. By the way, James and Mark you both suck more than Micael because
> you
> > >haven't answered my question before I posted it.
> > >
> > >
> > >
> > >
> > >_
> > >MSN Photos is the easiest way to share and print your photos:
> > >http://photos.msn.com/support/worldwide.aspx
> > >
> > >
> > >--
> > >To unsubscribe, e-mail:
> > ><mailto:[EMAIL PROTECTED]>
> > >For additional commands, e-mail:
> > ><mailto:[EMAIL PROTECTED]>
> > >
> > >--
> > >To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> > >For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
> > >
> > >
> > >--
> > >To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> > >For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
> >
> >
> >
> > --
> > To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
> >
>
>
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
>
>


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




Re: *** URGENT Help needed ****

2002-05-03 Thread Micael Padraig Og mac Grene

What hotmail account are you talking about?  You seem to have a lot of time 
on your hands.  Maybe you forgot it is a lot smaller world than you think.

At 03:08 PM 5/3/02 -0500, you wrote:
>Is Micael trying to say that he built the hotmail account to disguise
>himself from Mark/James - and that this is, in fact, a thread initiated by
>HIM incognito? *gasp* =O
>
>... friday - not a day of the week, but a STATE OF MIND (if you're on the
>struts-user mailing list that is =)
>
>- Original Message -
>From: "Micael Padraig Og mac Grene" <[EMAIL PROTECTED]>
>To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>Sent: Friday, May 03, 2002 11:29 AM
>Subject: RE: *** URGENT Help needed 
>
>
> > There is a difference between saying you are superior and being worth a
> > damn.  You obviously are sucking -- up.  My problem with Jim and Mark is
> > they did not bother to read my question.  You apparently have not either.
> >
> > At 05:17 PM 5/3/02 +0530, you wrote:
> > >suck suck gets better..
> > >
> > >-Original Message-
> > >From: Etienne, Ingo (Goetzfried AG)
> > >[mailto:[EMAIL PROTECTED]]
> > >Sent: Friday, May 03, 2002 5:06 PM
> > >To: 'Struts Users Mailing List'
> > >Subject: RE: *** URGENT Help needed 
> > >
> > >
> > >Applause !!!
> > >Really good one :)))
> > >
> > >-Original Message-
> > >From: Reid Tardy [mailto:[EMAIL PROTECTED]]
> > >Sent: Freitag, 3. Mai 2002 13:30
> > >To: [EMAIL PROTECTED]
> > >Subject: *** URGENT Help needed 
> > >
> > >
> > >Dearest Struts Gurus,
> > >
> > >My name is Reid Tardy.
> > >
> > >This may be a bit off topic but I need all of you all to drop what you
>are
> > >doing and help me right now. I am trying to modify the Struts example to
>run
> > >
> > >on a machine with VB instead of Java. I also want to be able to download
>gif
> > >
> > >files into Lotus Notes. I have never used Java before but since I hold an
>AA
> > >
> > >in make-up application, an AS in auto mechanics, an AS in massage
>therapy, a
> > >
> > >BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
> > >sword fighting, a PHD in Political Science from a college somewhere in
> > >Newfoundland and numerous continuing ed certificates. I have spent the
> > >better part of ten minutes trying to get it to work but it doesn't. My
> > >browser don't shows anything ... it don't even show an exception. I
>haven't
> > >bothered to look at the documentation. One last question, do I need some
> > >thing like TomCat? What is a TomCat anyway? Could you tell me how to
>install
> > >
> > >one if I need it? Please help immediately but not too fast because I am
> > >going for beers soon.
> > >
> > >Many thanks and kind regards,
> > >
> > >Reid
> > >
> > >P.S. By the way, James and Mark you both suck more than Micael because
>you
> > >haven't answered my question before I posted it.
> > >
> > >
> > >
> > >
> > >_
> > >MSN Photos is the easiest way to share and print your photos:
> > >http://photos.msn.com/support/worldwide.aspx
> > >
> > >
> > >--
> > >To unsubscribe, e-mail:
> > ><mailto:[EMAIL PROTECTED]>
> > >For additional commands, e-mail:
> > ><mailto:[EMAIL PROTECTED]>
> > >
> > >--
> > >To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
> > >For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
> > >
> > >
> > >--
> > >To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
> > >For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
> >
> >
> >
> > --
> > To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
> >
>
>
>--
>To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>



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




Re: *** URGENT Help needed ****

2002-05-03 Thread Eddie Bush

> > > >From: Reid Tardy [mailto:[EMAIL PROTECTED]]

... very hard to come up with if you actually read the message.  You expect
others to be so thorough - why are you not?

- Original Message -
From: "Micael Padraig Og mac Grene" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 3:48 PM
Subject: Re: *** URGENT Help needed 


> What hotmail account are you talking about?  You seem to have a lot of
time
> on your hands.  Maybe you forgot it is a lot smaller world than you think.
>

> > > >-Original Message-
> > > >From: Reid Tardy [mailto:[EMAIL PROTECTED]]
> > > >Sent: Freitag, 3. Mai 2002 13:30
> > > >To: [EMAIL PROTECTED]
> > > >Subject: *** URGENT Help needed 
> > > >
> > > >
> > > >Dearest Struts Gurus,



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




RE: *** URGENT Help needed ****

2002-05-03 Thread Galbreath, Mark

Oh boy...another flame war in the making.  And I was getting so bored being
in the office on a Friday night  ;-)

Mark

-Original Message-
From: Eddie Bush [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 03, 2002 5:36 PM
To: Struts Users Mailing List
Subject: Re: *** URGENT Help needed 


> > > >From: Reid Tardy [mailto:[EMAIL PROTECTED]]

... very hard to come up with if you actually read the message.  You expect
others to be so thorough - why are you not?

- Original Message -
From: "Micael Padraig Og mac Grene" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 3:48 PM
Subject: Re: *** URGENT Help needed 


> What hotmail account are you talking about?  You seem to have a lot of
time
> on your hands.  Maybe you forgot it is a lot smaller world than you think.
>

> > > >-Original Message-
> > > >From: Reid Tardy [mailto:[EMAIL PROTECTED]]
> > > >Sent: Freitag, 3. Mai 2002 13:30
> > > >To: [EMAIL PROTECTED]
> > > >Subject: *** URGENT Help needed 
> > > >
> > > >
> > > >Dearest Struts Gurus,



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

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




RE: *** URGENT Help needed ****

2002-05-04 Thread Galbreath, Mark

I just saw this - funny as hell!!!  This is by far the most interesting user
group to which I am subscribed.

Mark
(and yes, I realize it makes fun of me)

>-Original Message-
>From: Reid Tardy [mailto:[EMAIL PROTECTED]]
>Sent: Freitag, 3. Mai 2002 13:30
>
>
>Dearest Struts Gurus,
>
>My name is Reid Tardy.
>
>This may be a bit off topic but I need all of you all to drop
>what you are doing and help me right now. I am trying to modify
>the Struts example to run on a machine with VB instead of Java. 
>I also want to be able to download gif files into Lotus Notes. 
>I have never used Java before but since I hold an AA in make-up 
>application, an AS in auto mechanics, an AS in massage therapy, 
>a BA in history, an MA in 20th-Century Bulgarian Literature with 
>a minor in sword fighting, a PHD in Political Science from a 
>college somewhere in Newfoundland and numerous continuing ed 
>certificates. I have spent the better part of ten minutes trying 
>to get it to work but it doesn't. My browser don't shows anything 
>... it don't even show an exception. I haven't bothered to look at 
>the documentation. One last question, do I need some thing like 
>TomCat? What is a TomCat anyway? Could you tell me how to install 
>one if I need it? Please help immediately but not too fast because 
>I am going for beers soon.
>
>Many thanks and kind regards,
>
>Reid
>
>P.S. By the way, James and Mark you both suck more than Micael because
>you haven't answered my question before I posted it.

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: *** URGENT Help needed ****

2002-05-04 Thread Vikram Goyal01

My curiosity is about the identity of Reid Tardy... Not Mark, Not James ? Who?

V

-Original Message-
From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
Sent: Saturday, May 04, 2002 5:31 PM
To: 'Struts Users Mailing List'
Subject: RE: *** URGENT Help needed 


I just saw this - funny as hell!!!  This is by far the most interesting user
group to which I am subscribed.

Mark
(and yes, I realize it makes fun of me)

>-Original Message-
>From: Reid Tardy [mailto:[EMAIL PROTECTED]]
>Sent: Freitag, 3. Mai 2002 13:30
>
>
>Dearest Struts Gurus,
>
>My name is Reid Tardy.
>
>This may be a bit off topic but I need all of you all to drop
>what you are doing and help me right now. I am trying to modify
>the Struts example to run on a machine with VB instead of Java. 
>I also want to be able to download gif files into Lotus Notes. 
>I have never used Java before but since I hold an AA in make-up 
>application, an AS in auto mechanics, an AS in massage therapy, 
>a BA in history, an MA in 20th-Century Bulgarian Literature with 
>a minor in sword fighting, a PHD in Political Science from a 
>college somewhere in Newfoundland and numerous continuing ed 
>certificates. I have spent the better part of ten minutes trying 
>to get it to work but it doesn't. My browser don't shows anything 
>... it don't even show an exception. I haven't bothered to look at 
>the documentation. One last question, do I need some thing like 
>TomCat? What is a TomCat anyway? Could you tell me how to install 
>one if I need it? Please help immediately but not too fast because 
>I am going for beers soon.
>
>Many thanks and kind regards,
>
>Reid
>
>P.S. By the way, James and Mark you both suck more than Micael because
>you haven't answered my question before I posted it.

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


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




Re: *** URGENT Help needed ****

2002-05-06 Thread Reid Tardy

I come back from having a very, very long lunch to find this. These are 
fighting words! :) I am not Micael. Nor am I Mark or James.

I would like to thank all of you for trying to answer my question but you 
all suck because none of you took the time to understand my questions.

I have to go now because the men in white coats have found me and look, they 
have a pretty, new jacket for me.

Reid Tardy
Struts User - May 3, 2000 to May 6, 2002



>From: Eddie Bush <[EMAIL PROTECTED]>
>Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>To: Struts Users Mailing List <[EMAIL PROTECTED]>
>Subject: Re: *** URGENT Help needed 
>Date: Fri, 03 May 2002 15:08:11 -0500
>
>Is Micael trying to say that he built the hotmail account to disguise
>himself from Mark/James - and that this is, in fact, a thread initiated by
>HIM incognito? *gasp* =O
>
>... friday - not a day of the week, but a STATE OF MIND (if you're on the
>struts-user mailing list that is =)
>
>- Original Message -
>From: "Micael Padraig Og mac Grene" <[EMAIL PROTECTED]>
>To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>Sent: Friday, May 03, 2002 11:29 AM
>Subject: RE: *** URGENT Help needed 
>
>
> > There is a difference between saying you are superior and being worth a
> > damn.  You obviously are sucking -- up.  My problem with Jim and Mark is
> > they did not bother to read my question.  You apparently have not 
>either.
> >
> > At 05:17 PM 5/3/02 +0530, you wrote:
> > >suck suck gets better..
> > >
> > >-Original Message-
> > >From: Etienne, Ingo (Goetzfried AG)
> > >[mailto:[EMAIL PROTECTED]]
> > >Sent: Friday, May 03, 2002 5:06 PM
> > >To: 'Struts Users Mailing List'
> > >Subject: RE: *** URGENT Help needed ****
> > >
> > >
> > >Applause !!!
> > >Really good one :)))
> > >
> > >-Original Message-
> > >From: Reid Tardy [mailto:[EMAIL PROTECTED]]
> > >Sent: Freitag, 3. Mai 2002 13:30
> > >To: [EMAIL PROTECTED]
> > >Subject: *** URGENT Help needed 
> > >
> > >
> > >Dearest Struts Gurus,
> > >
> > >My name is Reid Tardy.
> > >
> > >This may be a bit off topic but I need all of you all to drop what you
>are
> > >doing and help me right now. I am trying to modify the Struts example 
>to
>run
> > >
> > >on a machine with VB instead of Java. I also want to be able to 
>download
>gif
> > >
> > >files into Lotus Notes. I have never used Java before but since I hold 
>an
>AA
> > >
> > >in make-up application, an AS in auto mechanics, an AS in massage
>therapy, a
> > >
> > >BA in history, an MA in 20th-Century Bulgarian Literature with a minor 
>in
> > >sword fighting, a PHD in Political Science from a college somewhere in
> > >Newfoundland and numerous continuing ed certificates. I have spent the
> > >better part of ten minutes trying to get it to work but it doesn't. My
> > >browser don't shows anything ... it don't even show an exception. I
>haven't
> > >bothered to look at the documentation. One last question, do I need 
>some
> > >thing like TomCat? What is a TomCat anyway? Could you tell me how to
>install
> > >
> > >one if I need it? Please help immediately but not too fast because I am
> > >going for beers soon.
> > >
> > >Many thanks and kind regards,
> > >
> > >Reid
> > >
> > >P.S. By the way, James and Mark you both suck more than Micael because
>you
> > >haven't answered my question before I posted it.
> > >
> > >
> > >
> > >
> > >_
> > >MSN Photos is the easiest way to share and print your photos:
> > >http://photos.msn.com/support/worldwide.aspx
> > >
> > >
> > >--
> > >To unsubscribe, e-mail:
> > ><mailto:[EMAIL PROTECTED]>
> > >For additional commands, e-mail:
> > ><mailto:[EMAIL PROTECTED]>
> > >
> > >--
> > >To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
> > >For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
> > >
> > >
> > >--
> > >To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
> > >For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
> >
> >
> >
> > --
> > To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
> > For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>
> >
>
>
>--
>To unsubscribe, e-mail:   
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: 
><mailto:[EMAIL PROTECTED]>
>




_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx


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




Re: *** URGENT Help needed ****

2002-05-09 Thread stefan werner

 you go girl :-)

stefan
- Original Message -
From: "Reid Tardy" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 03, 2002 1:29 PM
Subject: *** URGENT Help needed 


> Dearest Struts Gurus,
>
> My name is Reid Tardy.
>
> This may be a bit off topic but I need all of you all to drop what you are
> doing and help me right now. I am trying to modify the Struts example to
run
> on a machine with VB instead of Java. I also want to be able to download
gif
> files into Lotus Notes. I have never used Java before but since I hold an
AA
> in make-up application, an AS in auto mechanics, an AS in massage therapy,
a
> BA in history, an MA in 20th-Century Bulgarian Literature with a minor in
> sword fighting, a PHD in Political Science from a college somewhere in
> Newfoundland and numerous continuing ed certificates. I have spent the
> better part of ten minutes trying to get it to work but it doesn't. My
> browser don't shows anything ... it don't even show an exception. I
haven't
> bothered to look at the documentation. One last question, do I need some
> thing like TomCat? What is a TomCat anyway? Could you tell me how to
install
> one if I need it? Please help immediately but not too fast because I am
> going for beers soon.
>
> Many thanks and kind regards,
>
> Reid
>
> P.S. By the way, James and Mark you both suck more than Micael because you
> haven't answered my question before I posted it.
>
>
>
>
> _
> MSN Photos is the easiest way to share and print your photos:
> http://photos.msn.com/support/worldwide.aspx
>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>
>


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




Help needed in Javascript

2002-05-20 Thread Susmita Pati


 Hi all
I need to popup a html page which has the help contents on pressing the F1
key. How should i do this and also Where should i put the html?

Thanks in advance
Susmita

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




FW: help needed yet again!!

2003-10-20 Thread Rajat Pandit
 
-Original Message-
From: Rajat Pandit [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 20, 2003 7:54 AM
To: Apani Hiren
Subject: help needed yet again!!


 
hello,
yet another problem, pls ahve a look at the code segment, and if u could
suggest a solution or suggestion it would gr8.
 
   



 
i added a bean STATES to the request scope(ArrayList collection). each
element of the ArrayList STATES  has three properties (with getter and
setters) id, name and probabilityFactor. now i want it render a sequece
of checkboxes for the state names with the name as the stateId (from the
original form bean) and the value as the state.id  something like this
$200 to $500 
 
where stateId is the name of the checkbox which will ultimately store
the id's selected in an array
1 is the id of the selcted state if that particular option is selected
$200 to $500 is the name represented state.name ie.
 
pls consider this is imp. it would be really nice if u could mail me a
possible solution for this asap. 
thanks in advance
 
 
Rajat Pandit | [EMAIL PROTECTED]
+91 612 3117606
[ Developer and Part Time Human Being]
 

--
This email may contain confidential and privileged material for the sole
use of the intended recipient(s). Any review, use, retention,
distribution or disclosure by others is strictly prohibited. If you are
not the intended recipient (or authorized to receive for the recipient),
please contact the sender by reply email and delete all copies of this
message.  Also, email is susceptible to data corruption, interception,
tampering, unauthorized amendment and viruses. We only send and receive
emails on the basis that we are not liable for any such corruption,
interception, tampering, amendment or viruses or any consequence
thereof.

--


Help needed on Iterate Tag

2003-10-21 Thread Thakur, Vikram
Hi ,
I have Collection of  Strings and I want to print all the values in
this collection using Iterate Tag.
Any guidelines how do I do this ??

I had tried to implement it as follows but it is not working.


  


Here the getNames() method of my form bean returns a Collection of
Strings.
The bean:write method tries to search for FormBean with "element"
and I get error.
I would really appreciate If someone can help me on this.

Thanks,
Vikram





This message contains information that may be privileged or confidential and
is the property of the Cap Gemini Ernst & Young Group. It is intended only
for the person to whom it is addressed. If you are not the intended
recipient, you are not authorised to read, print, retain, copy, disseminate,
distribute, or use this message or any part thereof. If you receive this
message in error, please notify the sender immediately and delete all copies
of this message.

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



Help needed.....nested iterate problem

2003-11-16 Thread Hari_s
Hi everyone..
I have problem with iterate within iterate..
I have iterate table that contain iterate data 
and this is my code ...





 


 


but that code produce error like this
javax.servlet.jsp.JspException: No getter method for property data2 of bean ide
java.lang.Object 
org.apache.struts.util.RequestUtils.lookup(javax.servlet.jsp.PageContext, 
java.lang.String, java.lang.String, java.lang.String)
RequestUtils.java:907
int org.apache.struts.taglib.logic.IterateTag.doStartTag()
IterateTag.java:277
void _Frame1._jspService(javax.servlet.http.HttpServletRequest, 
javax.servlet.http.HttpServletResponse)
[/Frame1.jsp]
Frame1.jsp:15
void oracle.jsp.runtime.HttpJsp.service(javax.servlet.ServletRequest, 
javax.servlet.ServletResponse)
HttpJsp.java:139
[SRC:/Frame1.jsp:16]
void 
oracle.jsp.runtimev2.JspPageTable.service(javax.servlet.http.HttpServletRequest, 
javax.servlet.http.HttpServletResponse, java.lang.String)
JspPageTable.java:317
void 
oracle.jsp.runtimev2.JspServlet.internalService(javax.servlet.http.HttpServletRequest, 
javax.servlet.http.HttpServletResponse)
JspServlet.java:465
void 
oracle.jsp.runtimev2.JspServlet.service(javax.servlet.http.HttpServletRequest, 
javax.servlet.http.HttpServletResponse)
JspServlet.java:379
void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, 
javax.servlet.ServletResponse)
HttpServlet.java:853
void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for 
J2EE].server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, 
javax.servlet.ServletResponse)
ServletRequestDispatcher.java:721
void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for 
J2EE].server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest,
 javax.servlet.http.HttpServletResponse)
ServletRequestDispatcher.java:306
void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for 
J2EE].server.http.ServletRequestDispatcher.forward(javax.servlet.ServletRequest, 
javax.servlet.ServletResponse)
ServletRequestDispatcher.java:209
void org.apache.struts.action.RequestProcessor.doForward(java.lang.String, 
javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
RequestProcessor.java:1069
void 
org.apache.struts.action.RequestProcessor.processForwardConfig(javax.servlet.http.HttpServletRequest,
 javax.servlet.http.HttpServletResponse, org.apache.struts.config.ForwardConfig)
RequestProcessor.java:455
void 
org.apache.struts.action.RequestProcessor.process(javax.servlet.http.HttpServletRequest,
 javax.servlet.http.HttpServletResponse)
RequestProcessor.java:279
void 
org.apache.struts.action.ActionServlet.process(javax.servlet.http.HttpServletRequest, 
javax.servlet.http.HttpServletResponse)
ActionServlet.java:1480
void 
org.apache.struts.action.ActionServlet.doGet(javax.servlet.http.HttpServletRequest, 
javax.servlet.http.HttpServletResponse)
ActionServlet.java:506
void 
javax.servlet.http.HttpServlet.service(javax.servlet.http.HttpServletRequest, 
javax.servlet.http.HttpServletResponse)
HttpServlet.java:740
void javax.servlet.http.HttpServlet.service(javax.servlet.ServletRequest, 
javax.servlet.ServletResponse)
HttpServlet.java:853
void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for 
J2EE].server.http.ServletRequestDispatcher.invoke(javax.servlet.ServletRequest, 
javax.servlet.ServletResponse)
ServletRequestDispatcher.java:721
void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for 
J2EE].server.http.ServletRequestDispatcher.forwardInternal(javax.servlet.ServletRequest,
 javax.servlet.http.HttpServletResponse)
ServletRequestDispatcher.java:306
boolean com.evermind[Oracle9iAS (9.0.3.0.0) Containers for 
J2EE].server.http.HttpRequestHandler.processRequest(com.evermind[Oracle9iAS 
(9.0.3.0.0) Containers for J2EE].server.ApplicationServerThread, 
com.evermind[Oracle9iAS (9.0.3.0.0) Containers for 
J2EE].server.http.EvermindHttpServletRequest, com.evermind[Oracle9iAS (9.0.3.0.0) 
Containers for J2EE].server.http.EvermindHttpServletResponse, java.io.InputStream, 
java.io.OutputStream, boolean)
HttpRequestHandler.java:767
void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for 
J2EE].server.http.HttpRequestHandler.run(java.lang.Thread)
HttpRequestHandler.java:259
void com.evermind[Oracle9iAS (9.0.3.0.0) Containers for 
J2EE].server.http.HttpRequestHandler.run()
HttpRequestHandler.java:106
void EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run()
   

Help needed in form beans

2003-12-17 Thread vasudevrao gupta

Hi All,

I have a same form bean for 5 JSP's(JSP1,JSP2,JSP3,JSP4,JSP5)

All the JSP's use the same form bean.I am keeping the form bean in the
session scope.

When ever I use JSP1, JSP3, I want to see the blank screen even if there
are some values in the formbean.
But, in other JSP's, I want to see the screen with prepopulated values.
I tried using reset() for this and I have set all the values in formbean
to null.But reset is getting called 
for all the action.I want reset to be called only for JSP1,JSP3.

Please provide any direction on this

Regards
VasudevRaoGupta


Confidentiality Notice 

The information contained in this electronic message and any attachments to this 
message are intended
for the exclusive use of the addressee(s) and may contain confidential or privileged 
information. If
you are not the intended recipient, please notify the sender at Wipro or [EMAIL 
PROTECTED] immediately
and destroy all copies of this message and any attachments.

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



Struts--- Validator plugin HELP NEEDED!!

2003-01-14 Thread Vijay Khanna
Hello to all struts users.

I am facing somewhat unusual problem.The cuurent project is being built on
struts 1.1
All the validations were earlier done is ACTIONFORMS.for good application
architecture we have decided to go for StrutsValidator/ Validator plugin
which will take care of all the validations.

All common validations are being done using the validation.xml and
validator-rules.xml.
(minlength, maxlength, email, required)
for customised validation we have made validation-custom.xml and
validator-custom-rules.xml.
(field comparison etc)

I have removed the Validate() from the ActionForm and set validation=false
in the action mapping of struts-config.xml(This was done later as we thought
setting to true invoked the validate().So we set it to validate=false,
inorder to invloke the plugin).When the application starts-up the digestor
reads the xml files and hold the validation in struts memory.All the error
messages are given in the resource file.But we don't understand the
validation is not occuring.We believe struts is not able invoke and passe it
to the plugin.

Below is an extract from the struts-config.xml.The Tiles plugin works just
fine ..but Validator plugin does not work at all.















Any ideas from your guys...?

Help is appreciated.

thanx
Vijay



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: validator framework Help needed

2003-06-17 Thread Pedro Emanuel de Castro Faria Salgado

  This is way beyond my skills (i ve been working w struts just for
week... and done simple validations... this is more customized
validation)... i can check it up on some book or documentation that i 
have if nobody else gives you an answer.

Pedro Salgado


Now I am using the validator framework, for client side validation, I
probably cant have field based validation,  coz  I have to validate
certain indexed fields, conditionally. So I did it the following way(I
have pasted the code below).

It working  fine but I wanna know ..
> if this is the right way to use it.
> by using it this way how can i pick up messages from
ApplicationResources.properties

Thanks & regards,
Prasenjit.















**

In the jsp i have...

function submitForm(commandVal)

{

document.forms[0].command.value = commandVal;

if (commandVal != 'ADD_ROW')

{

if (! validateOfficerDetailsForm(document.forms[0]) )

{

return;

}

}

document.forms[0].action = "officerDetails.do";

document.forms[0].submit();

}







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



iteration and EL help needed

2004-02-04 Thread Andy Kriger
This is the problem I am trying to solve.
I want to submit a DynaValidatorForm with multiple hidden/text inputs that
have the same name. This is a list of items and quantities that I am trying
to update with one submit (e.g. itemId, quantity). Is this what the
'indexed' input attribute is supposed to help with? Will the validator
understand how to apply the rule for itemId to every indexed instance of
itemId? Will DynaValidatorForm receive an array of itemIds and quantities?

Since the items are stored in a collection, I want to iterate over them,
outputting the input fields. With c:forEach, I get an exception that the
indexed attribute is not supported. With logic-el:iterate, I get a name
attribute that looks like
name="org.apache.struts.taglib.html.BEAN[1].itemId" - that doesn't look
right at all.

I am using Struts 1.1rel (and the struts-el JAR in the contrib dir) with
JSTL 1.0 in Resin 2.x.x. 
Has anyone seen behavior like this and know how I can fix it? 
Or am I barking up the wrong tree trying to submit my form in this fashion?

Here's a bit of the JSP code...
<%--c:forEach var="item" items="${context_tray.items}" varStatus="idx"--%>





<%--/c:forEach--%>

thx

Andy Kriger | Software Mechanic | Greater Than One, Inc.
28 West 27th Street | 7th Floor | New York, NY 10001
P: 212.252.7197 | F: 212.252.7364 | E: [EMAIL PROTECTED] 



Help needed with ActionForm Bean

2002-09-24 Thread Vincent Berruchon

  Hi, I'm still newie and really confused on how to get HTML form filled 
with struts...
I want to fill a select input in a form in one of my JSP.
So I've write an ActionForm Bean with the get and set methods for each 
properties corresponding to an input on the form.
But I don't know where these "set" methods are (or should) be called to 
fill actionForm properties before the calls to the get methods?

Can someone help us?

Thanks


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Nested Iterate Tags Help Needed

2002-10-18 Thread Adam Sherman
If I have an List of Objects, each containing another list of Objects, 
how do I use the iterate tags to display the data in the format here:

http://www.teachandtravel.com/site/infosessions/schedule.php?division=Canada

A sample:

Monday, October 21st, 2002
Hamilton	Kelowna		Kitchener
Mississauga	Montreal	Ottawa
St. Catharines	Toronto		Vancouver
Winnipeg

Tuesday, October 22nd, 2002
Calgary		Edmonton	Etobicoke
Kamloops	London		Montreal
Oakville

Note the three columns...

I'm looking for the cleanest, tag-only, implementation.

Thanks,

A.

--
Adam Sherman
Software Developer
Teach and Travel Inc.
+1.613.241.3103



--
To unsubscribe, e-mail:   
For additional commands, e-mail: 



Re: Bean Utils - Help needed

2002-10-22 Thread Affan Qureshi

The org.apache.commons.beanutils package contains several classes that are
used throughout the Struts framework. From the standpoint of the Struts
framework, the two most important are the BeanUtils and PropertyUtils
classes.

As you might have guessed, the BeanUtils class is used with JavaBeans. The
Struts components primarily use just three of the methods in the BeanUtils
class:

· populate()

· getProperty()

· getArrayProperty()

The populate() method is used to fill a JavaBean with data, using a map of
key/value pairs. The method signature for the populate() method is shown
here.

public static void populate( Object bean, Map properties )

  throws IllegalAccessException, InvocationTargetException;

The getProperty() method returns a String representation of the property
stored in the variable with the name that matches the value of the name
parameter.

public static String getProperty( Object bean, String name )

  throws IllegalAccessException, InvocationTargetException,
NoSuchMethodException;

Regardless of the type of property that the name argument references, it
will be converted and returned as a String.

The getArrayProperty() method returns the value of the specified array
property of the specified bean, as a String array. Here is the method
signature for the getArrayProperty() method.

public static [] getArrayProperty(Object bean, String name)

  throws IllegalAccessException, InvocationTargetException,
NoSuchMethodException;

Although the Java language provides reflection and introspection as part of
its core API's, the BeanUtils class provides convenience wrappers around
these API's.

The other class that is used by the Struts framework is that PropertyUtils
class. However, only one method is currently used, the getProperty() method.

public static Object getProperty(Object bean, String name)

  throws IllegalAccessException, InvocationTargetException,
NoSuchMethodException;

The getProperty() method in the PropertyUtils class returns the value of the
specified property, without attempting to convert the type.  Much of the
code that is in the PropertyUtils class was originally implemented in the
BeanUtils class. It was moved to its own class due to the size that
BeanUtils was becoming.

- Original Message -
From: "Podhigai Thendral" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, October 22, 2002 1:04 AM
Subject: Bean Utils - Help needed


> Hi all,
>
> I see a commons-beanutils.jar file that comes with struts. I would
> like to know the functionalities offered by this package. I read
> somewhere that this is the one that helps in auto population of
> the form beans. Is it right ? Please help.
>
> Thanks in advance.
>
> -Thendral
>
>
>
> --
> To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
> For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>
>


--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>




RE: Bean Utils - Help needed

2002-10-22 Thread Andrew Hill
yep, thats the one.
Its part of the Jakarta commons project (orginally part of struts but they
got their own project as they are useful in lots of places outside of struts
as well!).
http://jakarta.apache.org/commons/

The info on the BeanUtils may be found at:
http://jakarta.apache.org/commons/beanutils.html
with the good stuff at:
http://jakarta.apache.org/commons/beanutils/api/index.html

-Original Message-
From: Podhigai Thendral [mailto:pisthu@;rediffmail.com]
Sent: Tuesday, October 22, 2002 16:04
To: [EMAIL PROTECTED]
Subject: Bean Utils - Help needed


Hi all,

I see a commons-beanutils.jar file that comes with struts. I would
like to know the functionalities offered by this package. I read
somewhere that this is the one that helps in auto population of
the form beans. Is it right ? Please help.

Thanks in advance.

-Thendral



--
To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>


--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>




Re: Bean Utils - Help needed

2002-10-22 Thread Craig R. McClanahan


On 22 Oct 2002, Podhigai Thendral wrote:

> Date: 22 Oct 2002 08:04:01 -
> From: Podhigai Thendral <[EMAIL PROTECTED]>
> Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]>,
>  Podhigai Thendral <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Subject: Bean Utils - Help needed
>
> Hi all,
>
> I see a commons-beanutils.jar file that comes with struts. I would
> like to know the functionalities offered by this package.

See the package description in the JavaDocs at:

  http://jakarta.apache.org/commons/beanutils/api/

Similar URLs will lead you to the Javadocs for the other commons packages
that are included with (and used by) Struts.

> I read
> somewhere that this is the one that helps in auto population of
> the form beans. Is it right ?

Yes.

> Please help.
>
> Thanks in advance.
>
> -Thendral
>

Craig


--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>




checkbox always checked(help needed)

2002-11-07 Thread Sandeep Karnwal, Noida
Hi! all
I am using multibox to display the multiple checkbox.
By default all checkbox should be checked. I am not able to find any of the
property of the multibox so that by default all checkbox should be checked.
What is the property of the multibox so that all check box should be checked
(when I display first time) or is there other way to do that.

Thanks in advance
Sandeep  

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: help needed with DynaActionForm

2002-11-14 Thread Drew Zimber

from:
http://jakarta.apache.org/struts/userGuide/building_controller.html#dyna_act
ion_form_classes

"The list of types supported by DynaActionForm beans includes:

java.lang.BigDecimal
java.lang.BigInteger
boolean and java.lang.Boolean
byte and java.lang.Byte
char and java.lang.Character
java.lang.Class
double and java.lang.Double
float and java.lang.Float
int and java.lang.Integer
long and java.lang.Long
short and java.lang.Short
java.lang.String
java.sql.Date
java.sql.Time
java.sql.Timestamp "


now, with that being said.  I have used my own classes in the DynaForms, but
they wil lbe initialized to null UNLESS you do the following:

1) in the Action class, cast the form to a DynaActionForm
2) do an explicit myForm.set("myProperty", new myObject()) type call

all in all, i did alot of research on dynaforms and they are pretty useful,
but in my opinion they arent versatile enough yet for complex
applications/valdation...In the end we choose to retain mostly traditional
forms.

drew


-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 10:25 AM
To: Struts Users Mailing List
Subject: help needed with DynaActionForm


I am trying to set properties of an object using DynaActionForm.

In my struts-config.xml I have in the 


In my JSP I try


The CreditCard class has a no-arg ctor and get/set methods for all of its
fields.

When I load the JSP I get an error
Null property value for 'creditCard'

I'm guessing that DynaActionForm is not initializing the CreditCard object,
but I don't know why (I thought that was the point of DynaActionForm - to be
able to use any object and initialize it from the form automatically).

Can anyone who has done this successfully point me in the right direction?

thx
andy



--
To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>


--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>




RE: help needed with DynaActionForm

2002-11-14 Thread Aadithya Deshpande
I don't know too much about this, and I was currently looking down the same
route, but how would a configuration class fit into all this?  I was under
the assumption that a configuration class would let you configure the form
prior to it being rendered on the page.  Or is that not correct thinking?

Any direction or pointers are welcome.

-a

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 10:35 AM
To: 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



from:
http://jakarta.apache.org/struts/userGuide/building_controller.html#dyna_act
ion_form_classes

"The list of types supported by DynaActionForm beans includes:

java.lang.BigDecimal
java.lang.BigInteger
boolean and java.lang.Boolean
byte and java.lang.Byte
char and java.lang.Character
java.lang.Class
double and java.lang.Double
float and java.lang.Float
int and java.lang.Integer
long and java.lang.Long
short and java.lang.Short
java.lang.String
java.sql.Date
java.sql.Time
java.sql.Timestamp "


now, with that being said.  I have used my own classes in the DynaForms, but
they wil lbe initialized to null UNLESS you do the following:

1) in the Action class, cast the form to a DynaActionForm
2) do an explicit myForm.set("myProperty", new myObject()) type call

all in all, i did alot of research on dynaforms and they are pretty useful,
but in my opinion they arent versatile enough yet for complex
applications/valdation...In the end we choose to retain mostly traditional
forms.

drew


-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 10:25 AM
To: Struts Users Mailing List
Subject: help needed with DynaActionForm


I am trying to set properties of an object using DynaActionForm.

In my struts-config.xml I have in the 


In my JSP I try


The CreditCard class has a no-arg ctor and get/set methods for all of its
fields.

When I load the JSP I get an error
Null property value for 'creditCard'

I'm guessing that DynaActionForm is not initializing the CreditCard object,
but I don't know why (I thought that was the point of DynaActionForm - to be
able to use any object and initialize it from the form automatically).

Can anyone who has done this successfully point me in the right direction?

thx
andy



--
To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>


--
To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>



RE: help needed with DynaActionForm

2002-11-14 Thread Andy Kriger
Currently the first action in my webapp is an ForwardAction that takes you
to the JSP. So, if I understand you right, I could make this work by
replacing that with an Initalization action that creates the objects for use
in the form. I'll try that and report back.

I'm guessing it wouldn't be that hard to extend the form to handle any old
Object, maybe someone more in the know with the src can comment on this?

thx
andy

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 10:35
To: 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



from:
http://jakarta.apache.org/struts/userGuide/building_controller.html#dyna_act
ion_form_classes

"The list of types supported by DynaActionForm beans includes:

java.lang.BigDecimal
java.lang.BigInteger
boolean and java.lang.Boolean
byte and java.lang.Byte
char and java.lang.Character
java.lang.Class
double and java.lang.Double
float and java.lang.Float
int and java.lang.Integer
long and java.lang.Long
short and java.lang.Short
java.lang.String
java.sql.Date
java.sql.Time
java.sql.Timestamp "


now, with that being said.  I have used my own classes in the DynaForms, but
they wil lbe initialized to null UNLESS you do the following:

1) in the Action class, cast the form to a DynaActionForm
2) do an explicit myForm.set("myProperty", new myObject()) type call

all in all, i did alot of research on dynaforms and they are pretty useful,
but in my opinion they arent versatile enough yet for complex
applications/valdation...In the end we choose to retain mostly traditional
forms.

drew


-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 10:25 AM
To: Struts Users Mailing List
Subject: help needed with DynaActionForm


I am trying to set properties of an object using DynaActionForm.

In my struts-config.xml I have in the 


In my JSP I try


The CreditCard class has a no-arg ctor and get/set methods for all of its
fields.

When I load the JSP I get an error
Null property value for 'creditCard'

I'm guessing that DynaActionForm is not initializing the CreditCard object,
but I don't know why (I thought that was the point of DynaActionForm - to be
able to use any object and initialize it from the form automatically).

Can anyone who has done this successfully point me in the right direction?

thx
andy



--
To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>


--
To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>



--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>




RE: help needed with DynaActionForm

2002-11-14 Thread Drew Zimber

"...I'm guessing it wouldn't be that hard to extend the form to handle any
old
Object, maybe someone more in the know with the src can comment on this?"

actually, i found some documentation about this on the web.  You can
subclass DynaActionForm  and add your own attributes, but it sort of defeats
the purpose of having a DynaForm.  You'll sort of have a "half and half"
form and im not sure how i feel about that.

for the DynaForms, you can put ANY object into the form, because it stores
all objects in a HashMap.  However, when you get to validation and returning
objects to the form on submit, it gets messy.  The DynaForms still need some
time to mature...

dz



-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 10:45 AM
To: Struts Users Mailing List; [EMAIL PROTECTED]
Subject: RE: help needed with DynaActionForm


Currently the first action in my webapp is an ForwardAction that takes you
to the JSP. So, if I understand you right, I could make this work by
replacing that with an Initalization action that creates the objects for use
in the form. I'll try that and report back.

I'm guessing it wouldn't be that hard to extend the form to handle any old
Object, maybe someone more in the know with the src can comment on this?

thx
andy

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 10:35
To: 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



from:
http://jakarta.apache.org/struts/userGuide/building_controller.html#dyna_act
ion_form_classes

"The list of types supported by DynaActionForm beans includes:

java.lang.BigDecimal
java.lang.BigInteger
boolean and java.lang.Boolean
byte and java.lang.Byte
char and java.lang.Character
java.lang.Class
double and java.lang.Double
float and java.lang.Float
int and java.lang.Integer
long and java.lang.Long
short and java.lang.Short
java.lang.String
java.sql.Date
java.sql.Time
java.sql.Timestamp "


now, with that being said.  I have used my own classes in the DynaForms, but
they wil lbe initialized to null UNLESS you do the following:

1) in the Action class, cast the form to a DynaActionForm
2) do an explicit myForm.set("myProperty", new myObject()) type call

all in all, i did alot of research on dynaforms and they are pretty useful,
but in my opinion they arent versatile enough yet for complex
applications/valdation...In the end we choose to retain mostly traditional
forms.

drew


-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 10:25 AM
To: Struts Users Mailing List
Subject: help needed with DynaActionForm


I am trying to set properties of an object using DynaActionForm.

In my struts-config.xml I have in the 


In my JSP I try


The CreditCard class has a no-arg ctor and get/set methods for all of its
fields.

When I load the JSP I get an error
Null property value for 'creditCard'

I'm guessing that DynaActionForm is not initializing the CreditCard object,
but I don't know why (I thought that was the point of DynaActionForm - to be
able to use any object and initialize it from the form automatically).

Can anyone who has done this successfully point me in the right direction?

thx
andy



--
To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>


--
To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>



--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>




RE: help needed with DynaActionForm

2002-11-14 Thread Andy Kriger
I'm speaking at the edge of understanding here, but...

If BeanUtils is underlying this whole thing, then you should be able to
create the user-objects instead of defaulting them to null (using the
JavaBean no-arg ctor). And following on that you could use the property
referencing struture used by the rest of Struts (e.g. object.field or
object[0].object.field) to handle the validation.

At first at least, one could implement this by handling user-objects but
requiring that the last value in the property referencing be a primitive or
Strings (for validation and returning objects to the form). Then I guess it
could be expanded to user-objects using a Validatable interface (similar to
the Comparable interface used by Arrays.sort).

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 11:00
To: 'Andy Kriger'; 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



"...I'm guessing it wouldn't be that hard to extend the form to handle any
old
Object, maybe someone more in the know with the src can comment on this?"

actually, i found some documentation about this on the web.  You can
subclass DynaActionForm  and add your own attributes, but it sort of defeats
the purpose of having a DynaForm.  You'll sort of have a "half and half"
form and im not sure how i feel about that.

for the DynaForms, you can put ANY object into the form, because it stores
all objects in a HashMap.  However, when you get to validation and returning
objects to the form on submit, it gets messy.  The DynaForms still need some
time to mature...

dz



-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 10:45 AM
To: Struts Users Mailing List; [EMAIL PROTECTED]
Subject: RE: help needed with DynaActionForm


Currently the first action in my webapp is an ForwardAction that takes you
to the JSP. So, if I understand you right, I could make this work by
replacing that with an Initalization action that creates the objects for use
in the form. I'll try that and report back.

I'm guessing it wouldn't be that hard to extend the form to handle any old
Object, maybe someone more in the know with the src can comment on this?

thx
andy

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 10:35
To: 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



from:
http://jakarta.apache.org/struts/userGuide/building_controller.html#dyna_act
ion_form_classes

"The list of types supported by DynaActionForm beans includes:

java.lang.BigDecimal
java.lang.BigInteger
boolean and java.lang.Boolean
byte and java.lang.Byte
char and java.lang.Character
java.lang.Class
double and java.lang.Double
float and java.lang.Float
int and java.lang.Integer
long and java.lang.Long
short and java.lang.Short
java.lang.String
java.sql.Date
java.sql.Time
java.sql.Timestamp "


now, with that being said.  I have used my own classes in the DynaForms, but
they wil lbe initialized to null UNLESS you do the following:

1) in the Action class, cast the form to a DynaActionForm
2) do an explicit myForm.set("myProperty", new myObject()) type call

all in all, i did alot of research on dynaforms and they are pretty useful,
but in my opinion they arent versatile enough yet for complex
applications/valdation...In the end we choose to retain mostly traditional
forms.

drew


-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 10:25 AM
To: Struts Users Mailing List
Subject: help needed with DynaActionForm


I am trying to set properties of an object using DynaActionForm.

In my struts-config.xml I have in the 


In my JSP I try


The CreditCard class has a no-arg ctor and get/set methods for all of its
fields.

When I load the JSP I get an error
Null property value for 'creditCard'

I'm guessing that DynaActionForm is not initializing the CreditCard object,
but I don't know why (I thought that was the point of DynaActionForm - to be
able to use any object and initialize it from the form automatically).

Can anyone who has done this successfully point me in the right direction?

thx
andy



--
To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>


--
To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>



--
To unsubscribe, e-mail:
<mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail:
<mailto:struts-user-help@;jakarta.apache.org>



--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>




RE: help needed with DynaActionForm

2002-11-14 Thread Drew Zimber

interesting idea, but i dont think beanUtils is driving the whole dynaforms
thing.  I think its just a big HashMap they stick stuff into (for the
moment).  The big problem is that DynaForms requires you to specify the
initial values in the  as that "initial" value.  So, with
complex value objects and Collections, its not smart enough (yet) to
instantiate even an empty object.  It only knows how to create Wrapper
classes with values in them.

That's why i started toying with the direct DynaActionForm.set() in the
action class.  As far as i explored, that was the only way to get around
this.  And if you are using the XML validation in conjuction, it gets even
messier my friend.


dz


-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 11:19 AM
To: Struts Users Mailing List
Subject: RE: help needed with DynaActionForm


I'm speaking at the edge of understanding here, but...

If BeanUtils is underlying this whole thing, then you should be able to
create the user-objects instead of defaulting them to null (using the
JavaBean no-arg ctor). And following on that you could use the property
referencing struture used by the rest of Struts (e.g. object.field or
object[0].object.field) to handle the validation.

At first at least, one could implement this by handling user-objects but
requiring that the last value in the property referencing be a primitive or
Strings (for validation and returning objects to the form). Then I guess it
could be expanded to user-objects using a Validatable interface (similar to
the Comparable interface used by Arrays.sort).

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 11:00
To: 'Andy Kriger'; 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



"...I'm guessing it wouldn't be that hard to extend the form to handle any
old
Object, maybe someone more in the know with the src can comment on this?"

actually, i found some documentation about this on the web.  You can
subclass DynaActionForm  and add your own attributes, but it sort of defeats
the purpose of having a DynaForm.  You'll sort of have a "half and half"
form and im not sure how i feel about that.

for the DynaForms, you can put ANY object into the form, because it stores
all objects in a HashMap.  However, when you get to validation and returning
objects to the form on submit, it gets messy.  The DynaForms still need some
time to mature...

dz



-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 10:45 AM
To: Struts Users Mailing List; [EMAIL PROTECTED]
Subject: RE: help needed with DynaActionForm


Currently the first action in my webapp is an ForwardAction that takes you
to the JSP. So, if I understand you right, I could make this work by
replacing that with an Initalization action that creates the objects for use
in the form. I'll try that and report back.

I'm guessing it wouldn't be that hard to extend the form to handle any old
Object, maybe someone more in the know with the src can comment on this?

thx
andy

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 10:35
To: 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



from:
http://jakarta.apache.org/struts/userGuide/building_controller.html#dyna_act
ion_form_classes

"The list of types supported by DynaActionForm beans includes:

java.lang.BigDecimal
java.lang.BigInteger
boolean and java.lang.Boolean
byte and java.lang.Byte
char and java.lang.Character
java.lang.Class
double and java.lang.Double
float and java.lang.Float
int and java.lang.Integer
long and java.lang.Long
short and java.lang.Short
java.lang.String
java.sql.Date
java.sql.Time
java.sql.Timestamp "


now, with that being said.  I have used my own classes in the DynaForms, but
they wil lbe initialized to null UNLESS you do the following:

1) in the Action class, cast the form to a DynaActionForm
2) do an explicit myForm.set("myProperty", new myObject()) type call

all in all, i did alot of research on dynaforms and they are pretty useful,
but in my opinion they arent versatile enough yet for complex
applications/valdation...In the end we choose to retain mostly traditional
forms.

drew


-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 10:25 AM
To: Struts Users Mailing List
Subject: help needed with DynaActionForm


I am trying to set properties of an object using DynaActionForm.

In my struts-config.xml I have in the 


In my JSP I try


The CreditCard class has a no-arg ctor and get/set methods for all of its
fields.

When I load the JSP I get an error
Null property value for 'creditCard'

I'm guessing that Dyna

RE: help needed with DynaActionForm

2002-11-14 Thread Andy Kriger
If only there were time on my current project to explore this and get it
done right by extending the existing Struts architecture. For the while I'll
have to go back to Strings and convert them to objects in the Action.

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 11:36
To: 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



interesting idea, but i dont think beanUtils is driving the whole dynaforms
thing.  I think its just a big HashMap they stick stuff into (for the
moment).  The big problem is that DynaForms requires you to specify the
initial values in the  as that "initial" value.  So, with
complex value objects and Collections, its not smart enough (yet) to
instantiate even an empty object.  It only knows how to create Wrapper
classes with values in them.

That's why i started toying with the direct DynaActionForm.set() in the
action class.  As far as i explored, that was the only way to get around
this.  And if you are using the XML validation in conjuction, it gets even
messier my friend.


dz


-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 11:19 AM
To: Struts Users Mailing List
Subject: RE: help needed with DynaActionForm


I'm speaking at the edge of understanding here, but...

If BeanUtils is underlying this whole thing, then you should be able to
create the user-objects instead of defaulting them to null (using the
JavaBean no-arg ctor). And following on that you could use the property
referencing struture used by the rest of Struts (e.g. object.field or
object[0].object.field) to handle the validation.

At first at least, one could implement this by handling user-objects but
requiring that the last value in the property referencing be a primitive or
Strings (for validation and returning objects to the form). Then I guess it
could be expanded to user-objects using a Validatable interface (similar to
the Comparable interface used by Arrays.sort).

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 11:00
To: 'Andy Kriger'; 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



"...I'm guessing it wouldn't be that hard to extend the form to handle any
old
Object, maybe someone more in the know with the src can comment on this?"

actually, i found some documentation about this on the web.  You can
subclass DynaActionForm  and add your own attributes, but it sort of defeats
the purpose of having a DynaForm.  You'll sort of have a "half and half"
form and im not sure how i feel about that.

for the DynaForms, you can put ANY object into the form, because it stores
all objects in a HashMap.  However, when you get to validation and returning
objects to the form on submit, it gets messy.  The DynaForms still need some
time to mature...

dz



-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 10:45 AM
To: Struts Users Mailing List; [EMAIL PROTECTED]
Subject: RE: help needed with DynaActionForm


Currently the first action in my webapp is an ForwardAction that takes you
to the JSP. So, if I understand you right, I could make this work by
replacing that with an Initalization action that creates the objects for use
in the form. I'll try that and report back.

I'm guessing it wouldn't be that hard to extend the form to handle any old
Object, maybe someone more in the know with the src can comment on this?

thx
andy

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 10:35
To: 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



from:
http://jakarta.apache.org/struts/userGuide/building_controller.html#dyna_act
ion_form_classes

"The list of types supported by DynaActionForm beans includes:

java.lang.BigDecimal
java.lang.BigInteger
boolean and java.lang.Boolean
byte and java.lang.Byte
char and java.lang.Character
java.lang.Class
double and java.lang.Double
float and java.lang.Float
int and java.lang.Integer
long and java.lang.Long
short and java.lang.Short
java.lang.String
java.sql.Date
java.sql.Time
java.sql.Timestamp "


now, with that being said.  I have used my own classes in the DynaForms, but
they wil lbe initialized to null UNLESS you do the following:

1) in the Action class, cast the form to a DynaActionForm
2) do an explicit myForm.set("myProperty", new myObject()) type call

all in all, i did alot of research on dynaforms and they are pretty useful,
but in my opinion they arent versatile enough yet for complex
applications/valdation...In the end we choose to retain mostly traditional
forms.

drew


-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]

RE: help needed with DynaActionForm

2002-11-14 Thread Drew Zimber


I hear you, I had the same problem with time constraints.  We ended up going
for traditional forms to save time/hassle.

dz

-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 11:44 AM
To: Struts Users Mailing List
Subject: RE: help needed with DynaActionForm


If only there were time on my current project to explore this and get it
done right by extending the existing Struts architecture. For the while I'll
have to go back to Strings and convert them to objects in the Action.

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 11:36
To: 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



interesting idea, but i dont think beanUtils is driving the whole dynaforms
thing.  I think its just a big HashMap they stick stuff into (for the
moment).  The big problem is that DynaForms requires you to specify the
initial values in the  as that "initial" value.  So, with
complex value objects and Collections, its not smart enough (yet) to
instantiate even an empty object.  It only knows how to create Wrapper
classes with values in them.

That's why i started toying with the direct DynaActionForm.set() in the
action class.  As far as i explored, that was the only way to get around
this.  And if you are using the XML validation in conjuction, it gets even
messier my friend.


dz


-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 11:19 AM
To: Struts Users Mailing List
Subject: RE: help needed with DynaActionForm


I'm speaking at the edge of understanding here, but...

If BeanUtils is underlying this whole thing, then you should be able to
create the user-objects instead of defaulting them to null (using the
JavaBean no-arg ctor). And following on that you could use the property
referencing struture used by the rest of Struts (e.g. object.field or
object[0].object.field) to handle the validation.

At first at least, one could implement this by handling user-objects but
requiring that the last value in the property referencing be a primitive or
Strings (for validation and returning objects to the form). Then I guess it
could be expanded to user-objects using a Validatable interface (similar to
the Comparable interface used by Arrays.sort).

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 11:00
To: 'Andy Kriger'; 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



"...I'm guessing it wouldn't be that hard to extend the form to handle any
old
Object, maybe someone more in the know with the src can comment on this?"

actually, i found some documentation about this on the web.  You can
subclass DynaActionForm  and add your own attributes, but it sort of defeats
the purpose of having a DynaForm.  You'll sort of have a "half and half"
form and im not sure how i feel about that.

for the DynaForms, you can put ANY object into the form, because it stores
all objects in a HashMap.  However, when you get to validation and returning
objects to the form on submit, it gets messy.  The DynaForms still need some
time to mature...

dz



-Original Message-
From: Andy Kriger [mailto:akriger@;greaterthanone.com]
Sent: Thursday, November 14, 2002 10:45 AM
To: Struts Users Mailing List; [EMAIL PROTECTED]
Subject: RE: help needed with DynaActionForm


Currently the first action in my webapp is an ForwardAction that takes you
to the JSP. So, if I understand you right, I could make this work by
replacing that with an Initalization action that creates the objects for use
in the form. I'll try that and report back.

I'm guessing it wouldn't be that hard to extend the form to handle any old
Object, maybe someone more in the know with the src can comment on this?

thx
andy

-Original Message-
From: Drew Zimber [mailto:drew.zimber@;shaws.com]
Sent: Thursday, November 14, 2002 10:35
To: 'Struts Users Mailing List'
Subject: RE: help needed with DynaActionForm



from:
http://jakarta.apache.org/struts/userGuide/building_controller.html#dyna_act
ion_form_classes

"The list of types supported by DynaActionForm beans includes:

java.lang.BigDecimal
java.lang.BigInteger
boolean and java.lang.Boolean
byte and java.lang.Byte
char and java.lang.Character
java.lang.Class
double and java.lang.Double
float and java.lang.Float
int and java.lang.Integer
long and java.lang.Long
short and java.lang.Short
java.lang.String
java.sql.Date
java.sql.Time
java.sql.Timestamp "


now, with that being said.  I have used my own classes in the DynaForms, but
they wil lbe initialized to null UNLESS you do the following:

1) in the Action class, cast the form to a DynaActionForm
2) do an explicit myForm.set("myProperty", new my

Re: help needed with DynaActionForm

2002-11-14 Thread Craig R. McClanahan


On Thu, 14 Nov 2002, Andy Kriger wrote:

> Date: Thu, 14 Nov 2002 10:24:55 -0500
> From: Andy Kriger <[EMAIL PROTECTED]>
> Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]>
> To: Struts Users Mailing List <[EMAIL PROTECTED]>
> Subject: help needed with DynaActionForm
>
> I am trying to set properties of an object using DynaActionForm.
>
> In my struts-config.xml I have in the 
> 
>
> In my JSP I try
> 
>
> The CreditCard class has a no-arg ctor and get/set methods for all of its
> fields.
>
> When I load the JSP I get an error
> Null property value for 'creditCard'
>
> I'm guessing that DynaActionForm is not initializing the CreditCard object,
> but I don't know why (I thought that was the point of DynaActionForm - to be
> able to use any object and initialize it from the form automatically).
>

You can auto-initialize primitives (and things like that) by using the
"initial" attribute on the  element.  But initializing a
property that is an object requires an *instance* of that object to be
available.  It's not appropriate for a general purpose framework to just
go and try to create such things, and hope that it's OK.

A couple of strategies to consider:

* Create the form bean in a separate Action that can pre-initialize
  all of the necessary properties for you.  This will often be the
  best course of action when you are creating edit forms for modifying
  existing database data.

* Create a custom subclass of DynaActionForm with a reset() method
  that, among other things, instantiates your credit card object
  and stores it:

put("creditCard", new my.package.CreditCard()");

  Struts calls the reset() method for you when *it* creates the form
  bean instance.  If you create one yourself, you'll need to remember
  to call this method.

> Can anyone who has done this successfully point me in the right direction?
>
> thx
> andy
>

Craig


--
To unsubscribe, e-mail:   <mailto:struts-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-user-help@;jakarta.apache.org>




Re: help needed with DynaActionForm

2002-11-14 Thread Affan Qureshi
I want to accomplish dynamic property defs by specifying properties in a
DynaActionForm from a database value. Not only define values for the
attributes but also define the attributes themselves. Is this possible?

I define a property in EditProductsAction by using
DynaActionForm dynaFrom = new DynaActionForm();
dynaFrom.set(propertyNameFromDB, new Integer(55));
and in the JSP i try to refer to this as:

I get the NullPointerException whose stack trace is given below. It is
occuring inside DynaActionForm.java on the call to getDynaClass()

protected DynaProperty getDynaProperty(String name) {

DynaProperty descriptor = getDynaClass().getDynaProperty(name);
/* Here */

}

Can anyone help me on what I am doing wrong?
Also what is the difference in the "key" and "name" of the form property?
Which method should I use in this case?

Thanks a lot.

Exception Stack Trace:

- Root Cause -
java.lang.NullPointerException
at
org.apache.struts.action.DynaActionForm.getDynaProperty(DynaActionForm.java:
551)
at
org.apache.struts.action.DynaActionForm.set(DynaActionForm.java:365)
at
com.etilize.cms.web.actions.EditProductSpecsAction.execute(Unknown Source)
at
org.apache.struts.action.RequestProcessor.processActionPerform(RequestProces
sor.java:446)
at
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:266)
at
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1292)
at
org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:510)

> You can auto-initialize primitives (and things like that) by using the
> "initial" attribute on the  element.  But initializing a
> property that is an object requires an *instance* of that object to be
> available.  It's not appropriate for a general purpose framework to just
> go and try to create such things, and hope that it's OK.
>
> A couple of strategies to consider:
>
> * Create the form bean in a separate Action that can pre-initialize
>   all of the necessary properties for you.  This will often be the
>   best course of action when you are creating edit forms for modifying
>   existing database data.
>
> * Create a custom subclass of DynaActionForm with a reset() method
>   that, among other things, instantiates your credit card object
>   and stores it:
>
> put("creditCard", new my.package.CreditCard()");
>
>   Struts calls the reset() method for you when *it* creates the form
>   bean instance.  If you create one yourself, you'll need to remember
>   to call this method.
>
>
> Craig




--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




apache+tomcat consulting help needed

2002-09-02 Thread anand v

Hi,

I have red hat 7.1 and I have apache2 and tomcat and mysql..

If some one could show me how to make a simple web site works
with these stuff for consulting help I would really appreciate it...

All I need is basic form to be saved to a datbase

If it is simple to do it in tomcat end to end.. that's also ok...
whatever is the easiest way

Thanks

Anand



_
Join the world’s largest e-mail service with MSN Hotmail. 
http://www.hotmail.com


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Help needed on Bean:struts tag!

2002-03-08 Thread Balasubramani, Deepak (Cognizant)

Hello Everyone,
I am facing a problem while using the bean:struts tag in jsp file.
Please see the problem description below:

In my JSP file i have used bean tag in the following way:


I have used this id "test" in the following way:
<%String temp = test.getYear();%>

In my struts-config file i have the following form bean definition:


My Action mapping is as follows:





When i access the JSP file i am getting the following exception:

Method getYear() not found in class
org.apache.struts.action.ActionFormBean.
  String temp = test.getYear();
^
1 error

at org.apache.jasper.compiler.Compiler.compile(Compiler.java:284)
at org.apache.jasper.servlet.JspServlet.loadJSP(JspServlet.java:546)
at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(JspSe
rvlet.java:177)
at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.ja
va:189)
at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:382)
at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:474)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:247)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:193)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:243)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:201)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2344)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164
)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.
java:170)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170
)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:462)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
64)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
:163)
at
org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:5
66)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
at
org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:
1011)
at
org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1106
)
at java.lang.Thread.run(Unknown Source)






I am using struts 1.0.2 in Apache Tomcat 4.0.

Please help me to rectify this problem.

Thanks and Regards,
Deepak.



This e-mail and any files transmitted with it are for the sole use of the intended 
recipient(s) and may contain confidential and privileged information.
If you are not the intended recipient, please contact the sender by reply e-mail and 
destroy all copies of the original message. 
Any unauthorised review, use, disclosure, dissemination, forwarding, printing or 
copying of this email or any action taken in reliance on this e-mail is strictly 
prohibited and may be unlawful.

Visit us at http://www.cognizant.com




--
To unsubscribe, e-mail:   
For additional commands, e-mail: 


RE: Help needed extending BaseHandlerTag

2001-05-10 Thread Deadman, Hal

I think weblogic is masking the real error. Put a temporary try catch block
inside your html:form tag on the JSP to trap the real error. If the
exception is a ServletException, get the root exception

Hal

> -Original Message-
> From: Ariff Sidi [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, May 10, 2001 7:01 PM
> To: [EMAIL PROTECTED]
> Subject: Help needed extending BaseHandlerTag
>
>
> I want to create my own Radio button tag that's a slightly
> modified version
> of the struts RadioTag.
>
> So, I made a new class that extends BaseHandlerTag (just like
> RadioTag) and
> copied the RadioTag code to my new class (NewRadioTag).  I
> successfully
> compiled my new Tag and added it to my existing custom tld file.
>
> Now keep in mind that the code is EXACTLY the same as Struts' RadioTag
> except for a couple extra imports I had to make because the
> new package is
> different.
>
> I then modified the JSP file from using  to .
>
> The exception I get is:
>
> javax.servlet.ServletException: runtime failure in custom tag 'form'
> at
> jsp_servlet._jsp._supplier._company._companytype._jspService(_
> companytype.ja
> va:1097)
> at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
> at
> weblogic.servlet.internal.ServletStubImpl.invokeServlet(Servle
> tStubImpl.java
> :106)
> at
> weblogic.servlet.internal.ServletStubImpl.invokeServlet(Servle
> tStubImpl.java
> :124)
> at
> weblogic.servlet.internal.RequestDispatcherImpl.forward(Reques
> tDispatcherImp
> l.java:154)
> at
> org.apache.struts.action.ActionServlet.processActionForward(Ac
> tionServlet.ja
> va:1697)
> at
> org.apache.struts.action.ActionServlet.process(ActionServlet.j
> ava:1540)
> at
> org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:491)
> at
> javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
> at
> javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
> at
> weblogic.servlet.internal.ServletStubImpl.invokeServlet(Servle
> tStubImpl.java
> :106)
> at
> weblogic.servlet.internal.RequestDispatcherImpl.forward(Reques
> tDispatcherImp
> l.java:154)
> at
> com.zeborg.erfp.web.servlet.NavigationServlet.service(Navigati
> onServlet.java
> :113)
> at
> javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
> at
> weblogic.servlet.internal.ServletStubImpl.invokeServlet(Servle
> tStubImpl.java
> :106)
> at
> weblogic.servlet.internal.ServletContextImpl.invokeServlet(Ser
> vletContextImp
> l.java:907)
> at
> weblogic.servlet.internal.ServletContextImpl.invokeServlet(Ser
> vletContextImp
> l.java:851)
> at
> weblogic.servlet.internal.ServletContextManager.invokeServlet(
> ServletContext
> Manager.java:252)
> at
> weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketH
> TTP.java:364)
> at
> weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:252)
> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
>
>
>
>
> Why would this happen given that my new tag has IDENTICAL
> code to RadioTag,
> which works.  My platform is Weblogic 5.1SP8.
>



RE: Digester help needed ! -- peculiar

2001-10-04 Thread Paula Young

I'm reposting to fix the typo "public void setgetErrdesc...".  text below is
corrected.  I'm still having the same parsing problem as before.

You know, if I reformat the XML string to look like this:


...it works fine (I can create my bean using the digester).

The question is why doesn't work for the XML formatted as:

18
Your smallcorp site login has expired!!


Aren't both xml formats correct?  Are these Digester peculiarities, or SAX?

I have tons of XML I need to parse that have this latter format and am
desperate to make this work!!

Thanks,  Paula Young

 -Original Message-
From:   Paula Young [mailto:[EMAIL PROTECTED]] 
Sent:   Thursday, October 04, 2001 1:34 PM
To: [EMAIL PROTECTED]
    Subject:Digester help needed !

I need some basic DIGESTER help!  I think I'm trying to do
something simple, but it's not working for me and I've tried several things,
etc,etc,etc...  I just want to parse  an XML string that looks like:

18
Your smallcorp site login has expired!!


My ErrResp.java bean that should result in the parse looks
like:

package com.oaktree.struts.common;

import java.io.Serializable;

public class ErrResp implements Serializable {
   private int errnum = 0;
   private String errdesc = null;

// -- integer code for the error
   public int getErrnum() {
  return errnum;
   }

   public void setErrnum(int errnum) {
  this.errnum = errnum;
   }

   // -- description of error
   public String getErrdesc() {
  return errdesc;
   }

   public void setErrdesc(String errdesc) {
  this.errdesc = errdesc;
   }

   // -- Utils
   public String toString()  {
  StringBuffer sb = new StringBuffer("ErrResp is:\n");


  sb.append("Errnum=" + errnum + ".\n");
  sb.append("Errdesc=" + errdesc + ".\n");
  return sb.toString();
   }


}

AND my code (in the LoginAction.java ) looks like:

 // simulate XML string return for an error.
  StringBuffer xmlerr = new StringBuffer("");
  xmlerr.append("\n");

  xmlerr.append("18\n");
  xmlerr.append("Your smallcorp site login has
expired!!\n");

  xmlerr.append("\n");

  // Use Apache digester util to parse that xml string.
  // LoginResp bean : it contains: Away, Buddy, Group
beans
  String xrsp = xmlerr.toString();
  System.out.println("XML is:\n" + xrsp);
  Digester digester = new Digester();
  digester.push(this);
  digester.setDebug(10);
  digester.setValidating(false);
  digester.addObjectCreate("loginerr",
  "com.oaktree.struts.common.ErrResp");
  digester.addSetProperties("loginerr");
  digester.addSetNext("loginerr", "gotErr",
  "com.oaktree.struts.common.ErrResp");

  try {
  digester.parse(new org.xml.sax.InputSource(new
StringReader(xrsp)));
  } catch (IOException e){
  e.printStackTrace();
  } catch (SAXException e) {
  e.printStackTrace();
  }




The 'gotErr ' that's referred to above is in the
LoginAction.java class and is simply:

// Method called after parsing a Loginerr XML Response:
public void gotErr(ErrResp er)
{
System.out.println("ErrResp bean:\n" +
er.toString());
}




When it runs, the debug output I see in my window is:

New com.oaktree.struts.common.ErrResp
Set com.oaktree.struts.common.ErrResp properties
Call com.oaktree.struts.logon.LogonAction.gotErr(ErrResp is:
Errnum=0.
Errdesc=null.
)
ErrResp bean

Réf. : RE: Digester help needed !

2001-10-04 Thread pf . garcia




Try to add this to your digester initilization :

digester.addCallMethod("loginerr/errnum", "setErrnum",0);
digester.addCallMethod("loginerr/errdesc", "setErrdesc",0);

It will tell the digester to call the setErrnum() method of the object on
top of its stack (the instance of ErrResp), passing it the body of the
errnum element as a String.
You can refer to the javadoc for the class CallMethodRule in the digester
package.

Hope this help.

P-F





   (Embedded image moved to file: pic19718.pcx)
"PAULA YOUNG"  <[EMAIL PROTECTED]>
 04/10/2001 23:09


Veuillez répondre à [EMAIL PROTECTED]

Pour :    <[EMAIL PROTECTED]>
cc :

Objet :   RE: Digester help needed ! -- peculiar

I'm reposting to fix the typo "public void setgetErrdesc...".  text below
is
corrected.  I'm still having the same parsing problem as before.

You know, if I reformat the XML string to look like this:


...it works fine (I can create my bean using the digester).

The question is why doesn't work for the XML formatted as:
 
 18
 Your smallcorp site login has
expired!!


Aren't both xml formats correct?  Are these Digester peculiarities, or SAX?

I have tons of XML I need to parse that have this latter format and am
desperate to make this work!!

Thanks,  Paula Young

  -Original Message-
 From:  Paula Young
[mailto:[EMAIL PROTECTED]]
 Sent:  Thursday, October 04, 2001 1:34 PM
     To:   [EMAIL PROTECTED]
 Subject:   Digester help needed !

 I need some basic DIGESTER help!  I think I'm trying
to do
something simple, but it's not working for me and I've tried several
things,
etc,etc,etc...  I just want to parse  an XML string that looks like:
 
 18
 Your smallcorp site login has
expired!!
 

 My ErrResp.java bean that should result in the parse
looks
like:

 package com.oaktree.struts.common;

 import java.io.Serializable;

 public class ErrResp implements Serializable {
private int errnum = 0;
private String errdesc = null;

 // -- integer code for the error
public int getErrnum() {
   return errnum;
}

public void setErrnum(int errnum) {
   this.errnum = errnum;
}

// -- description of error
public String getErrdesc() {
   return errdesc;
}

public void setErrdesc(String errdesc) {
   this.errdesc = errdesc;
}

// -- Utils
public String toString()  {
   StringBuffer sb = new StringBuffer("ErrResp is:
\n");


   sb.append("Errnum=" + errnum + ".\n");
   sb.append("Errdesc=" + errdesc + ".\n");
   return sb.toString();
}


 }

 AND my code (in the LoginAction.java ) looks like:

  // simulate XML string return for an error.
   StringBuffer xmlerr = new StringBuffer("");
   xmlerr.append("\n");

   xmlerr.append("18\n");
   xmlerr.append("Your smallcorp site
login has
expired!!\n");

   xmlerr.append("\n");

   // Use Apache digester util to parse that xml
string.
   // LoginResp bean : it contains: Away, Buddy,
Group
beans
   String xrsp = xmlerr.toString();
   System.out.println("XML is:\n" + xrsp);
   Digester digester = new Digester();
   digester.push(this);
   digester.setDebug(10);
   digester.setValidating(false);
   digester.addObjectCreate("loginerr",
   "com.oaktree.struts.common.ErrResp");
   digester.addSetProperties("loginerr");
   digester.addSetNext("loginerr", "gotErr",
   "com.oaktree.struts.common.ErrResp");

  

RE: RE: Digester help needed !

2001-10-05 Thread Paula Young

Thanks for your suggestion P-F, that did the trick, but I did have to add
the special class:

   public void setErrnum(String errnum) {
  this.errnum = Integer.parseInt(errnum);
   }

...into my bean since it looks like addCallMethod doesn't do any
'reflection' on the bean, it calls the method specified with a String class
value always, too bad...)

If I use the addCallMethod workaround from my scenario, I lose a lot of nice
functionality that I was hoping was under-the-covers in the digester,
namely: populating all the bean's properties (errnum, errdesc) in one fell
swoop regardless of the data types in the bean (all the translation from
string-to-int and so on would be automatic under the covers).  In the
workaround, I need to do one-to-one bean property setting, as well as
handling any type conversions myself.

Thanks,
Paula Young
ps- I'll post these findings on struts-dev also


 -Original Message-
From:   [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent:   Friday, October 05, 2001 3:31 AM
To: [EMAIL PROTECTED]
Subject:    Réf. : RE: Digester help needed !

 << File: pic19718.pcx >> << File: winmail.dat >>


Try to add this to your digester initilization :

digester.addCallMethod("loginerr/errnum", "setErrnum",0);
digester.addCallMethod("loginerr/errdesc", "setErrdesc",0);

It will tell the digester to call the setErrnum() method of the object on
top of its stack (the instance of ErrResp), passing it the body of the
errnum element as a String.
You can refer to the javadoc for the class CallMethodRule in the digester
package.

Hope this help.

P-F





   (Embedded image moved to file: pic19718.pcx)
"PAULA YOUNG"  <[EMAIL PROTECTED]>
 04/10/2001 23:09


Veuillez répondre à [EMAIL PROTECTED]

Pour :<[EMAIL PROTECTED]>
cc :

Objet :   RE: Digester help needed ! -- peculiar

I'm reposting to fix the typo "public void setgetErrdesc...".  text below
is
corrected.  I'm still having the same parsing problem as before.

You know, if I reformat the XML string to look like this:


...it works fine (I can create my bean using the digester).

The question is why doesn't work for the XML formatted as:
 
 18
 Your smallcorp site login has
expired!!


Aren't both xml formats correct?  Are these Digester peculiarities, or SAX?

I have tons of XML I need to parse that have this latter format and am
desperate to make this work!!

Thanks,  Paula Young

  -Original Message-
 From:  Paula Young
[mailto:[EMAIL PROTECTED]]
 Sent:      Thursday, October 04, 2001 1:34 PM
 To:   [EMAIL PROTECTED]
 Subject:   Digester help needed !

 I need some basic DIGESTER help!  I think I'm trying
to do
something simple, but it's not working for me and I've tried several
things,
etc,etc,etc...  I just want to parse  an XML string that looks like:
 
 18
 Your smallcorp site login has
expired!!
 

 My ErrResp.java bean that should result in the parse
looks
like:

 package com.oaktree.struts.common;

 import java.io.Serializable;

 public class ErrResp implements Serializable {
private int errnum = 0;
private String errdesc = null;

 // -- integer code for the error
public int getErrnum() {
   return errnum;
}

public void setErrnum(int errnum) {
   this.errnum = errnum;
}

// -- description of error
public String getErrdesc() {
   return errdesc;
}

public void setErrdesc(String errdesc) {
   this.errdesc = errdesc;
}

// -- Utils
public String toString()  {
   StringBuffer sb = new StringBuffer("ErrResp is:
\n");


   sb.append("Errnum=" + errnum + ".\n");
   sb.append("Errdesc=" + errdesc + ".\n");
   return sb.toString();
}


 }

 AND my code (in the LoginAction.java ) looks like:

  // simulate XML string return for an error.
   StringBuffer xmlerr = new StringBuffer("");
   

urgent help needed with javascript

2001-11-15 Thread Sanjay Duggal

Hi,

I've got the following javascript function in my jsp [which uses
struts]:

function funcShowHide() {
if(document.formSpl.rbtn[0].checked == true)
{
document.formSpl.hiddenField.value = 'show';
}
else
{
document.formSpl.hiddenField.value = 'hide';
}
document.formSpl.submit();
}

i'm calling the above function on click of radio button.
when i click the radio,I get the following javascript error:

JavaScript Error: document.formSpl.submit is not a function 

can anyone please help?

thanks,
Sanjay

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: Help needed in Javascript

2002-05-20 Thread Galbreath, Mark

Did you consider looking at developer.netscape.com?  See the event() object
in the JavaScript 1.2 or 1.3 Client-Side JavaScript Reference documentation.

Mark

-Original Message-
From: Susmita Pati [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 20, 2002 12:37 PM

 Hi all
I need to popup a html page which has the help contents on pressing the F1
key. How should i do this and also Where should i put the html?

Thanks in advance
Susmita

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: Help needed in Javascript

2002-05-20 Thread JM

Here is a working example for IE.

This doesn't work in Netscape except to cancel the help event.
But then I could just disable JavaScript in Netscape anyway.


Provide a link to your help from somewhere in the app, for those using NS.


Hope this helps!!!

JM

> -Original Message-
> From: Galbreath, Mark [mailto:[EMAIL PROTECTED]]
> Sent: Monday, May 20, 2002 12:55 PM
> To: 'Struts Users Mailing List'
> Subject: RE: Help needed in Javascript
>
>
> Did you consider looking at developer.netscape.com?  See the
> event() object
> in the JavaScript 1.2 or 1.3 Client-Side JavaScript Reference
> documentation.
>
> Mark
>
> -Original Message-
> From: Susmita Pati [mailto:[EMAIL PROTECTED]]
> Sent: Monday, May 20, 2002 12:37 PM
>
>  Hi all
> I need to popup a html page which has the help contents on pressing the F1
> key. How should i do this and also Where should i put the html?
>
> Thanks in advance
> Susmita
>
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
>
>



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


Running Multiple applications--- Help needed

2002-06-12 Thread Susmita Pati

Hi All 

need some help 

within my webapps directory i need to have multiple applications
directories. with different configuration xml files(this is a database conf
file)I need to put the respective xml files within the applications
directories

So what changes i need to do in my code to point to the directory i have put
the xml file. I have tried things lik
String location = "..\\webapps\\Dynapro\\web-inf\\conf\\dbconfig.xml";
but it always looks into the bin directory and gives an error of 
in processesaccess.java
java.io.FileNotFoundException: C:\Program Files\Apache Tomcat
4.0\bin\processes.xml (The system
cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.(FileInputStream.java:64)
at
sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:6
9)



can anyone pls help?

--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




Re: multibox bug (Help needed)

2002-07-02 Thread Toni Nehme

Does anybody know how to fix this bug?

Thanks.


>From: "Toni Nehme" <[EMAIL PROTECTED]>
>Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: multibox bug
>Date: Tue, 02 Jul 2002 11:35:24 -0400
>
>Hi,
>
>I am using multibox in a Logic:iterator see below:
>
>type="ch.thales.model.Fruit">
>
> 
>   
> 
> 
>
>
>
>
>
>Where fruits is ArrayList of Beans Fruit in my form.
>
>Please, let me know what cause this error?
>
>
>
>javax.servlet.jsp.JspException: Cannot find bean under name 
>org.apache.struts.taglib.html.BEAN
>at 
>org.apache.struts.taglib.html.MultiboxTag.doEndTag(MultiboxTag.java:256)
>at 
>jsp_servlet.__displayonecheckboxselection._jspService(__displayonecheckboxselection.java:28
>at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
>at 
>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
>at 
>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:304)
>at 
>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
>at 
>weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:215)
>at 
>org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:972)
>at 
>org.apache.struts.action.RequestProcessor.processActionForward(RequestProcessor.java:408)
>at 
>org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:269)
>at 
>org.apache.struts.action.ActionServlet.process(ActionServlet.java:1109)
>at 
>org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:470)
>at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
>at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>at 
>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
>at 
>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
>at 
>weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2456
>at 
>weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2039)
>at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
>at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
>
>
>Thanks.
>
>_
>Send and receive Hotmail on your mobile device: http://mobile.msn.com
>
>
>--
>To unsubscribe, e-mail:   
>
>For additional commands, e-mail: 
>




_
Send and receive Hotmail on your mobile device: http://mobile.msn.com


--
To unsubscribe, e-mail:   
For additional commands, e-mail: 




RE: multibox bug (Help needed)

2002-07-02 Thread Mark Nichols

You haven't given us enough information to solve your problem for you. I
suggest you reexamine the action that precedes this JSP to make sure that
the proper bean is placed in the proper context under the proper name.

If you want help I also suggest that you read the "How to Ask Questions"
link listed on the Struts site.



-Original Message-
From: Toni Nehme [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 02, 2002 12:28 PM
To: [EMAIL PROTECTED]
Subject: Re: multibox bug (Help needed)


Does anybody know how to fix this bug?

Thanks.


>From: "Toni Nehme" <[EMAIL PROTECTED]>
>Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: multibox bug
>Date: Tue, 02 Jul 2002 11:35:24 -0400
>
>Hi,
>
>I am using multibox in a Logic:iterator see below:
>
>type="ch.thales.model.Fruit">
>
> 
>   
> 
> 
>
>
>
>
>
>Where fruits is ArrayList of Beans Fruit in my form.
>
>Please, let me know what cause this error?
>
>
>
>javax.servlet.jsp.JspException: Cannot find bean under name
>org.apache.struts.taglib.html.BEAN
>at
>org.apache.struts.taglib.html.MultiboxTag.doEndTag(MultiboxTag.java:256)
>at
>jsp_servlet.__displayonecheckboxselection._jspService(__displayonecheckboxs
election.java:28
>at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
>at
>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.jav
a:265)
>at
>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.jav
a:304)
>at
>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.jav
a:200)
>at
>weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherIm
pl.java:215)
>at
>org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:9
72)
>at
>org.apache.struts.action.RequestProcessor.processActionForward(RequestProce
ssor.java:408)
>at
>org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:269
)
>at
>org.apache.struts.action.ActionServlet.process(ActionServlet.java:1109)
>at
>org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:470)
>at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
>at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
>at
>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.jav
a:265)
>at
>weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.jav
a:200)
>at
>weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletC
ontext.java:2456
>at
>weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.jav
a:2039)
>at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
>at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
>
>
>Thanks.
>
>_
>Send and receive Hotmail on your mobile device: http://mobile.msn.com
>
>
>--
>To unsubscribe, e-mail:
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail:
><mailto:[EMAIL PROTECTED]>




_
Send and receive Hotmail on your mobile device: http://mobile.msn.com


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




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




RE: Help needed on Iterate Tag

2003-10-21 Thread Navjot Singh
quick try - try replacing Names with names in iterate tag


>-Original Message-
>From: Thakur, Vikram [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, October 22, 2003 9:55 AM
>To: Struts (E-mail)
>Subject: Help needed on Iterate Tag
>
>
>Hi ,
>   I have Collection of  Strings and I want to print all the values in
>this collection using Iterate Tag.
>   Any guidelines how do I do this ??
>   
>   I had tried to implement it as follows but it is not working.
>
>   
> 
>   
>
>   Here the getNames() method of my form bean returns a Collection of
>Strings.
>   The bean:write method tries to search for FormBean with "element"
>and I get error.
>   I would really appreciate If someone can help me on this.
>
>Thanks,
>Vikram
>   
>   
>   
>
>
>This message contains information that may be privileged or 
>confidential and
>is the property of the Cap Gemini Ernst & Young Group. It is intended only
>for the person to whom it is addressed. If you are not the intended
>recipient, you are not authorised to read, print, retain, copy, 
>disseminate,
>distribute, or use this message or any part thereof. If you receive this
>message in error, please notify the sender immediately and delete 
>all copies
>of this message.
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>

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



RE: Help needed on Iterate Tag

2003-10-21 Thread Thakur, Vikram
No It is not working..

-Original Message-
From: Navjot Singh [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 22, 2003 9:54 AM
To: Struts Users Mailing List
Subject: RE: Help needed on Iterate Tag


quick try - try replacing Names with names in iterate tag


>-Original Message-
>From: Thakur, Vikram [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, October 22, 2003 9:55 AM
>To: Struts (E-mail)
>Subject: Help needed on Iterate Tag
>
>
>Hi ,
>   I have Collection of  Strings and I want to print all the values in
>this collection using Iterate Tag.
>   Any guidelines how do I do this ??
>   
>   I had tried to implement it as follows but it is not working.
>
>   
> 
>   
>
>   Here the getNames() method of my form bean returns a Collection of
>Strings.
>   The bean:write method tries to search for FormBean with "element"
>and I get error.
>   I would really appreciate If someone can help me on this.
>
>Thanks,
>Vikram
>   
>   
>   
>
>
>This message contains information that may be privileged or 
>confidential and
>is the property of the Cap Gemini Ernst & Young Group. It is intended only
>for the person to whom it is addressed. If you are not the intended
>recipient, you are not authorised to read, print, retain, copy, 
>disseminate,
>distribute, or use this message or any part thereof. If you receive this
>message in error, please notify the sender immediately and delete 
>all copies
>of this message.
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>

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


This message contains information that may be privileged or confidential and
is the property of the Cap Gemini Ernst & Young Group. It is intended only
for the person to whom it is addressed. If you are not the intended
recipient, you are not authorised to read, print, retain, copy, disseminate,
distribute, or use this message or any part thereof. If you receive this
message in error, please notify the sender immediately and delete all copies
of this message.

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



RE: Help needed on Iterate Tag

2003-10-21 Thread Puneet Agarwal

Vikram,
Navjot said the right thing it may not work with Names but with names.
You can try another thing


  


Regards,
Puneet Agarwal

Tata Consultancy Services,
C-56, Phase - II, NOIDA 201305 (India)
Phone: +91-120-2461001, 2, 7, 8, 9, 12, 13 (Ext. 1044)
FAX              : +91-120-246 1521

Struts ... Action ... Struts in Action ... Action in Struts ...


   
 
"Thakur,   
 
Vikram"   To: "'Struts Users Mailing List'" 
<[EMAIL PROTECTED]>
    Subject: RE: Help needed on  Iterate Tag 
 
   
 
10/22/03 10:03 
 
AM 
 
Please respond 
 
to "Struts 
 
Users Mailing  
 
List"  
 
   
 
   
 




No It is not working..

-Original Message-
From: Navjot Singh [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 22, 2003 9:54 AM
To: Struts Users Mailing List
Subject: RE: Help needed on Iterate Tag


quick try - try replacing Names with names in iterate tag


>-Original Message-
>From: Thakur, Vikram [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, October 22, 2003 9:55 AM
>To: Struts (E-mail)
>Subject: Help needed on Iterate Tag
>
>
>Hi ,
>I have Collection of  Strings and I want to print all the values in
>this collection using Iterate Tag.
>Any guidelines how do I do this ??
>
>I had tried to implement it as follows but it is not working.
>
>
>  
>
>
>Here the getNames() method of my form bean returns a Collection of
>Strings.
>The bean:write method tries to search for FormBean with "element"
>and I get error.
>I would really appreciate If someone can help me on this.
>
>Thanks,
>Vikram
>
>
>
>
>
>This message contains information that may be privileged or
>confidential and
>is the property of the Cap Gemini Ernst & Young Group. It is intended only
>for the person to whom it is addressed. If you are not the intended
>recipient, you are not authorised to read, print, retain, copy,
>disseminate,
>distribute, or use this message or any part thereof. If you receive this
>message in error, please notify the sender immediately and delete
>all copies
>of this message.
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>

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


This message contains information that may be privileged or confidential
and
is the property of the Cap Gemini Ernst & Young Group. It is intended only
for the person to whom it is addressed. If you are not the intended
recipient, you are not authorised to read, print, retain, copy,
disseminate,
distribute, or use this message or any part thereof. If you receive this
message in error, please notify the sender immediately and delete all
copies
of this message.

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




DISCLAIMER: The information contained in this message is intended only and
solely for the addressed individual or entity indicated in this message and
for the exclusive use of the said addressed individual or entity indicated
in this message (or responsible for delivery of the message to such person)
and may contain legally privileged and confidential information belonging
to Tata Consultancy Services. 

RE: Help needed on Iterate Tag

2003-10-21 Thread Navjot Singh
can you post the error?

>-Original Message-
>From: Thakur, Vikram [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, October 22, 2003 10:04 AM
>To: 'Struts Users Mailing List'
>Subject: RE: Help needed on Iterate Tag
>
>
>No It is not working..
>
>-Original Message-
>From: Navjot Singh [mailto:[EMAIL PROTECTED]
>Sent: Wednesday, October 22, 2003 9:54 AM
>To: Struts Users Mailing List
>Subject: RE: Help needed on Iterate Tag
>
>
>quick try - try replacing Names with names in iterate tag
>
>
>>-Original Message-
>>From: Thakur, Vikram [mailto:[EMAIL PROTECTED]
>>Sent: Wednesday, October 22, 2003 9:55 AM
>>To: Struts (E-mail)
>>Subject: Help needed on Iterate Tag
>>
>>
>>Hi ,
>>  I have Collection of  Strings and I want to print all the values in
>>this collection using Iterate Tag.
>>  Any guidelines how do I do this ??
>>
>>  I had tried to implement it as follows but it is not working.
>>
>>  
>>
>>  
>>
>>  Here the getNames() method of my form bean returns a Collection of
>>Strings.
>>  The bean:write method tries to search for FormBean with "element"
>>and I get error.
>>  I would really appreciate If someone can help me on this.
>>
>>Thanks,
>>Vikram
>>
>>
>>
>>
>>
>>This message contains information that may be privileged or
>>confidential and
>>is the property of the Cap Gemini Ernst & Young Group. It is intended only
>>for the person to whom it is addressed. If you are not the intended
>>recipient, you are not authorised to read, print, retain, copy,
>>disseminate,
>>distribute, or use this message or any part thereof. If you receive this
>>message in error, please notify the sender immediately and delete
>>all copies
>>of this message.
>>
>>-
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>This message contains information that may be privileged or
>confidential and
>is the property of the Cap Gemini Ernst & Young Group. It is intended only
>for the person to whom it is addressed. If you are not the intended
>recipient, you are not authorised to read, print, retain, copy,
>disseminate,
>distribute, or use this message or any part thereof. If you receive this
>message in error, please notify the sender immediately and delete
>all copies
>of this message.
>
>-
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>
>


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



  1   2   3   >