outputting html with bean:write

2003-10-15 Thread Lars Hammer
Hello I'm trying to write the content of a bean property containing html to my page, but the html doesn't get interpreted by the browser. The following code works : div style=height: 70; width: 200; border: 1px solid black; overflow: auto; bhello there/b /div but this doesn't div

Re: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Peter
IMPORTANT? Not for me sorry! Mick Knutson wrote: I have posted this before, and I still am trying to understand the best way to approach this. I have 100% of my labels in a Resource bundle currently. But I also have larger pages of text (1-2 pages at a time), that I need to be

Re: outputting html with bean:write

2003-10-15 Thread tcs 777
If writing html with bean:write just make sure you specify the attribute format=false. If this attribute is set to true, the rendered property value will be filtered for characters that are sensitive in HTML, and any such characters will be replaced by their entity equivalents. The default

Re: outputting html with bean:write

2003-10-15 Thread Nicolas De Loof
What html result do you get ? If generated HTML has bean:write check if you included struts-bean taglig header in your jsp. If generated HTML has lt;bgt;hello ... use filter=false on bean:write to disable HTML markup filtering (active by default) Nico. - Original Message -

Fwd: Re: outputting html with bean:write

2003-10-15 Thread tcs 777
I mean the FILTER attribute of course!! bean:write name=hit filter=false property=comment/ From: tcs 777 [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: outputting html with bean:write Date: Wed, 15 Oct 2003 08:23:06 + If writing

RE: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Andrew Hill
What! Can you not see that the very fate of human civilisation itself depends on it? Open your eyes man! -Original Message- From: Peter [mailto:[EMAIL PROTECTED] Sent: Wednesday, 15 October 2003 16:23 To: [EMAIL PROTECTED] Subject: Re: IMPORTANT: internationalize large chunks of text/HTML

Re: TC5 mozilla

2003-10-15 Thread Adam Hardy
Can anybody check out this issue for me quickly. Tomcat5's form-based authentication does not work under SSL with a Struts mapping, in Mozilla 1.5. TC5 loops straight back to the login page again and again OR it gives me an invalid direct reference to j_security_check Without SSL it works

Re: TC5 mozilla

2003-10-15 Thread Adam Hardy
On 10/15/2003 10:50 AM Adam Hardy wrote: Can anybody check out this issue for me quickly. Tomcat5's form-based authentication does not work under SSL with a Struts mapping, in Mozilla 1.5. TC5 loops straight back to the login page again and again OR it gives me an invalid direct reference to

Re: Re: outputting html with bean:write

2003-10-15 Thread Lars Hammer
Cool! that works -thanks a lot! Guess I'd better take a closer look at the API next time :-/ /Lars Hammer I mean the FILTER attribute of course!! bean:write name=hit filter=false property=comment/ From: tcs 777 [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To:

requiredif validator

2003-10-15 Thread Erez Efrati
Hi, I am using the validator 1.02 that came with Struts 1.1. How do I get the 'requiredif' validator to work? Or is it not included? Thanks, Erez - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Ted Husted
I haven't had to do this myself, but I believe that when you have entire pages that can be maintained separately, people start developing separate page trees. The idea being that you can have an Action check the locale and fork to one set of ActionForwards or another, based on the locale.

RE: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Andrew Hill
I think one approach a lot of people take is to have seperate directories for each langauge containing the translated pages or page fragments for those languages. One would I guess use the same action in each case, and probably the same main template. The whole strutcure stays the same, just the

RE: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Paul McCulloch
I use a similair approach, but get fmt:message to deal with selecting the correct locale for me: bean:define id=localePage fmt:message key=some.langauage.specific.page/ /bean:define jsp:include page=%=localePage% flush=true/ I then define the path to the locale specific html page in the

RE: Bean:write to c:out conversion for something in .properties file

2003-10-15 Thread Carlos Sánchez
Could you post your JSTLSwitchAction ? -Mensaje original- De: Kris Schneider [mailto:[EMAIL PROTECTED] Enviado el: miércoles, 15 de octubre de 2003 4:25 Para: Struts Users Mailing List Asunto: Re: Bean:write to c:out conversion for something in .properties file Wendy Smoak

RE: requiredif validator

2003-10-15 Thread Erez Efrati
Oops, sorry, what I wanted to know is about 'requiredWhen'. Erez -Original Message- From: Erez Efrati [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 11:12 AM To: 'Struts Users Mailing List' Subject: requiredif validator Hi, I am using the validator 1.02 that came with

Re: Difficulty getting html:message tag to work.

2003-10-15 Thread Susan Bradeen
On 10/14/2003 10:23:24 PM Matt Toni Willis wrote: Hi, I'm using Struts 1.1, and am attempting to utilize the new ActionMessages class with the html:message tag. I have the following code in my Action class: actionMessages.add(message, new

RE: Converting to Struts, where to put Servlet init() code?

2003-10-15 Thread Mark Galbreath
subclass ActionServlet and put your inits there. -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 14, 2003 7:43 PM To: [EMAIL PROTECTED] Subject: Converting to Struts, where to put Servlet init() code? I'm converting an existing webapp to Struts. I

RE: Converting to Struts, where to put Servlet init() code?

2003-10-15 Thread shirishchandra.sakhare
You dont need to subclass the action servlet just for the init code... Write u r own servlet(InitializationServlet)and put it in the init method of this servlet. When configuring the servlets in web.xml have somethign like this. servlet servlet-nameInitializationServlet/servlet-name

Re: Converting to Struts, where to put Servlet init() code?

2003-10-15 Thread Nicolas De Loof
You can use the Struts PlugIn mecanism too, but your init code may need some changes. Nico. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 2:11 PM Subject: RE: Converting to Struts, where to put Servlet init() code? You dont need

RE: Converting to Struts, where to put Servlet init() code?

2003-10-15 Thread Brian McSweeney
Easier still, you don't have to write a servlet, just a class that implements ServletContextListener, eg something like: public class StartupListener implements ServletContextListener { private Log log = LogFactory.getLog(StartupListener.class); ServletContext servletContext;

Required checkbox field Validator

2003-10-15 Thread Erez Efrati
Hi, I have a DynaActionForm with a boolean field representing a checkbox field which must be checked before processing the form. I've tried marking him as depending on 'required' but that didn't do it and the server side FieldChecks.validateRequired () of Struts just let it pass. Going into the

Re: [REPOST] Best Practice Question - html links

2003-10-15 Thread Joanne L Corless
Thanks Kris, That worked beautifully, I've been pulling my hair over that one for 3 days now Thanks again Joanne Corless CSC Computer Sciences Limited (   Office +44 (0)1772 318025 ( Mobile +44 (0)7767 656588 * email [EMAIL PROTECTED] Based at: CSC, Alliance House, Library Road, Chorley,

Re: IDE

2003-10-15 Thread Duncan Mills
Chris - you'll be glad to know the browser command line has been fixed for the production version. The other issues I'll take off-line with you Regards Duncan Mills From: Christian Bollmeyer To: Struts Users Mailing List Sent: Tuesday, October 14, 2003 10:19 PM Subject: Re: IDE Am

Re: requiredif validator

2003-10-15 Thread Adam Hardy
On 10/15/2003 01:47 PM Erez Efrati wrote: Oops, sorry, what I wanted to know is about 'requiredWhen'. Erez -Original Message- From: Erez Efrati [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 11:12 AM To: 'Struts Users Mailing List' Subject: requiredif validator Hi, I am

Re: Required checkbox field Validator

2003-10-15 Thread Adam Hardy
On 10/15/2003 02:23 PM Erez Efrati wrote: I have a DynaActionForm with a boolean field representing a checkbox field which must be checked before processing the form. I've tried marking him as depending on 'required' but that didn't do it and the server side FieldChecks.validateRequired () of

RE: Required checkbox field Validator

2003-10-15 Thread Erez Efrati
Do you mean putting a mask with value of 'true'? In that case, I haven't but I will do it. Is it a valid mask value? If this doesn't work I guess I'd have to write one of my own. Erez -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 3:02

RE: Required checkbox field Validator

2003-10-15 Thread Erez Efrati
One thing else I don't get is why does the checkups in the client side validations are not done field by field, where on each field run all the checks it depends on? Am I so special and unique to be doing it this way? Erez -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED]

RE: Converting to Struts, where to put Servlet init() code?

2003-10-15 Thread Ventin, Vince
The approach I am using for WSSO is to extend the RequestProcessor class and override the processPreprocess() method. This is recommended in the book Programming Jakarta Struts by Chuck Cavaness, published by O'Reilly, p 112. If you put a debug statement in it you will find that it gets executed

RE: Bean:write to c:out conversion for something in .properties file

2003-10-15 Thread Kris Schneider
Sure, it's attached (if there ends up being a problem posting it that way, I'll resend it inline). This was purely a mental excercise. I don't normally use modules so it hasn't been extensivley tested. Oh, and it really only works for swapping between the default message resources for each module.

RE: Bean:write to c:out conversion for something in .properties file

2003-10-15 Thread Kris Schneider
Okay, that didn't seem to work. Here it is inline (apologies if the formatting gets hosed): JSTLSwitchAction.java - import javax.servlet.ServletContext; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import

Re: Required checkbox field Validator

2003-10-15 Thread Adam Hardy
Sorry, no idea! I was just taking a wild guess. I thought a mask was a regular expression. Is that not so? On 10/15/2003 03:14 PM Erez Efrati wrote: Do you mean putting a mask with value of 'true'? In that case, I haven't but I will do it. Is it a valid mask value? If this doesn't work I guess

format string bean write - property editor

2003-10-15 Thread [EMAIL PROTECTED]
Hello I read this mailing list since 1 year, but it is my first question :-) I have a bean with a string property, this string is big and it is not a trouble but in one use of the bean:write in a jsp, i wish to reduce on the screen the size of the string (but not in the bean) I can't find any

OT: Simple is great . (period)

2003-10-15 Thread Vic Cekvenic
Someone recently posted in here Simple is great if your needs are simple implying that KISS is not always good. I would like to disagree, and point out that KISS is always good. Teaching design is hard, and that is why it takes experience to do good design. For a first few years in IT, I too

Re: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Mick Knutson
Are you saying that the fmt will get com.baselogic.text by default, but if the Globals.LOCALE = DE, then fmt will get com.baselogic.text_de? Or am I missing where fmt gets it's locale information from? --- Thanks Mick Knutson The world is a playground...Play Hard, Play Smart. Visit

Re: Required checkbox field Validator

2003-10-15 Thread Adam Hardy
If I think you mean what you mean, I think it's done so that any depends validation that fails returns and no more validations on that field are done. But I've seen all fields getting validated in my client-side stuff. On 10/15/2003 03:19 PM Erez Efrati wrote: One thing else I don't get is why

Re: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Mick Knutson
Well, I did not want to put URGENT, but yes, everything is a critical mass as I have a 2 day expo starting tomorrow for 500+ people that I am demonstrating my new application to. So with lack of sleep and heaps of stress, I am sorry but everything is fairly important right now. BTW, I really do

[OT] TestWEB

2003-10-15 Thread Susan Bradeen
Is anyone using Original Software's TestWEB web application testing tool? http://www.testweb.com/ All was going well while recording test scripts, but editing them is becoming a bear for me. I think my problem lies in all the forwarding my Struts application does ... the fact that the URL

pre-selecting html input object values

2003-10-15 Thread Manav Gupta
Hi, Is there a standard way to pre-select HTML input object values (such as select, text, checkbox, etc) using struts taglibs? Thanks M - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: Required checkbox field Validator

2003-10-15 Thread Shah, Prashant (Controllers, IT)
Please help me in unsubscribing to this list. I have sent multiple request to unsubscribe by sending email to [EMAIL PROTECTED] I get email confirming that I have been unsubscribed successfully but then also I keep getting emails from the user list. Thanks for your help in advance. Prashant

RE: Required checkbox field Validator

2003-10-15 Thread Erez Efrati
Forgive me for abusing this thread but... by the way how do you insert a '-' and space chars into a validator mask regular expression? Erez -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 3:55 PM To: Struts Users Mailing List Subject: Re:

fmt:message vs bean:message Tiles

2003-10-15 Thread Fenderbosch, Eric
Maybe this would be better off in the taglibs group, but since it is also Tiles related, I thought I'd ask here first. I'm trying to get rid of all instances of bean:message in favor of fmt:message, but I'm not getting it to work when referencing a tiles attribute. tiles-config.xml:

Re: Keeping Actions clean - separating actions from businessmodel from persistence

2003-10-15 Thread Sgarlata Matt
Hi Sasha, sorry it has taken me so long to get back to you. I've been putting a lot of thought into my response, and I would still like to think about the issues here a little more. Specifically, I want to evaluate using the iBATIS DAO layer instead of my own custom DaoManager. I will probably

Display Tag :

2003-10-15 Thread MBrewer
The display tag jsp library is pretty cool, but can i do lists where i do not know the Names or number of columns until runtime. Mike The information in this message is confidential and may be legally privileged.

How to i make the default selection of radio button

2003-10-15 Thread Mahendra K. Kutare
Hi all, I am facing an issue of default selecting a radio button in struts. I have written code to create two radio button, but i want one of them to be default selected. Can anyone help me on this ? How to achieve this default selection of one of the radio buttons. Thanks and regards

Re: fmt:message vs bean:message Tiles

2003-10-15 Thread Kris Schneider
Try: fmt:message key=${titleKey}/ Of course, you also need to make sure JSTL knows where your messages are stored. You can set a default by including something like this in your web.xml: context-param param-namejavax.servlet.jsp.jstl.fmt.localizationContext/param-name

RE: message vs bean:message Tiles [SOLVED]

2003-10-15 Thread Fenderbosch, Eric
Reading jstl-1_0-fr-spec.pdf helped. I needed fmt:message key=${titleKey}/ -Original Message- From: Fenderbosch, Eric Sent: Wednesday, October 15, 2003 10:05 To: [EMAIL PROTECTED] Subject: fmt:message vs bean:message Tiles Maybe this would be better off in the taglibs group, but since

Passing multiple parameters from a jsp page to action class - using JSTL - How?

2003-10-15 Thread Joanne L Corless
Hi, Spurred on with my recent success regarding passing parameters on html:link I now want to pass 2 parameters into the action class from the jsp. I realise I have to create a java.util.map to do this but how can I combine this with using the JSTL? i.e. Currently I am passing in one parameter

Re: Passing multiple parameters from a jsp page to action class - using JSTL - How?

2003-10-15 Thread Kris Schneider
jsp:useBean id=paramMap class=java.util.HashMap c:set target=${paramMap} property=pageName value=menuItemNameValue/ c:set target=${paramMap} property=menuBlock value=menuBlockValue/ /jsp:useBean Quoting Joanne L Corless [EMAIL PROTECTED]: Hi, Spurred on with my recent success regarding

RE: Converting to Struts, where to put Servlet init() code?

2003-10-15 Thread Wendy Smoak
Brian wrote: Easier still, you don't have to write a servlet, just a class that implements ServletContextListener, eg something like: THIS is the class I was looking for. I kept coming up with Filter but knowing that wasn't right. I've used ServletContextListener before, too! -- Wendy

[OT]formatting line breaks and tabs in emails?

2003-10-15 Thread Mick Knutson
I am trying to format email messages that need to contain line breaks, and tabs. But when I add \n\r or \t, they just seems to be ignored. Is there a way to do this? --- Thanks Mick Knutson The world is a playground...Play Hard, Play Smart. Visit http://www.YourSoS.com to learn how our

AW: [OT]formatting line breaks and tabs in emails?

2003-10-15 Thread Otto, Frank
I using \n as line breaks in mails and it functions. -Ursprüngliche Nachricht- Von: Mick Knutson [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 15. Oktober 2003 16:51 An: struts Betreff: [OT]formatting line breaks and tabs in emails? I am trying to format email messages that need to

Re: OT: Simple is great . (period)

2003-10-15 Thread Greg Reddin
Funny, a coworker and I were discussing this very thing yesterday in the context of J2EE vs. .NET. Neither of us have used .NET so we're just going on our perceptions. But .NET proponents say that it is simpler than J2EE. This is fine as long as you can handle being pigeon-holed into a

RE: Converting to Struts, where to put Servlet init() code?

2003-10-15 Thread Brian McSweeney
Cool :-) Glad to be of help! Brian -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: 15 October 2003 14:36 To: Struts Users Mailing List Subject: RE: Converting to Struts, where to put Servlet init() code? Brian wrote: Easier still, you don't have to write a servlet,

RE: format string bean write - property editor

2003-10-15 Thread Paul McCulloch
I'd create a custom tag and pass bean:write as the body. Paul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 15 October 2003 14:53 To: struts-user Subject: format string bean write - property editor Hello I read this mailing list since 1 year, but it is my

RE: [OT]formatting line breaks and tabs in emails?

2003-10-15 Thread Brian McSweeney
Are the \n values being pulled in from resource bundles? -Original Message- From: Otto, Frank [mailto:[EMAIL PROTECTED] Sent: 15 October 2003 14:57 To: 'Struts Users Mailing List' Subject: AW: [OT]formatting line breaks and tabs in emails? I using \n as line breaks in mails and it

RE: IMPORTANT: internationalize large chunks of text/HTML

2003-10-15 Thread Paul McCulloch
fmt get's the neccessary from the headers the broweser puts in the request by default I believe. Have a look at the Jakarta JSTL examples application. Paul -Original Message- From: Mick Knutson [mailto:[EMAIL PROTECTED] Sent: 15 October 2003 14:55 To: Struts Users Mailing List Subject:

AW: [OT]formatting line breaks and tabs in emails?

2003-10-15 Thread Otto, Frank
Yes, I use it in property-files. -Ursprüngliche Nachricht- Von: Brian McSweeney [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 15. Oktober 2003 18:08 An: 'Struts Users Mailing List' Betreff: RE: [OT]formatting line breaks and tabs in emails? Are the \n values being pulled in from

Re: IMPORTANT: how to tell

2003-10-15 Thread Adam Hardy
Perhaps we can work out a coding system like geekcode or whatever it was so that we can prefix every message title in a more community-friendly way: [I3F99D] internationalize blah blah blah where I = interesting for others from 0 - 5 F = frustration level of author: number of times have

Re: Required checkbox field Validator

2003-10-15 Thread Adam Hardy
Sorry, don't know. Someone else will have to answer this. Adam On 10/15/2003 04:04 PM Erez Efrati wrote: Forgive me for abusing this thread but... by the way how do you insert a '-' and space chars into a validator mask regular expression? Erez -Original Message- From: Adam Hardy

intRange Validation works but displays always null

2003-10-15 Thread Martin Grüneberg
Hello togehter, i have a problem with range validation. I think it is a simple thing but I can't get it solved. I already searched the archive but can't find a solution. I defined a Form in validation.xml with a field like this: field property=p_datum_t depends=integer,intRange arg0

RE: How to i make the default selection of radio button

2003-10-15 Thread Greg Dunn
Set the ActionForm property representing the radio button to equal the value on the individual button you want selected. Greg -Original Message- From: Mahendra K. Kutare [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 9:00 AM To: Struts Users Mailing List Subject: How to i

RE: [OT]formatting line breaks and tabs in emails?

2003-10-15 Thread Brian McSweeney
Hmm, very strange. I had the exact same error as Mick yesterday. I'm also using \n and I was pulling it in from resource bundles but the breaks were being ignored. Perhaps it has to do with the mailer. My mailer is setting the type of message to text/html as you can see by my send method

display tag and struts

2003-10-15 Thread Otto, Frank
Hello, I have read something about diplay tag library and have test it. If I want to sort the table by clicking on column, I will get an error, because my collection is null. It isn't saved in the session, only in the request. An idea? My other questions is: - Can I use display tag with

RE: Required checkbox field Validator

2003-10-15 Thread Saul Yuan
Try \- and \s or \s+ for multiple spaces. Saul -Original Message- From: Erez Efrati [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 10:05 AM To: 'Struts Users Mailing List' Subject: RE: Required checkbox field Validator Forgive me for abusing this thread but... by

Re: IMPORTANT: how to tell

2003-10-15 Thread Brandon Goodin
How about we set up a review board that examines every post to the list. Discards pointless discussions (like this one) and rates them according to a scale of importance to the community. Then they place them into bugzilla where they will be propagated to the struts list subscribers as tasks. :-\

Re: How to i make the default selection of radio button

2003-10-15 Thread Barry Volpe
In your Action: If using DynaValidatorForm: DynaValidatorForm eForm = (DynaValidatorForm)form; eForm.set(radioButtonName,radioButtonValue)); now foward to your form and the radio button will be selected. If using a Form: nameOfForm eForm = new nameOfForm();

[REPOST] basic question about global forward

2003-10-15 Thread Julien Martin
Hello, I am going through the struts sample application (struts-example.war) and I am trying to understand the firtst global forward. Here it is: *** forward name=logoff path=/logoff.do/ *** How does the

Re: [REPOST] basic question about global forward

2003-10-15 Thread Barry Volpe
It is defined in the Action in the struts-config. If you want a more detailed answer past the config code in your post. Barry - Original Message - From: Julien Martin [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 9:10 AM Subject:

RE: IMPORTANT: how to tell

2003-10-15 Thread Raghu.Ramakrishnan
Brandon, You are right, lets all vote for a review board and review comitee memebers. So that we are all do not get such junk mail. Raghu -Original Message- From: Brandon Goodin [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 11:07 AM To: [EMAIL PROTECTED]

Re: IMPORTANT: how to tell

2003-10-15 Thread Adam Hardy
On 10/15/2003 06:06 PM Brandon Goodin wrote: How about we set up a review board that examines every post to the list. Discards pointless discussions (like this one) and rates them according to a scale of importance to the community. Then they place them into bugzilla where they will be propagated

Re: IMPORTANT: how to tell

2003-10-15 Thread Barry Volpe
The list does have an abundance of valuable information. Am I correct in saying that the list only archives about a weeks worth of posts? It would be great if the list had a way of cataloging the information. I find that a topic could be discussed for two days and then go away. The next day

Re: IMPORTANT: how to tell

2003-10-15 Thread Mike Deegan
Let me be the first to nominate Raghu to head the committee! Any seconds? - Original Message - From: Raghu.Ramakrishnan [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 10:12 AM Subject: RE: IMPORTANT: how to tell Brandon, You are

RE: IMPORTANT: how to tell

2003-10-15 Thread Paul McCulloch
Try http://marc.theaimsgroup.com/?l=struts-userr=1w=2 Paul -Original Message- From: Barry Volpe [mailto:[EMAIL PROTECTED] Sent: 15 October 2003 17:23 To: Struts Users Mailing List Subject: Re: IMPORTANT: how to tell The list does have an abundance of valuable information. Am I

html:checkbox Tag problem

2003-10-15 Thread mohamed ebrahim faisal
Hai I populate data from database in to the Action form, which i am using to display multiple records in the JSP Page. Here i am using Html:checkbox as an indicator to every record in the the page. I have associated the checkobox with String array Property. My Problem is when i submit the form

Re: IMPORTANT: how to tell

2003-10-15 Thread Barry Volpe
That helps Thanks Barry - Original Message - From: Paul McCulloch [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 9:26 AM Subject: RE: IMPORTANT: how to tell Try http://marc.theaimsgroup.com/?l=struts-userr=1w=2 Paul

[REPOST] basic question about global forward

2003-10-15 Thread Julien Martin
Hello, Thank you for your reply Barry. Note that I have disabled the local forward. I don't understand how the application knows that logoff.do is mapped to the logon.jsp. Can you tell me? Julien. Here is the struts-config.xml file: ?xml version=1.0

struts/tiles switch from windows to Linux

2003-10-15 Thread Witt, Mike (OH35)
I have a webapp I've developed in windows. The production environment is Linux. On windows, I am using Tomcat 4.1.24. In Linux, it is Tomcat 4.1.27 (standalone). Here is the problem: I have a tiles tag that says: tiles:put name=menu value = /tiles/CoolMenu.jsp / This worked fine in my

Re: [REPOST] basic question about global forward

2003-10-15 Thread Barry Volpe
Julien, What I see is that the /logoff is fowarded to the index.jsp. not the logon.jsp. I'm guessing that you have disabled the foward and expect the index.jsp to not be displayed? I'm not saying that this will solve your problem but once in awhile you might want to clear out your browser

RE: IMPORTANT: how to tell

2003-10-15 Thread Steve Raeburn
A little bit more than a weeks worth ;-) http://jakarta.apache.org/struts/resources/archives.html Steve -Original Message- From: Barry Volpe [mailto:[EMAIL PROTECTED] Sent: October 15, 2003 9:23 AM To: Struts Users Mailing List Subject: Re: IMPORTANT: how to tell The list does

RE: IMPORTANT: how to tell

2003-10-15 Thread Wendy Smoak
Barry wrote: What could be done so that information that has already been posted can be available to future questions or posts? The 'List Archive' link from the Struts main page appears to go back to 2000. http://nagoya.apache.org/eyebrowse/SummarizeList?listId=42 I use this archive:

RE: html:checkbox Tag problem

2003-10-15 Thread Wendy Smoak
Faisal wrote: I populate data from database in to the Action form, which i am using to display multiple records in the JSP Page. Here i am using Html:checkbox as an indicator to every record in the the page. I have associated the checkobox with String array Property. My Problem is when i

Re: IMPORTANT: how to tell

2003-10-15 Thread Barry Volpe
Thanks all, I was not looking at the correct links Barry - Original Message - From: Steve Raeburn [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 9:59 AM Subject: RE: IMPORTANT: how to tell A little bit more than a weeks worth ;-)

RE: struts/tiles switch from windows to Linux

2003-10-15 Thread Chen, Gin
From the initial look of it.. It is not having a problem with finding /tiles/CoolMenu.jsp but rather having a problem with code within CoolMenu.jsp page. (Not that the exception is ServletException in /tiles/CoolMenu.jsp not within the page that included it). -Tim -Original Message- From:

Re: struts/tiles switch from windows to Linux

2003-10-15 Thread Vic Cekvenic
Maybe it neds .js files relative? I assume you are deploying a war file. .V Chen, Gin wrote: From the initial look of it.. It is not having a problem with finding /tiles/CoolMenu.jsp but rather having a problem with code within CoolMenu.jsp page. (Not that the exception is ServletException in

Validator vs. XForms

2003-10-15 Thread Stephan Wiesner
What is the future of the Validator, concerning the now finalized XForms specification? As I understand it, both do about the same. Will there be a kind of merge? Stephan - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Warning message on Startup

2003-10-15 Thread Srinivas Gunturu
Hi All, I am seeing following warning message in my logs when server starts up. The application is functioning properly but not sure if I should ignore this or fix it. I am using Struts as well as Tiles. action: Warning - ActionComponentServlet class: This class is to be used with

RE: struts/tiles switch from windows to Linux

2003-10-15 Thread Larry Meadors
Yep, Tim's right. Search your app for \ characters. Odds are you have some config file that has one. Change 'em to / and it will work in either OS. Tim's always right. He is one fart smeller, er, umm smart feller. Larry [EMAIL PROTECTED] 10/15/03 11:42 AM From the initial look of it.. It is

Re: IMPORTANT: how to tell

2003-10-15 Thread Larry Meadors
Brandon, It is not that you are a stupid person per se, but that idea is quite possibly the stupidest thing I have heard a *mammal* suggest. Larry [EMAIL PROTECTED] 10/15/03 10:06 AM How about we set up a review board that examines every post to the list. Discards pointless discussions (like

RE: struts/tiles switch from windows to Linux

2003-10-15 Thread Witt, Mike (OH35)
No, I haven't deployed a .war file. I zipped up my webapp's folder and ftp'd it to someone with the web hosting company. They unzipped it and put it into place. At this time I'm still assuming that everything (file system wise) looks the same as it did. Mike -Original Message- From:

RE: struts/tiles switch from windows to Linux

2003-10-15 Thread Witt, Mike (OH35)
Excellent point. I was assuming when I read the could not be found part that it was discussing the .jsp file itself. But it is probably referring to something that struts-menu uses. Thanks, I'll take a look. Mike -Original Message- From: Chen, Gin [mailto:[EMAIL PROTECTED] Sent:

Struts 1.2

2003-10-15 Thread Erez Efrati
As I really wish to put my hands on the validwhen validator I understand that I need to have Struts 1.2 from the nightly builds. Is there some sort of beta for 1.2? Is anyone working with it right now? Do I need to download any other packages like commons-validator or is it all bundled in Struts?

RE: struts/tiles switch from windows to Linux [I0F0D-----H]

2003-10-15 Thread Chen, Gin
Shhh Larry.. What I do on my private time is my own business. -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 1:50 PM To: [EMAIL PROTECTED] Subject: RE: struts/tiles switch from windows to Linux Yep, Tim's right. Search your app for

RE: Warning message on Startup

2003-10-15 Thread Greg Dunn
It's org.apache.struts.action.ActionServlet -- not org.apache.struts.tiles.ActionServlet - Careful with those cuts and pastes. ;) Greg -Original Message- From: Srinivas Gunturu [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003

RE: IMPORTANT: how to tell

2003-10-15 Thread Raghu.Ramakrishnan
Brandon, I think the best thing for all of us to do is to vote to get Larry out of the struts list. Raghu -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 12:52 PM To: [EMAIL PROTECTED] Subject: Re: IMPORTANT: how to

RE: IMPORTANT: how to tell

2003-10-15 Thread Chen, Gin
The most stupid (note the grammer Larry ;) thing for a mammal to say is: Yes Dear.. That dress *does* make you look fat -Tim -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 1:52 PM To: [EMAIL PROTECTED] Subject: Re: IMPORTANT: how to

RE: html:checkbox Tag problem

2003-10-15 Thread Chen, Gin
Another way is to implement the reset method. This will allow you to initialize all your checkboxes to the unchecked value. -Tim -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 12:42 PM To: Struts Users Mailing List Subject: RE:

Re: IMPORTANT: how to tell

2003-10-15 Thread Jeff Kyser
A close second would be: 'Fatter than what, dear? -jeff On Wednesday, October 15, 2003, at 01:12 PM, Chen, Gin wrote: The most stupid (note the grammer Larry ;) thing for a mammal to say is: Yes Dear.. That dress *does* make you look fat -Tim -Original Message- From: Larry Meadors

Re: Struts 1.2

2003-10-15 Thread Indrajit Raychaudhuri
- Original Message - From: Erez Efrati [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, 15 October, 2003 23:25 Subject: Struts 1.2 snip ... Is there some sort of beta for 1.2? Is anyone working with it right now?

struts 1.1 and multiple applications

2003-10-15 Thread Scott Tiger
We have one struts application working on a weblogic server 5.1 service pack 13. I have put all the struts and apache libraries(struts.jar and commo**.jar, xerces.jar etc ) in the server class path. They are not in the web-inf/lib directory. I added another application which is similar to

RE: IMPORTANT: how to tell

2003-10-15 Thread Paananen, Tero
I think the best thing for all of us to do is to vote to get Larry out of the struts list. I want to assemble a review board to review this proposal. I nominate Raghu to head it. -TPP - do we need review board to review the proposals to establish review boards?

  1   2   >