Re: JSP help

2004-05-04 Thread Curtis Taylor
Hi San Pedro, This is an HTML question: the "size" attribute refers to the number of rows of data visible in the select box, not the physical width on the page. HTH, Curtis Santhosh P wrote: Hi, I have a select box in jsp page having data loaded as collection and is working well. My problem

Two Submit Buttons with same Name, validation using ValidatorForm

2004-05-04 Thread Eric Noel
How do i validate in my ValidatorForm when in my html i have two submit buttons having same name = "btn". ## I have this idea of a login form with two submit buttons (ie., sign in, passwd change) having same name "btn":

Re: struts repopulate bug?

2004-05-04 Thread Riyad Kalla
... yea so I wasn't expecting that to be the fix... good job though! Dana Hata wrote: Problem solved. Apparently, if you have the name and type attributes defined in the html:form tag, it causes this behavior. As in: I simply changed that to: And now the form gets repopulated. Is this obv

RE: struts repopulate bug?

2004-05-04 Thread Dana Hata
Problem solved. Apparently, if you have the name and type attributes defined in the html:form tag, it causes this behavior. As in: I simply changed that to: And now the form gets repopulated. Is this obvious to everyone else, or does anyone else think struts should be more resilient? Also

RE: struts repopulate bug?

2004-05-04 Thread Barett McGavock
Hi Dana, If I had only one guess as to the problem, I'd say there was a mismatch between a JSP tag versus what was defined in struts-config. I've found my silent errors most often trace back to JSP tags. This could be scope-related but is more likely the name. The name attribute of the action tag

Re: struts repopulate bug?

2004-05-04 Thread Riyad Kalla
Dana Hata wrote: Answers to the questions below... I spent 10 hours on it so far, so I've tried many things. Now I did see Good god, I can understand your frustration now... I don't know why it is not doing this for you. Have you tried setting a breakpoint in your reset method and seeing wh

Re: struts repopulate bug?

2004-05-04 Thread Dana Hata
Answers to the questions below... I spent 10 hours on it so far, so I've tried many things. Now I did see the Action errors listed in the JSP. Either Struts is not putting the form bean on the request/session, or it's not populating what it did put on the request/session with was it found in the

struts-scaffold and commons-scaffold

2004-05-04 Thread Peter Martin
I have seen the 2 scaffolds referenced in the Struts book "Struts in Action", but they are in the Jakarta sandbox. Are these products usable? If so, where would I find the current jar files and current source files? - To unsubs

Re: struts repopulate bug?

2004-05-04 Thread Riyad Kalla
Dana, Yes Struts should and does do this. It actually does this so well, that for login forms you need to manually clear the beans or else it repopulates the values :) 1) Are you syncing up the names/properties of your fields on your JSP page in the form with the property names of the Form? ..

RE: struts repopulate bug?

2004-05-04 Thread Dana Hata
I keep coming across that as I google around for this. The simple answer is, I don't know. All I know is that I am setting the 'input' parameter for the action to the path to my JSP. I hope that answers your question. If not, how do I find out? Dana On Tue, 2004-05-04 at 21:26, Barett McGavock

RE: struts repopulate bug?

2004-05-04 Thread Barett McGavock
Are you redirecting to the JSP? B > -Original Message- > From: Dana Jeffrey Hata [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 04, 2004 5:36 PM > To: [EMAIL PROTECTED] > Subject: struts repopulate bug? > > > I'm using Struts with WSAD, and I am attempting something > very simple, whi

Help needed with application flow and reset button!!

2004-05-04 Thread Brian Boyle
Hey! I need some advice on how to do the following: I have a page where I input a number of values and hit submit. These values are then stored in a Map-backed ActionForm. Then my Action class forwards me on to the next page. The next page is a simple JSP that lets me review what I have just en

struts repopulate bug?

2004-05-04 Thread Dana Jeffrey Hata
I'm using Struts with WSAD, and I am attempting something very simple, which should happen automagically. Basically, I just need to have the form re-populate after submitting a form which doesn't pass the form bean's validate method. Should happen without any special coding from me, as this is

Re: button as link

2004-05-04 Thread Samuel Rochas
Hi Hubert, Hubert Rabago wrote: You can use an empty dyna form: Great, that is doing the job. I was afraid I needed to create the corresponding class too, but since the declaration is needed only in the struts-config.xml, that's fine. Thanks a lot. Samuel --- andinasoft SA - Software y Consulti

Re: button as link

2004-05-04 Thread Pedro Salgado
On 04/05/04 22:34, "Samuel Rochas" <[EMAIL PROTECTED]> wrote: > Hello, > > I would like to use a button as a link. > > I used to solve that, before struts, with a form containing only a button. > > With struts, it seems I have to declare a form object in the > struts-config.xml, create a class

Re: button as link

2004-05-04 Thread Riyad Kalla
Sam, I do the same thing you are, and do what Hubert has suggested. It works nicely. I always define atleast one throw-away dynaform to use for these purposes, then you can use the form as a link, no problem. On Tuesday 04 May 2004 02:37 pm, Hubert Rabago wrote: > You can use an empty dyna form:

Re: button as link

2004-05-04 Thread Hubert Rabago
You can use an empty dyna form: --- Samuel Rochas <[EMAIL PROTECTED]> wrote: > Hello, > > I would like to use a button as a link. > > I used to solve that, before struts, with a form containing only a button. > > With struts, it seems I have to declare a form object in the > struts-config

button as link

2004-05-04 Thread Samuel Rochas
Hello, I would like to use a button as a link. I used to solve that, before struts, with a form containing only a button. With struts, it seems I have to declare a form object in the struts-config.xml, create a class for that empty form, etc. Is there a simple way to solve that? Sincerly Samu

Re: Manual reload struts-config.xml

2004-05-04 Thread Joe Germuska
How do I reload struts configuration file manualy without context restart? Search the mailing list archives; this is a popular request which is not currently supported. The lists will discuss some of the reasons why not. If you can see a way clear to support it and want to write some code, I'm

Manual reload struts-config.xml

2004-05-04 Thread Marcelo Epstein
Hi, How do I reload struts configuration file manualy without context restart? Thanks in advance, Marcelo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: looping question

2004-05-04 Thread Frank Maritato
Thanks!! Robert Taylor wrote: Close... robert -Original Message- From: Frank Maritato [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 04, 2004 1:55 PM To: [EMAIL PROTECTED] Subject: looping question Is there a way to loop over a counter (not over a collection) in either struts or jst

Re: Strange Validation Behavior (SOLVED)

2004-05-04 Thread Nicholas L Mohler
Hubert, Thanks for getting back to me. We ended up finding the problem about an hour ago. It turns out that a developer had mistakenly added [inputForward="true"] to the section of the struts-config file. The effect of that change is that the value for input tags are assumed to be forward

RE: Moving from bean:write to fmt:formatNumber

2004-05-04 Thread Kris Schneider
Actually, your "application resources" *are* bundles. In other words, you can use the same property file(s) for Struts and JSTL tags. One thing you can do for a default JSTL bundle is add the following to web.xml: javax.servlet.jsp.jstl.fmt.localizationContext Messages It's sort of the equi

RE: Moving from bean:write to fmt:formatNumber

2004-05-04 Thread Earl Woodman
Thanks for your response Kris. This seems a bit hairy... when I use bean:write, the key comes from my application resources file nicely, but with this fmt, I have to use a bundle of some sort. Why is this more complicated than the bean:writes? Earl -Original Message- From: Kris Schneid

R: looping question

2004-05-04 Thread Amleto Di Salle
you can solve the problem in two ways: 1) 2) BR /Amleto -Messaggio originale- Da: Frank Maritato [mailto:[EMAIL PROTECTED] Inviato: martedì 4 maggio 2004 19.55 A: [EMAIL PROTECTED] Oggetto: looping question Is there a way to loop over a counter (not over a collection) i

Re: Moving from bean:write to fmt:formatNumber

2004-05-04 Thread Kris Schneider
There are (at least) a couple options. One would be to create a property like: numberFormat={0,number,#.##} And then use : Another would be to leverage the fact that the pattern attribute of accepts an EL expression. So, you'd load the pattern and then do: There are all kinds of ways y

RE: looping question

2004-05-04 Thread Robert Taylor
Close... robert > -Original Message- > From: Frank Maritato [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 04, 2004 1:55 PM > To: [EMAIL PROTECTED] > Subject: looping question > > > Is there a way to loop over a counter (not over a collection) in either > struts or jstl? Looked li

looping question

2004-05-04 Thread Frank Maritato
Is there a way to loop over a counter (not over a collection) in either struts or jstl? Looked like logic:iterate and c:forEach both require a collection. Something like this: I really don't want to create a collection of Integer objects to get around this...any ideas? -- Frank Maritato ---

Moving from bean:write to fmt:formatNumber

2004-05-04 Thread Earl Woodman
Hi, I'm trying to move from bean:writes to fmt:formatNumber in my application, but I'm finding that in order to format a number, I can't get a formatting pattern from my application resources file - there doesn't seem to be a key parameter in the fmt:formatNumber tag. Has anyone run into this prob

Re: FAQ via ezmlm - not available

2004-05-04 Thread Martin Cooper
I'm not sure there ever was a FAQ available via ezmlm... -- Martin Cooper <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hola! After subscribing the confirmation message offers: > Send mail to the following for info and FAQ for this list: > [EMAIL PROTECTED] I tried that and got a

Using the Monkey Tree as a Menu with Tiles

2004-05-04 Thread Hudson, Erik
I'm fairly new to Struts and Tiles and would appreciate any advice on this topic. I'm creating a Struts/Tiles app with the standard header, footer, menu on left and main body on the right layout. Each of my menu choices will have submenus. Currently, I'm using the menu definition that comes with

RE: [OT]JSP Precompile in JBOSS

2004-05-04 Thread Chaikin, Yaakov Y (US SSA)
Complete link to what? The " http://...?jsp_precompile=true"; was just an example to point out jsp_precompile instead of jsp_recompile. If you are talking about the JBoss forum links, here they are again. If this doesn't work as a link, just copy and paste it into your browser. http://www.jbo

Re: Struts - How to Download a File

2004-05-04 Thread Martin Cooper
Just set the appropriate HTTP response headers, write the content to the servlet output stream, and then return 'null' from your Struts Action. -- Martin Cooper "Singh_bibek" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi All, We wish to provide a link to the user, clicking on wh

RE: [OT]JSP Precompile in JBOSS

2004-05-04 Thread Ramadoss Chinnakuzhandai
can you post the complete link...look like link not working. -Ramadoss -Original Message- From: Chaikin, Yaakov Y (US SSA) [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 04, 2004 12:05 PM To: Struts Users Mailing List Subject: RE: [OT]JSP Precompile in JBOSS It's http://...?jsp_preco

Re: struts file upload strange error

2004-05-04 Thread Martin Cooper
"John Moore" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > At 01:13 04/05/2004, Bryan Hunt wrote: > > >Dude, send me your address and I will fed-ex you a cold beer > >!! > >I should have thought of that before. Thanks for your help I've > >j

RE: [OT]JSP Precompile in JBOSS

2004-05-04 Thread Ramadoss Chinnakuzhandai
Chaikin,Paul thanks a lot for your information..I will look into that. -Ramadoss -Original Message- From: Chaikin, Yaakov Y (US SSA) [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 04, 2004 12:05 PM To: Struts Users Mailing List Subject: RE: [OT]JSP Precompile in JBOSS It's http://...

RE:

2004-05-04 Thread balu raman
Thanks Mark. I guess I have too many (out of date) books on Struts, 4 of them.Now, onto JSTL Regards, balu On Tue, 2004-05-04 at 00:14, Mark Mandel wrote: > Balu - > > Use the JSTL tag - it's a faster and better tag. > > Generally use the JSTL tags over the Struts tags where applicable. >

Validation - can i use multiple properties ?

2004-05-04 Thread johannes Schwarz
Hello, with struts-config.xml i define: Than I can write the following code in a jsp-File: (i see the Field1-value from the XXX-File) (I see the Field1-value from the YYY-File) now I am using a form with validation.xml. Some fields are required and the shown error is: ... ... On Submit

[ANNONCE] XMLStubs 1.0.1 released

2004-05-04 Thread Nicolas De Loof
Hello guys, I've released the first plublic version (1.0.1) of a simple tool : XMLStubs. It allows you to replace an API defined by interfaces by an emulated one declared in XML files. Jexl language (same as JSP EL) is used to add conditional behaviour. For example, if you need some implementa

Map backed form with list of String Arrays

2004-05-04 Thread Richard Mixon (qwest)
I am having a problem with a map-backed form and html:select with multiple="true". Would appreciate any help/ideas. I need to display a set of "html:select" lists. The number of lists is user-defined (based on database data) and each select list must allow more than one choice to be selected.

RE: JSP help - reply

2004-05-04 Thread Kathy Zhou
You can use a CSS class to control "look and feel" in select box. -Original Message- From: Santhosh P [SMTP:[EMAIL PROTECTED] Sent: Tuesday, May 04, 2004 2:32 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject:JSP help Hi, I have a select box in jsp page having da

JSP help

2004-05-04 Thread Santhosh P
Hi, I have a select box in jsp page having data loaded as collection and is working well. My problem is the display text content "datalist" is too large and i want the display limited content in select box for good look and feel of the display page. I have set a size="10" for select tag. But still

Re: Strange Validation Behavior

2004-05-04 Thread Hubert Rabago
Send your mappings so that others can "trace" the path along with you, and maybe spot a problem. --- Nicholas L Mohler <[EMAIL PROTECTED]> wrote: > > > > > Hi, > > We are having a problem that occurs when a property fails a server-side > validation. The problem is that the value that we spec

Strange Validation Behavior

2004-05-04 Thread Nicholas L Mohler
Hi, We are having a problem that occurs when a property fails a server-side validation. The problem is that the value that we specify for the "input" tag is not correctly resolved and we end up with a blank page being returned, as opposed to the page that originated the error with the appropr

Test, please ignore

2004-05-04 Thread Chaikin, Yaakov Y (US SSA)
Thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [OT]JSP Precompile in JBOSS

2004-05-04 Thread Chaikin, Yaakov Y (US SSA)
BTW, you should search the JBoss forums and you'll find some answers to this question: Here are a couple of URLs for you to look at: http://www.jboss.org/index.html?module=bb&op=viewtopic&t=48970 http://www.jboss.org/index.html?module=bb&op=viewtopic&t=44455 HTH. Yaakov Chaikin Software Enginee

RE: [OT]JSP Precompile in JBOSS

2004-05-04 Thread Chaikin, Yaakov Y (US SSA)
It's http://...?jsp_precompile=true HTH. Yaakov Chaikin Software Engineer BAE SYSTEMS 301-838-6899 (ph) 301-838-6802 (fax) > -Original Message- > From: Paul McCulloch [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 04, 2004 12:00 PM > To: 'Struts Users Mailing List' > Subject: RE: [

RE: [OT]JSP Precompile in JBOSS

2004-05-04 Thread Paul McCulloch
I've done this in the past using wget to try and retrieve each page with the special jsp_recompile (or something - see the JSP spec) argument. The problem I found with JBOSS-Tomcat is that JBOSS would remove all the compiled jsps on shutdown. If this is the root of your problem (it was with me) th

[OT]JSP Precompile in JBOSS

2004-05-04 Thread Ramadoss Chinnakuzhandai
Hi, Is there anyway I can configure JSP precompile in JBOSS startup? if so can you help me how to configure the same. Any help would be appreciated. Thank you in advance, Warm Regards, Ramadoss - To unsubscribe, e-mai

RE: FileUpload: Stream ended unexpectedly

2004-05-04 Thread JoAnn Lemm
There's a new patch out there for the isapi_redirector2.dll that will solve your problem. About 3 weeks ago, I discovered that the problem recurred when I uploaded large files from the internet (no problems with the intranet.) When I turned on the debugger, the problem corrected itself about 70

RE: Special Characters (german Umlaute)

2004-05-04 Thread Kransen, J.
This is something I've been wondering: is it absolutely necessary to convert text files using this tool? I use UTF-8 encoding for the ApplicationResources.properties_?? files, I indicate that UTF-8 is the encoding of my web pages, with the tag and it works just fine. Is this just coincidence an

Re: Validation - can i use multiple properties ?

2004-05-04 Thread Ivan
Take a look at JSTL format with multiple Resource Bundles http://www.cheblogs.com/roller/page/princeamin/20031104 - Original Message - From: "johannes Schwarz" <[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Tuesday, May 04, 2004 3:54 PM Subject:

RE: html:link forward + hard coded parameter

2004-05-04 Thread Menke, John
-Original Message- From: Susan Bradeen [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 04, 2004 8:59 AM To: Struts Users Mailing List Subject: Re: html:link forward + hard coded parameter "Dean A. Hoover" <[EMAIL PROTECTED]> wrote on 05/04/2004 04:15:19 AM: > Maybe I need to r

AW: Validation - can i use multiple properties ?

2004-05-04 Thread johannes Schwarz
I know this and i use this language files. XXX_de.properties XXX_en.properties AND YYY_de.properties YYY_en.properties I use a action to set the language: - String lang = httpServletRequest.getParameter("language"); Locale newlang = new Locale(lang); this.set

RE: Struts - How to Download a File

2004-05-04 Thread Lee, Yau-Pang
Not really struts here, more of a http question. In your servlet you can response to the client with something like this: response.setContentType("application/mpg"); response.setHeader("Content-disposition", "attachment; filename=" + fileName); out = response.getWriter(); out.write(output.toStri

Re: [OT] Page Cannot Be Displayed

2004-05-04 Thread Shyamal Shah
Probably will have to do that from now. Didnt know about junk mails in apache group. For beer, I prefer the real one :) - Original Message - From: "James Mitchell" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, May 04, 2004 7:25 AM Subject: Re: [OT]

RE: Validation - can i use multiple properties ?

2004-05-04 Thread nils . mueller
Hi Johannes, are you aware of localization / i18n support by having multiple language property files? Like: XXX_de.properties XXX_en.properties XXX_fr.properties ... Struts then chooses the properties-file depending on locale. Maybe a look at that stuff helps. good luck Nils This messa

Re: html:link forward + hard coded parameter

2004-05-04 Thread Susan Bradeen
"Dean A. Hoover" <[EMAIL PROTECTED]> wrote on 05/04/2004 04:15:19 AM: > Maybe I need to restate this... > > Ok, so I am generating a page of "entries" > that are clickable by the user, in which case > something about that entry will be displayed. > Its the classic search engine results type of t

Re: How to read a collection or a Array ?

2004-05-04 Thread Daniel H A Lima
Try this (i think you can remove "logic:notEmpty") : Be sure that you forward is a true forward (not a redirect) or you will lose the attributes in your request, ok ? --- cacau_braga <[EMAIL PROTECTED]> escreveu: > Hi All, > > This is my first message

RE: Tools for check struts-config.xml parse exception

2004-05-04 Thread James Holmes
Struts Console will tell you whether or not your Struts, Tiles and Validator config files are valid as it uses their respective DTDs to check their format. http://www.jamesholmes.com/struts/ Hope that helps, -James -Original Message- From: Kelvin wu [mailto:[EMAIL PROTECTED] Sent: Tues

Re: Validator execution-order, all at once possible?

2004-05-04 Thread Susan Bradeen
[EMAIL PROTECTED] wrote on 05/03/2004 11:06:10 AM: > > http://marc.theaimsgroup.com/?t=10590259932&r=1&w=2 > > Hi folks, > > I got stuck on a problem discussed earlier in this list (@see link > above). > Hope this hasn't been answered elsewhere - it was the only thing I could > find. > >

How to read a collection or a Array ?

2004-05-04 Thread cacau_braga
Hi All, This is my first message in that list. I have a class action that I set in request an Array of my specific object (UfDataTransfer[ ], it´s a simple bean with get and set methods), I want to know as I make to call that array with tag iterate, because i need to build my view. In my Act

Re: Tools for check struts-config.xml parse exception

2004-05-04 Thread Kris Schneider
Ant's optional task. Quoting Kelvin wu <[EMAIL PROTECTED]>: > Dear all, > > Which tools you are using for check parse exception for struts-config.xml? > > Kelvinwu -- Kris Schneider D.O.Tech --

Re: Setting html:text readonly attribute

2004-05-04 Thread Mario Eckl
The readonly-attribute can have the following two states - readonly and - [nothing]. There is no readonly ="true" or readonly="false" for HTML text-input-fields. (The same applies for the 'disabled'- and 'checked'-attributes of e.g. checkboxes) For this reason the browsers behavior is corr

FAQ via ezmlm - not available

2004-05-04 Thread nils . mueller
Hola! After subscribing the confirmation message offers: > Send mail to the following for info and FAQ for this list: > [EMAIL PROTECTED] I tried that and got an email telling me: > FAQ - Frequently asked questions of the [EMAIL PROTECTED] list. > None available yet. Maybe got lost when switchi

Re: [OT] Page Cannot Be Displayed

2004-05-04 Thread James Mitchell
ORyou could configure YOUR mail client to delete [OT] messages. Personally, I have a special filter that moves all messages with "beer" in the subject or body up to the top of the list, bolds them, and if, for some reason, I don't read it within a few minutes, it sends me a text message to

RE: Setting html:text readonly attribute

2004-05-04 Thread Takhar, Sandeep
maybe you need to use custom tags. sandeep -Original Message- From: John Moore [mailto:[EMAIL PROTECTED] Sent: Monday, May 03, 2004 4:07 PM To: Struts Users Mailing List Subject: RE: Setting html:text readonly attribute At 16:09 03/05/2004, Paul McCulloch wrote: >1) Use an html (rather

Validation - can i use multiple properties ?

2004-05-04 Thread johannes Schwarz
Hello, with struts-config.xml i define: Than I can write the following code in a jsp-File: (i see the Field1-value from the XXX-File) (I see the Field1-value from the YYY-File) now I am using a form with validation.xml. Some fields are required and the shown error is: ... ... On Submit

RE: background process

2004-05-04 Thread Guillermo Meyer
We implement something like this. We have a really heavy process submitted by a user, so we don't want him to wait for finishing. In a struts action, we call a Service (POJO) and this service places a message in a JMS and saves a record of the process in a database table in a "running" state. Then

Re: Setting html:text readonly attribute

2004-05-04 Thread John Moore
At 16:08 03/05/2004, Jason Miller wrote: Actually, you can't use a tag as the value of another tag's attribute. Out of interest, does anyone know whether there are plans for this for a future JSP version? It seems quite an obvious requirement, and I can't see any technical reason why it should n

Re: struts file upload strange error

2004-05-04 Thread John Moore
At 01:13 04/05/2004, Bryan Hunt wrote: Dude, send me your address and I will fed-ex you a cold beer !! I should have thought of that before. Thanks for your help I've just wasted 24 hours on this If I was running linux I could have ran a packet captur

Re: Special Characters (german Umlaute)

2004-05-04 Thread Ralf Schneider
Am Montag, 3. Mai 2004 21:57 schrieb Ruth, Brice: > You can use the native2ascii application that is bundled with your JDK to > automatically convert your native-encoded file with umlauts to \u > format encodings. Thanks, works fine! The only thing I have to manage now is to automate this ta

Re: Logging (Log4J and Digester)

2004-05-04 Thread Johannes Wolfgang Woger
Weiss, Daniel (EXTERN: FOURTH) wrote: Hi folks, How could i config log4j to get no more DEBUG informations about the init method of the actionservlet? What will be the best way to config log4j? I would use chainsaw from log4j to see all Error Levels in a queue, but at present the debug msg are

Re: html:link forward + hard coded parameter

2004-05-04 Thread Dean A. Hoover
Maybe I need to restate this... Ok, so I am generating a page of "entries" that are clickable by the user, in which case something about that entry will be displayed. Its the classic search engine results type of thing. Anyway, so let's say I have a forward defined something like "show" => "/ShowR

Tools for check struts-config.xml parse exception

2004-05-04 Thread Kelvin wu
Dear all, Which tools you are using for check parse exception for struts-config.xml? Kelvinwu - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]