Re: Setting up Struts / TagExtraInfo not found

2005-12-30 Thread Wendy Smoak
On 12/30/05, Troy S <[EMAIL PROTECTED]> wrote: > I am trying to get started with Struts by installing the struts-blank web > application. I get an error saying TagExtraInfo is not found. Please help! > > Win Xp > Struts 1.2.8 > Tomcat 5.5.9 > > Dec 30, 2005 7:29:07 PM org.apache.catalina.core.S

Setting up Struts / TagExtraInfo not found

2005-12-30 Thread Troy S
Struts list, I am trying to get started with Struts by installing the struts-blank web application. I get an error saying TagExtraInfo is not found. Please help! Win Xp Struts 1.2.8 Tomcat 5.5.9 Dec 30, 2005 7:29:07 PM org.apache.catalina.core.StandardWrapperValve invoke SEVERE: Servlet.se

Tomcat not displaying (or logging) runtime exceptions for STRUTS !!

2005-12-30 Thread Mon Cab
Please help. It seems that Tomcat is no longer displaying (or logging) runtime errors. I have in a jsp, and no tags surrounding this. If I call this jsp without the var parameter, Tomcat just returns a page with the following html source: Thats it! No exceptions or anything! So ther

Re: [FRIDAY] You might be a geek if ...

2005-12-30 Thread erikweber
Yeah, good warning. I know this is a "joke" thread, but if that second one is true, Frank, I suggest you burn that Serenity DVD while it still matters! While you're at it, just throw the freakin' TV out the window. They call them "boob tubes" for a good reason. I gave my 12-year-old niece (the

Re: [FRIDAY] You might be a geek if ...

2005-12-30 Thread Danny Lee
Well, it's really dangerous thing, becouse as long you watch your sweet-sweet SF-stuff rather then doing some other stuff to your "Santa's little helper", she may just sneak over to your neighbour and then you'll wonder why your kinds rather do C# than develop J2EE applications ;) Happy New

Re: ErrorStyleClass

2005-12-30 Thread RathinaGanesh MeenakshiSundaram
Thanks Laurie, Sorry, was busy with some other work.. This is the jsp code, Iam using.. This was the stack trace, Iam getting... 15:55:48,137 ERROR [Engine] StandardWrapperValve[jsp]: Servlet.service() for servlet jsp threw exception org.apache.jasper.JasperException: /index.jsp(109,6) Unable t

Re: [FRIDAY] You might be a geek if ...

2005-12-30 Thread Srinivas Jadcharla
Happy New Year to you all. On 12/30/05, Daniel Blumenthal <[EMAIL PROTECTED]> wrote: > > Remember - the first step is admitting you have a problem. > > > -Original Message- > > From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] > > Sent: Friday, December 30, 2005 3:04 PM > > To: Struts Use

Re: Struts - tomcat j_security_check

2005-12-30 Thread Alexandre Poitras
Thank for the clarifications, I know Tomcat provide a lot of extensions wich allows you to work quite comfortably but unfortunately it not the case with every containers. For example, we use Oracle oc4j and it does not give you a lot of options. So I guess the decision is about portability versus d

RE: [FRIDAY] You might be a geek if ...

2005-12-30 Thread Daniel Blumenthal
Remember - the first step is admitting you have a problem. > -Original Message- > From: Frank W. Zammetti [mailto:[EMAIL PROTECTED] > Sent: Friday, December 30, 2005 3:04 PM > To: Struts Users Mailing List > Subject: Re: [FRIDAY] You might be a geek if ... > > ...Instead of playing Twis

Re: [FRIDAY] You might be a geek if ...

2005-12-30 Thread Frank W. Zammetti
...Instead of playing Twister with your kids you spent three hours on the phone with Microsoft tech support trying to troubleshoot a DCOM problem. ...Instead of *** with your wife tonight you'd rarther watch the 20 minutes of deleted scenes on the Serenity DVD you just got. ...You have a stac

Re: Struts - tomcat j_security_check

2005-12-30 Thread Craig McClanahan
A couple of clarifications below. On 12/30/05, Alexandre Poitras <[EMAIL PROTECTED]> wrote: > > I was in charge of implementing application security last year and I > think 2EE security model is rather weak. > > Where we work we support it but we also use JGuard because of some > limitations of th

Re: [FRIDAY] You might be a geek if ...

2005-12-30 Thread Rick R
...The waitress asks you what you want on your burger and you reply "What's the default?" I sadly said that at lunch one day after a tough morning at work:) -- Rick - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

Re: How to pass readonly data through validate?

2005-12-30 Thread David Evans
You will probably find this useful, it covers a variety of options to solve the problem. http://www.reumann.net/struts/articles/request_lists.jsp On Fri, 2005-12-30 at 12:45 -0500, Alex wrote: > Hi, > > I'm creating a web form that displays both editable and readonly data > at the same time. I

How to pass readonly data through validate?

2005-12-30 Thread Alex
Hi, I'm creating a web form that displays both editable and readonly data at the same time. I am preparing all data in my Action.execute() method and populate the form there, which works great. Unless I am using ActionForm.validate(), because in case of failure the execute() method is bypassed

[FRIDAY] You might be a geek if ...

2005-12-30 Thread Ted Husted
... for Christmas, Santa brings you all six Star Wars movies, so you can watch them in order, from "The Phantom Menace" through "Revenge of the Jedi". Happy New Year's, every one! -Ted. - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Weird multiple GET error

2005-12-30 Thread Wendy Smoak
On 12/30/05, Martin Ravell <[EMAIL PROTECTED]> wrote: > It seems that any request I make, be it a GET or a POST, is somehow followed > up by three GET requests for the same action. The most common explanation for this is tags with empty 'src' attributes: http://marc.theaimsgroup.com/?l=struts

why Input form is skipped

2005-12-30 Thread PC Leung
I just want the control passing to a form with a dropdown box so that user can click. The form does not have a chance to display and it is skipped to the subsequent form. Why is it so? The following is the action class associated with the form being skipped. Thanks public final class SelectUs

Weird multiple GET error

2005-12-30 Thread Martin Ravell
My Struts, Hibernate app (Appfuse based on JBoss with Tomcat plugin) has developed a really weird bug and I have no idea after a day of searching of how to track down the problem. It seems that any request I make, be it a GET or a POST, is somehow followed up by three GET requests for the same

Re: dropdown

2005-12-30 Thread Thibaut
Thank you for your solution (it work with the right Bean) and your advise ! Raghu Kanchustambham a écrit : The error means that your action form does not have a getter method for the described property. If you make sure you have the required property in the actionform and try it, it should work

Re: dropdown

2005-12-30 Thread Raghu Kanchustambham
The error means that your action form does not have a getter method for the described property. If you make sure you have the required property in the actionform and try it, it should work fine. Post the code of action form and struts-config.xmlif you still cant solve it. Just a thought: Why is yo

dropdown

2005-12-30 Thread Thibaut
Hi I try to print a dropdown but i make a mistake. I don't know where is the mistake : In the action : " ArrayList arrayTmp = this.getPartnerListFromDataBase(request); request.setAttribute("partnerslist", arrayTmp); " Where : " private ArrayList getPartnerListFromData

Re: Using an attribute defined in tiles-defs.xml in a JSP as a JAVA var

2005-12-30 Thread Andreas B. Thun
Hi Greg, thanks for your reply, good hint...but the content of my JAVA var "country" is (null). :-/ I definitely have put a in my tiles-defs.xml... TIA, Andi <%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %> name="selectedCountry"/> <% String country = selectedCountry +

Re: Struts - tomcat j_security_check

2005-12-30 Thread Alexandre Poitras
I was in charge of implementing application security last year and I think 2EE security model is rather weak. Where we work we support it but we also use JGuard because of some limitations of the standard model. Usually, the main complains about container-based security are : 1) The form authen