ProcessAction - Scaffold package

2003-01-13 Thread Senthivel U S
Greetings, We are planning to use Scaffold package (ProcessAction and AccessLayer). In the ProcessAction, sometimes we want to get some user data from database and set it in cookie. For another request we want to read it from cookie and merge it with the form bean and send the bean for process.

RE: JSTL in Struts

2003-01-13 Thread Mouratidis, Georg
I'd bet you forgot to add the %@ taglib % declaration for the XML library at the top of your page. JSTL is made up of several tag libraries, not just one. %@ taglib prefix=x uri=http://java.sun.com/jstl/xml; % Hi Craig, how much you will bet. i have this declaration. and i still do not know

run-as

2003-01-13 Thread kiuma
Hello struts-guys, can anybody tell me how to use run-as tag in web.xml? I've tryed: servlet servlet-namestruts/servlet-name servlet-classorg.apache.struts.action.ActionServlet/servlet-class init-param param-nameconfig/param-name

Xerces or Crimson in struts.

2003-01-13 Thread Simon Kelly
Hi, Does any one know if there is Xerces or Crimson with the struts package? One of these is need for the Digester, but I can't find any reference in the documentation for struts as to whether there is a parser included in the struts package. Cheers Simon Institut fuer Prozessdatenverarbeitung

RE: Xerces or Crimson in struts.

2003-01-13 Thread Andrew Hill
Afaik no, but your container should provide you a parser, or you can download one seperately. btw opinion type=unsolicited Crimson sux /opinion /btw -Original Message- From: Simon Kelly [mailto:[EMAIL PROTECTED]] Sent: Monday, 13 January 2003 17:55 To: Struts Users Mailing List

Re: Xerces or Crimson in struts.

2003-01-13 Thread Simon Kelly
So you would suggest Xerces then :-) - Original Message - From: Andrew Hill [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, January 13, 2003 11:04 AM Subject: RE: Xerces or Crimson in struts. Afaik no, but your container should provide you a parser, or

RE: Xerces or Crimson in struts.

2003-01-13 Thread Andrew Hill
Yep. Mind you thats a pretty subjective opinion ;-) Ideally you would be using JAXP (Im pretty sure digester does) which makes your parser pluggable, at which point its just a case of choosing the fastest one you can find (that doesnt have bugs in the features your using!). -Original

Referring to resources elsewhere

2003-01-13 Thread JONATHAN PHILIP HOLLOWAY
I've currently got a problem with my template and it doesn't actually display the pages that are referrred to in the parent folder. I have the template defined as follows butI can't seem to reference mainmenu.html, message.html, submenu.html or footer.html in the following way. Could somebody

Re: Session Management

2003-01-13 Thread Puneet Agarwal
Re: Session ManagementAgree that hidden variables can be used to store some values, but this may lead to higher network trafic. Yeah for large applications the session scope may become to big to be handled by memory. So what is the workaround for such an application ? We are currently in

Re: ProcessAction - Scaffold package

2003-01-13 Thread Ted Husted
The ProcessAction and ProcessResult were designed to understand the idea of storing something in a scope. Originally, these set to the equivalent of request, session, and application. If you like, we could also add a fourth scope that would be the equivalent of a cookie (or maybe client)

Re: Session Management

2003-01-13 Thread Charles Fineman
Phil gave you the work around: You can also use hidden fields (basically client-side state management), or application-managed durable storage (e.g RDBMS). You can play around with a reaper thread too but this could be perilous. You need to build up a bit of a framework around

Transforming a String to valid HTML encoding

2003-01-13 Thread Hirschmann, Bernhard
I still have the problem to transform a String containing national special characters to the appropriate HTML encoding. i.e.: schön reich -- schouml;n amp reich The class org.apache.struts.util.ResponseUtils only transforms the 4 characters , , and into their html representative. But in an

Problems in html:link

2003-01-13 Thread Sangeetha Nagarjunan
Hi, Am having problems submitting a form with action property for html:link, i have 2 links, a buton in my JSP.I try to set a value for an attribute onclick of teh link / onlick of the button. The property set for the button overrides the value for the value for link wven wehn the button is not

RE: logic:iterate -tag

2003-01-13 Thread Sri Sankaran
You *can* use bean:define. Be sure to look at the docs at http://jakarta.apache.org/struts/userGuide/struts-bean.html#define; it explains how this tag differs from jsp:useBean. Sri -Original Message- From: Matthias Weßendorf [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003

Struts view/JSP tags - List box

2003-01-13 Thread Heligon Sandra
For tomorrow I am searching a list box example to put in my Struts application. If the number of lines exceeds the control size, a vertical scrollbar must be activated. One column of this list is a check box. If you have a such example, thanks to send it.

RE: How to reset session-scoped Dyna bean values

2003-01-13 Thread pqin
Can you discard this bean and instantiate a new one? Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Affan Qureshi [mailto:[EMAIL PROTECTED]] Sent: January 13, 2003 12:07 AM To: struts-user Subject: How to reset

RE: Cannot find bean...

2003-01-13 Thread pqin
In your struts conf xml, define the action and set scope to request. action path=/myAction type=myActionClassName input=myJSPPage scope=request forward name=success path=/nextAction / /action Regards, PQ This Guy Thinks He Knows Everything This Guy

Re: Referring to resources elsewhere

2003-01-13 Thread David Graham
If you're using Struts 1.1 you should change the template references to tiles because the template library is deprecated. It seems like AssessmentMenuContent.jsp is in your root webapp directory because you precede it with a /. Have you tried using an absolute path for the other jsps instead

HTML version used in Struts tags

2003-01-13 Thread Heligon Sandra
How can I know the HTML version used in Struts1.1b2 ? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Controlling Direct Access to jsp pages

2003-01-13 Thread Colquhoun, Adrian
Hi If I have three pages in my view layer that must be called in sequence e.g. - step1.jsp then - step2.jsp then - step3.jsp How do I ensure that my users do not call step2 and step3 directly via a web browser. Do I need to use a custom tag in pages 2 and 3 to check this or is there some

RE: Controlling Direct Access to jsp pages

2003-01-13 Thread James Mitchell
I place them all under /WEB-INF and force them to go through my action classes. There are other ways, but this is the most convenient for me. disclaimer Use at your own risk. Not all containers support doing it this way. /disclaimer -- James Mitchell -Original Message- From:

One way of writing BaseAction

2003-01-13 Thread Chan, Charles
Hi, I just want to share with you my base action class implementation. I use reflection to avoid putting if../else logic in the execute() method. I am not sure if somone has done this before, so I want to share fragement of my codes here and ask for opinions. I have used it to implement a simple

Error: RequestProcessor

2003-01-13 Thread Oliver Kersten
Hi, my program works fine and the internationalization seems to work too. But I get still an Error on the JBoss Console every time when the JBoss processes a request: (Something like this!) --- 16:14:52,687 ERROR [STDERR] 13.01.2003 16:14:52

RE: Controlling Direct Access to jsp pages

2003-01-13 Thread Cory Newey
I've heard of this approach to protecting access to JSP pages but I've never been able to get it to work. How, exactly, do you route to a JSP in the /WEB-INF directory? Could you maybe provide a little of the struts-config.xml file that would do this or the code in the Action class that does

RE: Controlling Direct Access to jsp pages

2003-01-13 Thread Hoang, Hai
Last time I check, Weblogic is the only server I know that does not support this feature. Do you know other containers not support this feature? Thanks -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 9:50 AM To: 'Struts Users Mailing

Re: HTML version used in Struts tags

2003-01-13 Thread David Graham
Struts 1.1 tags adhere to the HTML 4.01 standard. You can change this to use XHTML with the html:xhtml/ tag. David From: Heligon Sandra [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: HTML version used in Struts

RE: Error: RequestProcessor

2003-01-13 Thread James Mitchell
What Error are you getting? All I see is Info. Can you show us your logging configuration? -- James Mitchell -Original Message- From: Oliver Kersten [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 10:53 AM To: [EMAIL PROTECTED] Subject: Error: RequestProcessor

Trying to use Struts sslext with WebSphere

2003-01-13 Thread pantichd
Hello, Has anyone had any luck getting the Struts ssl extension (http://sourceforge.net/project/showfiles.php?group_id=59967) working on VisualAge for Java and/or WebSphere? I'm using VAJ 3.5.3 and WebSphere 3.5.4 advanced edition. I have an app that works fine when I'm using Struts 1.0.2. I run

Re: Controlling Direct Access to jsp pages

2003-01-13 Thread David Graham
Put this security info at the bottom of your web.xml to prevent access to any *.jsp file: security-constraint web-resource-collection web-resource-nameSecureAllJSPs/web-resource-name url-pattern*.jsp/url-pattern /web-resource-collection auth-constraint role-namenobody/role-name

Display an option of a list with Nested

2003-01-13 Thread BARADAT Benoit
Hi ! I use the tag Nested Select for fill a list: nested:select property="rechercheInstancier.agent" nested:options property="rechercheInstancier.listeAgents" / /nested:select I grab this tag toa bean "rechercheInstancier" with an Arraylist: ArrayList listeAgents = new

Exceptions in DispatchActions

2003-01-13 Thread Rick Reumann
Sorry to repost this yet another time. If maybe someone can just let me know if they are successfully using declarative exception handling in conjunction with DispatchAction methods that would be a start. Maybe nobody even does this so I can just give up. If I know it is working for others I'll

RE: Display an option of a list with Nested

2003-01-13 Thread Sri Sankaran
This works the same way as it does with the html tags. The default value (value that is shown selected when the page is loaded) is determined by the value of the nested:select's property attribute. So, if 'rechercheInstancier.agent' is i1 and i1 is one of the values of the nested:options, it

It lives....

2003-01-13 Thread Mark Galbreath
Hey guys! Been away from the list for awhile. Got sick of working in a warehouse after the water main break on the T-Mobile/VoiceStream project and split. Now I'm the Senior Applications Engineer for QAT (www.qat.com) doing systems integration using BizFlo (www.handysoft.com) and Java web

Re: It lives....

2003-01-13 Thread Jeff_Mychasiw
I am sad. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: It lives....

2003-01-13 Thread Alvarado, Juan (c)
I had already wondered a few times what happened to you. Glad to have you back... -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 11:36 AM To: 'Struts Users Mailing List' Subject: It lives Hey guys! Been away from the list for

RE: Controlling Direct Access to jsp pages

2003-01-13 Thread Hoang, Hai
Your technique is powerful but the problem is that it even prevented index.jsp from display as well. Is there ways to work around? -Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 9:54 AM To: [EMAIL PROTECTED] Subject: Re: Controlling

RE: It lives....

2003-01-13 Thread James Mitchell
Mark has his own fan club :D Welcome back -- James Mitchell -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 11:36 AM To: Struts Users Mailing List Subject: Re: It lives I am sad. -- To unsubscribe,

[OT] RE: It lives....

2003-01-13 Thread Sri Sankaran
Mark.. The [OT]meister... Doing the [OT] -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 11:36 AM To: 'Struts Users Mailing List' Subject: It lives Hey guys! Been away from the list for awhile. Got sick of working in a

RE: It lives....

2003-01-13 Thread Amandeep Midha
well i am a new member ... i feel some giant has come out of hibernation ... as others are reacting - Amandeep Midha (CHARMIE) IT Solutions (India) Pvt. Ltd. No. 17, South End Road, Basavanudi Bangalore - 560 004. India TEL :

RE: Controlling Direct Access to jsp pages

2003-01-13 Thread Guido
IMO these are two bad solutions + Setting an attribute can be bypassed doing /page2.jsp?referer=true + I am almost sure HTTP headers can be modified easily, so using http referer header may be unsafe... See David Graham post in this thread to prevent access to any *.jsp file.

RE: Controlling Direct Access to jsp pages

2003-01-13 Thread Fabrice . Bocquillon
yes you're right, considering any security issue. I first wrongly understood the question, thinking the author wanted to bypass struts action: I read to fast ;) sorry for that spam ... fab' -Original Message- From: Guido [mailto:[EMAIL PROTECTED]] Sent: lundi 13 janvier 2003 17:44 To:

Re: [REPOST] NoClassDefFound exception in JBoss3 with integratedTomCat when instantiating Actions

2003-01-13 Thread Craig R. McClanahan
On Mon, 13 Jan 2003, Andrew Hill wrote: It appears that the classloader is having trouble with the EntityListAction class rather than its subclass. The relevant classes are of course in the war file... Where is struts.jar itself? It will need to be in the WAR also -- especially if you're

[REQUEST] Corrections for Struts Kick Start

2003-01-13 Thread James Turner
Kevin and I have been informed that Struts Kick Start will be going into a second printing in February, and because of the just-in-time printing method that SAMS uses, we have an opportunity to make corrections. So, if you've come across typos, errors or general unclearness in the text, please

Building Web Service Adapter for Struts app.

2003-01-13 Thread Greg Hess
Hi All, I am building an adapter on my Struts app to allow Web Service calls from remote parties. A remote call constructs a XML and sends the request via http to my Struts app. My app processes the request by parsing the XML data posted and returns the XML result. This is all working but my

RE: Controlling Direct Access to jsp pages

2003-01-13 Thread Colquhoun, Adrian
I have had a go at this - I get a 500 error message Cannot perform access control without an authenticated principal - presumably I need to do something else as well ? -Original Message- From: David Graham [mailto:[EMAIL PROTECTED]] Sent: 13 January 2003 15:54 To: [EMAIL PROTECTED]

RE: It lives....

2003-01-13 Thread Greg.Reddin
I never thought I'd say this, but it's good to hear from ya... :-) -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 10:36 AM To: 'Struts Users Mailing List' Subject: It lives Hey guys! Been away from the list for awhile. Got

Help using the logic iterate tag in struts

2003-01-13 Thread Mani, Jaya (J.)
Hi, I am new to struts and I trying to use the logic iterate tag. The task that I have to do is to loop through a collection and display some properties. I am obtaining the collection on my jsp page itself. The collection is made of objects. Here is how I obtain the collection: %

error page

2003-01-13 Thread Zhang, Larry (L.)
I am using struts 1.1b3. When the validation fails, the error can be shown on the page using html:errors. Now I have an action form page(say book.jsp, on this page there is a required field-- book title), I want an error.jsp, when the validation (example, title field is null) fails, the error

RE: One way of writing BaseAction

2003-01-13 Thread Siggelkow, Bill
Isn't this similar to what the Dispatch action does? -Original Message- From: Chan, Charles [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 10:18 AM To: 'Struts Users Mailing List' Subject: One way of writing BaseAction Hi, I just want to share with you my base action class

using javascript

2003-01-13 Thread LUCERO,DENNIS (HP-Boise,ex1)
Hello, I am trying to call a java script function and it is not working, are there any known issues with this sort of thing. Here is some code: html:form action = SomeAction html:select property = someProp onchange = reset() html:options collection=aCollection property=key

RE: It lives....

2003-01-13 Thread Chappell, Simon P
Welcome back Mark! Fridays have just not been the same lately. Did ya like my Slashdot review of Struts Kick Start? :-) Simon - Simon P. Chappell [EMAIL PROTECTED] Java Programming Specialist

Re: using javascript

2003-01-13 Thread Brian Lee
I think the problem here is that there is a built-in javascript reset() method that's overriding your custom reset(). Try calling your method doReset() or something else. BAL From: LUCERO,DENNIS (HP-Boise,ex1) [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: '

RE: error page

2003-01-13 Thread Mark Galbreath
My first thought is that if you are testing for null, you will never trap an error. Form objects are passed as Strings - empty or not. Test for titleField.length() 0 rather than != null. Mark -Original Message- From: Zhang, Larry (L.) [mailto:[EMAIL PROTECTED]] Sent: Monday, January

What's new in 1.1 Beta 3?

2003-01-13 Thread Giri Alwar
Hi all! I am trying to find out what exactly has changed in 1.1b3 since 1.1b2. The release notes is not exactly helpful since it lists three items that have changed. The rest of the release notes document lists the changes since 1.0.2. Is there a document that lists all the bug

RE: One way of writing BaseAction

2003-01-13 Thread Chan, Charles
Yes, I think you're right! :) That's the good thing about posting ideas to mailing list. I probably will still go with my approach instead of using DispatchAction because: 1. I don't need to specify a method parameter in request URL. 2. I can pass my custom Request object to protect

RE: error page

2003-01-13 Thread Zhang, Larry (L.)
I used the struts validator CheckFields. Here is the entries in validation.xml formset form name=bookForm field property=title depends=required arg0 key=bookForm.title/ /field /form /formset Here is the entries in

RE: Struts book reviews

2003-01-13 Thread Mark Galbreath
I liked Duct-tape Engineering, but Read The FINE Manual??? Bloody Brits can't even get RTFM right! (http://books.slashdot.org/article.pl?sid=02/12/27/1559200mode=threadtid=1 08 for anybody who's interested). Seriously, I haven't got this one yet, but will after reading your review. I'm due to

RE: Controlling Direct Access to jsp pages

2003-01-13 Thread Kris Schneider
Here's an approach that works with WebLogic 7. All the JSP's except index.jsp (the welcome page) are kept in a directory called pages. index.jsp simply contains: %@ taglib prefix=logic uri=http://jakarta.apache.org/struts/tags-logic; % logic:forward name=main/ Where main is the name of a global

RE: using javascript

2003-01-13 Thread LUCERO,DENNIS (HP-Boise,ex1)
Thanks Brian, the only stupid question, is the one you ask without knowing the api -Original Message- From: Brian Lee [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 11:04 AM To: [EMAIL PROTECTED] Subject: Re: using javascript I think the problem here is that there is a

RE: Controlling Direct Access to jsp pages

2003-01-13 Thread Colquhoun, Adrian
I have got this to work under tomcat 4.1 - I modified my struts config file as follows actionpath=/register/step1 type=com.id_crm.webapp.action.NameAddressAction name=NameAddressForm scope=session validate=true

RE: Controlling Direct Access to jsp pages

2003-01-13 Thread Hoang, Hai
Instead of url-pattern/pages/*/url-pattern can I have something like the following? security-constraint web-resource-collection web-resource-namePages/web-resource-name url-pattern/app1/*/url-pattern url-pattern/app2/*/url-pattern url-pattern/app3/*/url-pattern

How to detect Input Image

2003-01-13 Thread Billy Ng
Is there a way to find a html:image properties=delete/ is hit? I am using the following code which is working very good. (!0.equals(getRequest().getParameter(delete.y)) !0.equals(getRequest().getParameter(delete.x))) However, this looks really urgly. Is there any get()

Application Modules and message-resources

2003-01-13 Thread ajTreece
Folks... I've got a couple of good Struts books that talk about setting up application modules and allowing each of those modules to have it's own set of message resources files. The problem is... I can't get the message resources to work. I've looked at the 1.1b3 webapps example apps, but

nested tiles, I think

2003-01-13 Thread Jonathan Hodges
Hello, I have a tile definition as follows: definition name=pageConstructTile path=/jsp/templates/hscf.jsp put name=title value= / put name=header value=/jsp/pageConstruct/header.jsp/ put name=sidebar value=/jsp/pageConstruct/sidebar.jsp/ put name=footer

RE: Application Modules and message-resources

2003-01-13 Thread James Mitchell
There are known issues with this. Perhaps you could help us: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11932 -- James Mitchell -Original Message- From: ajTreece [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 2:06 PM To: Struts Users Mailing List

RE: Controlling Direct Access to jsp pages

2003-01-13 Thread Kris Schneider
Here's the definition of the web-resource-collection element: !ELEMENT web-resource-collection (web-resource-name, description?, url-pattern*, http-method*) So, yes, it looks like that would be fine. Just to be sure it's clear, assuming your app context is myapp, your example would restrict

RE: How to detect Input Image

2003-01-13 Thread Robert Taylor
See http://husted.com/struts/tips/001.html robert -Original Message- From: Billy Ng [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 1:58 PM To: [EMAIL PROTECTED] Subject: How to detect Input Image Is there a way to find a html:image properties=delete/ is hit?

Re: Building Web Service Adapter for Struts app.

2003-01-13 Thread John Loring
Greg, If you are using xerces to serialize the DOM, you can use the OutputFormat class to add the DOCTYPE declaration, ie: OutputFormat format = new OutputFormat(document); // Document document format.setDoctype(publicId, systemId); // String

trying to define a session scope form bean

2003-01-13 Thread Heather Buch
Hi, What is the proper way to do this in struts-config.xml? Say I have this bean: form-bean name=scheduleform type=mysite.myapp.ScheduleForm/ and I want to use it in two actions, editSchedule, and saveSchedule. On editSchedule, I want scheduleform to be stored in the

Custom Message Resources

2003-01-13 Thread Pat Quinn
Hi Guys, Has anyone ever extended the functionality as offered by the org.apache.struts.util.RequestUtils? I want to be able to substituted keywords in my messages as loaded from my properties file with values from the database. I got this up an running by extending the MessageReources and

RE: trying to define a session scope form bean

2003-01-13 Thread Mark Galbreath
You do not have to define a scope for a session scoped form bean - just omit the scope. Session scope is the default. Mark -Original Message- From: Heather Buch [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 2:42 PM Hi, What is the proper way to do this in

Re: How to detect Input Image

2003-01-13 Thread Billy Ng
Wow, looks cool! However, if I can get the request object in the ActionForm, the code can be much shorter. Billy Ng - Original Message - From: Robert Taylor [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, January 13, 2003 11:21 AM Subject: RE: How to

RE: using javascript

2003-01-13 Thread Mark Galbreath
Good quote! http://developer.netscape.com/docs/manuals/ Mark -Original Message- From: LUCERO,DENNIS (HP-Boise,ex1) [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 1:35 PM the only stupid question, is the one you ask without knowing the api -- To unsubscribe, e-mail:

Precompiling JSPs

2003-01-13 Thread William W
Hi All, My app has more than 2,000 JSPs. I can precompile my JSP and map it into the web.xml file. But I think that it would become a little big. Sugestions ??? Thanks, William. _ The new MSN 8 is here: Try it free* for 2

Re: Precompiling JSPs

2003-01-13 Thread David Graham
Why does it matter if you have a large web.xml file for a large application? You could let them compile at runtime instead of precompiling if you really don't want a large web.xml file. David From: William W [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To:

RE: Precompiling JSPs

2003-01-13 Thread Siggelkow, Bill
Some containers support a container-specific flag for precompiling. As I recall you can do with this weblogic without having to declare all your JSPs in the web.xml. Of course, I would not do this in development mode as it will take a long time for server restarts! -Original Message-

RE: Precompiling JSPs

2003-01-13 Thread Mark Galbreath
Use Ant to precompile whole directories in one line of script with your container's JSP pre-compiler. Mark -Original Message- From: William W [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 3:01 PM My app has more than 2,000 JSPs. I can precompile my JSP and map it into the

Re: Custom Message Resources

2003-01-13 Thread Pat Quinn
Sorry Guys --- Please ignore my last email all i needed to do was overload the getMessage(Locale pLocale, String pKey, Object pArgs[]) and add my keyword replacement there also previously i only overloaded getMessage(Locale pLocale, String pKey) I hang my head in shame, but it is late hear

How to integrate servlet with parameters into tiles definition

2003-01-13 Thread bdealy1 [EMAIL PROTECTED]
Hi, I have been having a problem integrating a servlet into a tiles definition. It takes a config file as parameter config and I have tried to directly call the servlet by putting it in the tiles-def.xml file like this: definition name=.gradebook.Assignments extends=.gradebook.Base put

Unmarshalling using the Digester

2003-01-13 Thread Toni Charlot
Can anyone figure out what I'm doing wrong here? Oh, please? 001 digester.addObjectCreate(rules/definition/enforcerClassName, 002 biz.isman.rule.engine.EnforcerDefinition.class); 003 004// 005digester.addCallMethod(rules/definition/enforcer, setEnforcerClassName, 0); 006

A Struts Haiku

2003-01-13 Thread Mark Lepkowski
a Struts Haiku model view control struts is good for this model simple it is not

Re: Precompiling JSPs

2003-01-13 Thread Billy Ng
I used Ant to precompile the JSPs before. It was very good but took much longer to compile a build. If you have 2,000 JSPs, mm... And I can tell how hard to maintain 2000 entries in the web.xml. Billy Ng - Original Message - From: William W [EMAIL PROTECTED] To: [EMAIL PROTECTED]

RE: A Struts Haiku

2003-01-13 Thread James Turner
Your action is null. So your form will not process. Edit struts-config. -Original Message- From: Mark Lepkowski [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 4:05 PM To: Struts Subject: A Struts Haiku a Struts Haiku model view control struts is good for this

RE: A Struts Haiku

2003-01-13 Thread James Mitchell
Interesting post. What does all this mean to me? I have errors now. -- James Mitchell -Original Message- From: James Turner [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 4:11 PM To: 'Struts Users Mailing List' Subject: RE: A Struts Haiku Your action is null. So

Re: A Struts Haiku

2003-01-13 Thread Mark Lepkowski
JT, pearls of wisdom Your action is null. So your form will not process. Edit struts-config. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

org.apache.struts.validator package

2003-01-13 Thread Ginger Cheng
Can someone tell me where to download the latest version of org.apache.struts.validator package? Thank you. ginger -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re[2]: A Struts Haiku

2003-01-13 Thread Rick Reumann
Time, too much have you major geeks these people are boss know you do this? :) On Monday, January 13, 2003, 4:17:13 PM, James wrote: JM Interesting post. What does all this mean to me? I have errors JM now. JM -- JM James Mitchell -Original Message- From: James Turner

RE: Re[2]: A Struts Haiku

2003-01-13 Thread James Mitchell
Concern have not I. My boss is on vacation. I'll buy the next round -- James Mitchell -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 4:33 PM To: Struts Users Mailing List Subject: Re[2]: A Struts Haiku Time, too much

RE: A Struts Haiku

2003-01-13 Thread Mark Galbreath
Jakarta Struts rules learn it, code it, live it .NET is evil -Original Message- From: Mark Lepkowski [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 4:05 PM model view control struts is good for this model simple it is not -- To unsubscribe, e-mail: mailto:[EMAIL

RE: Re[2]: A Struts Haiku

2003-01-13 Thread James Turner
Or, moving to a slightly less elevated form. There once was a form validation. That wasn't invoked, consternation! The class I'd extended, Keyed on form as intended. But the formset was the action variation. -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED]] Sent:

OT/ Friday: A Struts Haiku

2003-01-13 Thread V. Cekvenich
action does not fire, jsp is a mess take a deep breath and redirect ...oh I how wonder, should one unit test Rick Reumann wrote: Time, too much have you major geeks these people are boss know you do this? :) On Monday, January 13, 2003, 4:17:13 PM, James wrote: JM Interesting post. What does

RE: A Struts Haiku

2003-01-13 Thread James Turner
-Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 4:37 PM To: 'Struts Users Mailing List' Subject: RE: A Struts Haiku Jakarta Struts rules learn it, code it, live it .NET is evil HaikuParsingException: Line 2 must contain 7

[OT] Re: A Struts Haiku

2003-01-13 Thread Rick Reumann
Yoda think hard now.. Me think this Friday yes hmmm? topic cause these thinks On Monday, January 13, 2003, 4:04:51 PM, Mark wrote: ML a Struts Haiku ML model view control ML struts is good for this model ML simple it is not -- Rick mailto:[EMAIL PROTECTED] -- To unsubscribe, e-mail:

Re[4]: A Struts Haiku

2003-01-13 Thread Rick Reumann
On Monday, January 13, 2003, 4:44:47 PM, James wrote: JT Or, moving to a slightly less elevated form. JT There once was a form validation. JT That wasn't invoked, consternation! JT The class I'd extended, JT Keyed on form as intended. JT But the formset was the action variation. There was once

Re[2]: A Struts Haiku

2003-01-13 Thread Rick Reumann
On Monday, January 13, 2003, 4:47:06 PM, James wrote: -Original Message- From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 4:37 PM To: 'Struts Users Mailing List' Subject: RE: A Struts Haiku Jakarta Struts rules learn it, code it, live it .NET is

Re: A Struts Haiku

2003-01-13 Thread Mark Lepkowski
This bug is fixed in v1.1 version one point one it's pre-prod but it's better waiting for its time Jakarta Struts rules learn it, code it, live it .NET is evil HaikuParsingException: Line 2 must contain 7 sylables in WasteEnormousAmountsOfTime.composePoems James -- To

RE: Re[4]: A Struts Haiku

2003-01-13 Thread James Mitchell
I once knew a man good with css files His struts-config went on for miles Then Cedric came along With a book and a song Now he does everything with Tiles. Oh great!!! Geek Poets!!! -- James Mitchell -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED]] Sent:

RE: Re[4]: A Struts Haiku

2003-01-13 Thread Chappell, Simon P
Mark returns to list Limericks Haiku explode a coincidence? -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 3:59 PM To: 'Struts Users Mailing List' Subject: RE: Re[4]: A Struts Haiku I once knew a man good with css files His

RE: Re[4]: A Struts Haiku

2003-01-13 Thread Nelson, Laird
-Original Message- From: Chappell, Simon P [mailto:[EMAIL PROTECTED]] Mark returns to list Limericks Haiku explode a coincidence? A small proposal: Release Struts under the new Poetic License. Laird -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands,

Lib jar versions

2003-01-13 Thread Robertson, Jason
What versions of the various commons-*.jar files are in the 1.1b3 release? They are obviously not the current releases of these libraries, are they nightly builds? Why are custom versions distributed with Struts? By the time 1.1 final is released will the various commons projects also be released

  1   2   >