Re: html:link along with logic:iterate

2003-05-30 Thread Doug
Alawadhi, Mona wrote: I've got this far in my code, but how can I specify which letter was selected after specifying my Action page? (it is Underlined) logic:iterate name=addressListFormBean id=choice property=letterOptions html:link page=/addressListAction.do?letter= ???

Re: Struts and the infamous IE multiple browser/same session problem

2003-05-30 Thread Doug
Michael Ruppin wrote: I'm reconsidering my approach to this problem, in favor of something more elegant/more compatible with out-of-the-box Struts. Anyone tackled this yet? For those not aware, MS IE allows users to launch a browser against the same session via File/New/Window (Ctrl-N). The

Re: Validator

2003-08-14 Thread Doug
On one of our machines that cannot get to the internet, the DTD references definitely cause validation to be ignored completely. I believe we can see errors during the web application's startup (or we probably wouldn't have found the problem.) We have to comment-out those DTD lines, or we get

Re: any known issues with WAS 4.0?

2003-10-03 Thread Doug
Hibbs, David wrote: In that case, the problem is likely that the Action servlet failed to load its struts-config.xml file. Under WAS, this is typically because it can't access the proper DTD (are you behind a firewall?). On WAS 4.0, if you keep a copy of the DTD under WEB-INF and alter the

Re: any known issues with WAS 4.0?

2003-10-03 Thread Doug
or app server and watch the stdout logs for Struts' startup messages. With your detail and debug parameters set the way your web.xml shows, you should get plenty of logging messages to give you some ideas what is failing on startup. Doug

Plugin destroy() method not being called?

2003-10-08 Thread Doug
? Restarting the Web Application does cause the init() method to be called, so we're re-allocating resources when we've never cleaned up the existing ones. Doug - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: Plugin destroy() method not being called?

2003-10-08 Thread Doug
Craig R. McClanahan wrote: Doug wrote: We've written a couple of custom PlugIns to enable us to execute some startup and shutdown logic for our application. However, under WebSphere 3.5, the destroy() method is never being called. Neither when I stop the Application Server (JVM) nor when I

Re: Off Topic: A suitable JVM could not be found

2003-10-21 Thread Doug
Martin Gainty wrote: Way off topic but I'm stumped Websphere 5 When attempting to do run any Java Process from Websphere I get A suitable JVM could not be found I know Websphere likes to install their own IBM JDK1.31 but I want to retain my SUN JDK 1.41 for obvious reasons Has anyone seen this

Re: Struts on WebSphere 3.5

2003-10-23 Thread Doug
also have to be set up in WAS' Tag Libraries configuration section as there is no web.xml in WAS 3.5. Good luck. Doug - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Sturts

2003-11-14 Thread Doug
Gurpreet Dhanoa wrote: HI is there any way to call a action within an JSP file without using Submit button and any other html:form element I want to call a action with in a logic:iterate which is further containing one more logic:iterate html:link ? Or is that still not what you're looking

Re: DB2 Pooled connection from Struts

2003-11-14 Thread Doug
capabilities (like a Type 4 JDBC driver), so there may be a slightly different answer if you are on that version. Good luck, and please reply back here if you get it working. Doug Eric SCHULTZ wrote: Good morning... I'm having an impossible time getting a pool of connections to a DB2 database going

html:options where values have embedded quotes

2004-03-23 Thread Doug
still isn't being set when the page is reloaded. IIRC, the tag is just leaving the quotes inside the attribute value, which outputs invalid HTML. Am I missing something? Is there a better way to do this? Thanks. Doug

Re: html:options where values have embedded quotes

2004-03-24 Thread Doug
Anyone? Doug wrote: We have some customer-supplied selection options that have double quotes in their values, and Struts 1.1 isn't seeming to handle this correctly. Best I can tell from the HTML spec, these should be placed on the page as quot; , which will submit them as %22 , which *should

delay user input validate....

2002-11-24 Thread Doug Dates
help. Thank you in advance for your help. Sincerely, Doug

Re: Iplanet+tomcat+struts

2003-02-27 Thread Doug Bryant
atleast get you started. http://edocs.bea.com/wls/docs61/adminguide/nsapi.html Doug On Thu, 2003-02-27 at 04:13, Dinesh Samson J wrote: Greetings May be this is not a right place to post this message, but I couldn't get proper documentation for it. I need to configure iplanet web server 4.1

A good nightly build to start developing against

2002-07-16 Thread Bryant, Doug
this functionality. Thanks, Doug -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Action.ERROR_KEY problem

2001-09-05 Thread Doug Smith
? Or, is there some other way to do this that I'm missing? Thanks, Doug

Re: Mainatinig Select list state

2001-09-06 Thread Doug Smith
() JavaScript method to select all of the options in both select boxes. Then, all elements of the select boxes will be sent to the server, and should be maintained by Struts. This would be simpler than the earlier suggestion, but, it won't work if you don't want to set multiple=true. Good luck, Doug

Re: AW: Struts vs. JADE (from IBM) - feature and usability comparison- need help!

2001-09-07 Thread Doug Smith
Also, Struts is bundled with WAS 4.0 and used to build their web-based admin tools. I'd say that's quite an endorsement from Big Blue. Doug D. Veniseleas

RE: struts-config.xml-Is there a tool to find errors in it?

2001-12-19 Thread Bryant, Doug
/ hope this helps. Doug -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 19, 2001 2:14 AM To: Struts Users Mailing List Subject: struts-config.xml-Is there a tool to find errors in it? Hi I have an error with my struts-config.xml file and I

RE: upload fails

2002-01-09 Thread Bryant, Doug
make sure your form tag sets the encoding type to multi-part html:form action=/saveReferences.do enctype=multipart/form-data Hope this helps. Doug -Original Message- From: SCHACHTER,MICHAEL (HP-NewJersey,ex2) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 09, 2002 10:58 AM

RE: out-of-memory exp

2003-06-04 Thread Doug Bryant
after a couple of minutes of running on a redeployed app. Doug On Tue, 2003-06-03 at 10:26, Nail, Evan Burke wrote: nagi, Besides the previously mentioned errors, I sometimes get this error when I'm working in my development environment and I have changed a class and not restarted my server

validator: how to validate if either of two fields is present andvalid

2003-06-05 Thread Doug Bryant
org.apache.struts.validator.DynaValidatorForm, overriding the validate method, validating everything we can using validator and coding the rest, but it seems far from ideal. Does anyone have any suggestions or has anyone ever run across this type of problems before. Thanks for any suggestions. Doug

RE: validator: how to validate if either of two fields is presentandvalid

2003-06-05 Thread Doug Bryant
Perfect! Thanks James. That's exactly what I was looking for. Doug On Wed, 2003-06-04 at 14:16, James Turner wrote: Check out the requiredif validation. It's even in the newbie FAQ now. James -Original Message- From: Doug Bryant [mailto:[EMAIL PROTECTED] Sent: Wednesday

Re: struts based help system?

2003-06-09 Thread Doug Bryant
be a database lookup, xml file, etc. Hope this helps. Doug On Mon, 2003-06-09 at 10:05, Ittay Dror wrote: Hello, Does anybody know of a struts based help system? If not, any other server-side (meaning the pages are rendered on request) help system framework? Thank you, Ittay

On failed validation, trouble with form

2003-06-09 Thread Doug Padian
work. At first I was getting errors saying it couldn't find the invalidUser method. Then I changed the inputForward attribute of the controller tag to true. I don't get the errors now, but just a blank page. I'm a little clueless. Any ideas out there? -Doug Padian

Re: How to redirect to http://www.cnn.com from Struts Action?

2003-06-13 Thread Doug Bryant
I believe this will work declare this forward as a global or local forward forward name=cnn path=http://www.cnn.com; redirect=true/ from an action do: return mapping.findForward(cnn) or from a jsp call logic:forward name=cnn/ (has to be global for jsp one to work. Hope this helps. Doug

Multipart request losing parameters when forwarded

2003-06-17 Thread Doug Padian
on how to handle this? I am using Struts 1.1 release candicate 1. Thanks!! -Doug Padian

Struts and session

2002-12-16 Thread Doug Ogateter
(with the information, I know where I should forward the user to)? I searched the archive. However, it seems that I can't find the specific info. Your help is highly appreicated. Doug

Struts and session

2002-12-17 Thread Doug Ogateter
. However, it seems that I can't find the specific info. Your help is highly appreicated. Doug - Post your free ad now! Yahoo! Canada Personals

Re: Struts and session

2002-12-17 Thread Doug Ogateter
Justin: Thank you for reply. That's a good idea. One more question, can filter works with struts? Doug Justin Ashworth [EMAIL PROTECTED] wrote:Hi Doug, We use a javax.servlet.Filter to check for an expired session. I found this idea on some website or in the Struts-User archives and it makes

date format

2002-12-18 Thread Doug Ogateter
? Is it the formatKey problem? Thank you very much. Regards, Doug - Post your free ad now! Yahoo! Canada Personals

RE: date format

2002-12-18 Thread Doug Ogateter
James: It WORKS! IT'S AMAZING! THANK YOU VERY MUCH! BEST REGARDS, Doug James Childers [EMAIL PROTECTED] wrote:Try customer.day.format=dd/MM/ mm = minutes in hour MM = months -= J -Original Message- From: Doug Ogateter [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 18

reset doesn't work well

2002-12-20 Thread Doug Ogateter
out? Thanks. Doug - Post your free ad now! Yahoo! Canada Personals

RE: reset doesn't work well

2002-12-20 Thread Doug Ogateter
as it will not confuse the user about what the Reset button does. -Original Message- From: Doug Ogateter [mailto:[EMAIL PROTECTED]] Sent: Friday, December 20, 2002 3:38 PM To: Struts Users Mailing List Subject: reset doesn't work well Hi: I have a problem with reset button. In my jsp file, I have

RE: Chart products

2003-01-07 Thread Doug Ogateter
Matt: Thank you for your reply. I had a look at Rchart, it seems very good to use. Did you use Rchart as Applet or use it as Servlet? It there some technical issues related to it? Thank you. Regards, Cathy Matt Smith [EMAIL PROTECTED] wrote:you might want to look at rchart. I use it for the

RE: Chart products

2003-01-07 Thread Doug Ogateter
Matt: Thank you for your reply. I had a look at Rchart, it seems very good to use. Did you use Rchart as Applet or use it as Servlet? It there some technical issues related to it? Thank you. Regards, Cathy Matt Smith [EMAIL PROTECTED] wrote:you might want to look at rchart. I use it for the

RE: Chart products

2003-01-07 Thread Doug Ogateter
Matt: Thank you for your reply. I had a look at Rchart, it seems very good to use. Did you use Rchart as Applet or use it as Servlet? It there some technical issues related to it? Thank you. Regards, Cathy Matt Smith [EMAIL PROTECTED] wrote:you might want to look at rchart. I use it for the

Looking for Struts Training Materials

2003-01-14 Thread Doug Bateman
from scratch takes about a month, but I'd be willing to pool and share course resources, or license a course. If anyone knows of any vendors who might be interested in such an arrangement, please e-mail me and let me know. Thanks, Doug -- Great contest follows, and much learned dust Involves

Russian I18n problems

2003-01-22 Thread Chalmers, Doug
. Getting both working but not together is a bit maddening as you can imagine! Software used: Weblogic 5.1 Struts 1.0.2 JDK1.2 / EE1.2.1 IE 5 - submits charset Cp1251 Thanks, Doug Chalmers Software Developer Petrotechnics Ltd. Tel. +44 (0) 1224 337236 www.petrotechnics.co.uk/index.htm

RE: Russian I18n problems

2003-01-23 Thread Chalmers, Doug
Solved this now. The resources file needed to be converted to UTF-8 and THEN converted using native2ascii. No UTF settings needed at all. Cheers, Doug -Original Message- From: Chalmers, Doug Sent: 22 ?? 2003 ?. 10:24 To: Struts User Subject: Russian I18n problems Hi all, I have

Question about localization

2000-12-01 Thread Doug Ahmann
and the Model 2 architecture. What is the "best practice" or the "correct" Java/Struts way of accomplishing this? Is there a way to use the same JSP pages, or is it best to have multiple contexts (/en/, /fr/, etc)? Thanks, Doug ---

Question about errors tag

2000-12-05 Thread Doug Ahmann
that session context should be used for the errors tag for cases just like this, although that causes problems as well. The problem will be, when does it get removed from the session? Is there another way to accomplish the same thing, without tacking the error on to the redirect URL? Thanks, Doug

Re: Weblogic 510 struts

2000-12-27 Thread Doug Bateman
I guess your want to run the struts example application ... Please see the message "Re: Null Pointer Exception in Struts 0.5 example" by Alain Bienvenue. The basic problem is, that WLS 510 does not honor the "load-on-startup" attribute. This means that ActionServlet will not be properly

RE: Weblogic 510 struts

2000-12-27 Thread Doug Bateman
calling the .do directly worked. Grr .. just a tad bit frustrating. What did you do exactly? This sounds like a nice and really simple work around. -- He who pursues learning will increase every day; He who pursues The Eternal will decrease every day. He will decrease and continue to

RE: Weblogic 510 struts

2000-12-27 Thread Doug Bateman
WebAppServletContext-prototype Servlet failed with Exception java.lang.NoClassDefFoundError: org/apache/struts/util/PropertyUtils at com.elogex.web.taglib.logic.NullPropertyCheck.doStartTag(NullPropertyChe ck.java:103) -Original Message- From: Doug Bateman [mailto:[EMAIL PROTECTED

using struts in a load-balanced environement

2001-03-28 Thread Doug Wright
I am very curious about whether the struts framework could be applied in a 'load-balanced' or 'webserver-farm' environment. One of the main requirements of the application I am currently working on is that it function properly in such a distributed or load-balanced environment where each

RE: using struts in a load-balanced environement

2001-03-30 Thread Doug Wright
thanks for all your great advice! -Original Message- From: Doug Wright [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 28, 2001 4:50 PM To: [EMAIL PROTECTED] Subject: using struts in a load-balanced environement I am very curious about whether the struts framework could

RE: Struts and multiple Web applications on same application server

2002-01-22 Thread Bryant, Doug
We have run into this problem running jdk 1.4 rc3. When we switch to 1.3, the problem goes away Hope this helps. Doug -Original Message- From: Dustin Aleksiuk [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 22, 2002 10:40 AM To: Struts Users Mailing List Subject: Re: Struts

RE: if tag

2002-02-12 Thread Bryant, Doug
We just put a nbsp; after what would have printed out. It's just one extra character and guarantees us that we will get something even if the method does not return anything Doug -Original Message- From: Mattos, John [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 12, 2002 1:14 PM

enable/disable multibox help

2002-05-10 Thread Doug Mclellan
in the right direction. Thanks. Doug -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Using onclick within iterate tag

2002-05-13 Thread Doug Mclellan
. Doug -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Using onclick within iterate tag

2002-05-13 Thread Doug Mclellan
within the iterate tag. Thanks again. Doug -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: 13 May 2002 16:10 To: Struts Users Mailing List Subject: RE: Using onclick within iterate tag try this... html:checkbox property=checkBox1 onclick=JavaScript:handleCheckbox

RE: Using onclick within iterate tag

2002-05-13 Thread Doug Mclellan
Sorry, I meant the position within the iterator. Within the JSP there is two checkbox tags for each iteration and I need to only enable the second checkbox if the first has been checked. Doug -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: 13 May 2002 16:53

RE: Using onclick within iterate tag

2002-05-13 Thread Doug Mclellan
of the returned contacts to a supervisor and if so enable the other checkbox to lock the contact's account. So I need the checkbox tags to be within the iterate tag. Thanks again James for taken time out to answer my question, its much appreciated. Doug -Original Message- From: James

RE: Using onclick within iterate tag

2002-05-13 Thread Doug Mclellan
Hi Adam, You are right, I do have 2 checkbox tags per iteration. Sorry for the confusion. Doug -Original Message- From: Adam Hardy [mailto:[EMAIL PROTECTED]] Sent: 13 May 2002 17:35 To: Struts Users Mailing List Subject: Re: Using onclick within iterate tag I think Doug means he has

RE: Using onclick within iterate tag

2002-05-13 Thread Doug Mclellan
You have hit the nail on the head. Doug -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: 13 May 2002 17:42 To: Struts Users Mailing List Subject: RE: Using onclick within iterate tag Ok, so you want to disable the second box (by default) and then if the user

RE: Using onclick within iterate tag

2002-05-13 Thread Doug Mclellan
properties. I am trying to gather a bit of working code for you. I should be finished shortly. In the meantime, take a look at using indexed properties. Also, are you using the DynaActionForm??? JM -Original Message- From: Doug Mclellan [mailto:[EMAIL PROTECTED]] Sent: Monday

Using onclick within iterate tag - Thanks

2002-05-14 Thread Doug Mclellan
Hi Les, Thanks for helping out with your example. It looks good, I will try it out later. Doug -Original Message- From: Wilson, Les J SI-FSIA [mailto:[EMAIL PROTECTED]] Sent: 14 May 2002 10:43 To: 'Struts Users Mailing List' Subject: RE: Using onclick within iterate tag

Re: Problems with file upload - Urgent Please

2002-09-04 Thread Doug Bryant
We had the same problem running a nightly struts build. We upgraded to 1.1 beta 2 and the problem disappeared. It appeared to be a problem specifying the form as multi-part. Doug On Wed, 2002-09-04 at 15:58, Venkateswaran Muthuswamy wrote: Hi, I am working in a project using struts

Status of Validator not validating sub-applications bug (#10348)

2002-09-12 Thread Doug Bryant
is in place or a fix will not be in place any time soon, could you suggest workaround for the bug or a place to start looking at the source. I should mention that we are using dynaforms so there is not validate method on the action to override. Thanks very much in advance. Doug

Help using Validator running under sub-application

2002-09-13 Thread Bryant, Doug
(not at the same time) with no luck. Below is how my actions are setup. Thanks very much for any feedback. Thanks, Doug !-- action that we forward to to populate page data -- action path=/editEtoRfq type=org.scra.emall.web.eto.actions.EditEtoRfqAction scope=request name=etoRfqForm

logic:iterate related issue

2002-09-17 Thread Doug Dates
understanding correct? Thank you for your help. Doug

html:options

2002-09-29 Thread Doug Dates
=%= myArrayList % property=value labelProperty=label/ /html:select where should I set myArrayList? in init method of my servlet class, or in my action form bean, or somewhere else? I am not quite understand it. Could some one please help me? Thank you Doug

How do I forward/redirect to a dynamic url with parameters

2002-09-30 Thread Doug Bryant
dynamically creating an ActionForward and setting its parameters, but it just blows up with an exception. I have also tried forwarding to a redirector servlet on our system, but have had no success with that either. Is there a proper struts way to do this. Thanks, Doug -- To unsubscribe, e-mail

Can't retrieve definition for form null

2002-10-02 Thread Doug Dates
you for your help. Regards, Doug __ Post your free ad now! http://personals.yahoo.ca -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Can't retrieve definition for form null

2002-10-02 Thread Doug Dates
not defined under that name in the struts-config file, or you are trying to call the form with a null value. Is this happening when in your html:form tag. What does your html:form tag look like? regards Steve - Original Message - From: Doug Dates [EMAIL PROTECTED] To: Struts

Re: Can't retrieve definition for form null

2002-10-02 Thread Doug Dates
. Is this happening when in your html:form tag. What does your html:form tag look like? regards Steve - Original Message - From: Doug Dates [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, October 03, 2002 10:51 AM Subject: Can't retrieve definition

html:errors - how do you make a bulleted error list

2002-10-09 Thread Doug Bryant
points. However, it's not displaying what I defined there. Does this feature work? What am I doing wrong? Below is what I have defined in my application.properties. The errors.header and errors.footer show up properly. We are using 1.1 beta 2 struts release. Thanks for any help. Doug

Re: html:errors - how do you make a bulleted error list

2002-10-10 Thread Doug Bryant
My error messages do show up. They show up as one long string. For instance, they would show up like Text of error1. Text of error2. Text of error3 I would like to get this resolved without putting li tags around the messages themselves. thanks, Doug On Wed, 2002-10-09 at 17:37, David

StrutsTestCase using weblogic 8.1

2003-08-04 Thread Chalmers, Doug
to the application but that didn't make any difference. Anyone seen this problem before? Weblogic 8.1 Struts 1.0/1.1 Cactus 1.4 StrutsTestCase - tried various versions for 1.0 and 1.1 of struts. All 2.3 Servlet. Cheers, Doug Chalmers Software Development Petrotechnics Ltd

RE: StrutsTestCase using weblogic 8.1

2003-08-14 Thread Chalmers, Doug
. The classpath issue is preventing me from getting any further with the in-container method. Thanks, Doug -Original Message- From: Sachin [mailto:[EMAIL PROTECTED] Sent: 06 August 2003 13:14 To: Chalmers, Doug Cc: Struts Users Mailing List (E-mail) Subject: RE: StrutsTestCase using weblogic 8.1

Populating a DynaActionForm with a complex object graph

2004-01-31 Thread Doug Dixon
Hi I'm trying to populate a DynaActionForm dynamically, using this how-to as a starting point: http://www.developer.com/java/other/article.php/2233591 Because the number of elements in my form can vary at runtime, I take the advice near the bottom of the article: You can even dynamically

RE: Populating a DynaActionForm with a complex object graph

2004-02-03 Thread Doug Dixon
? (Or are there any plans to provide this functionality in future releases?) Thanks Doug -Original Message- From: Doug Dixon [mailto:[EMAIL PROTECTED] Sent: 31 January 2004 11:50 To: '[EMAIL PROTECTED]' Subject: Populating a DynaActionForm with a complex object graph Hi I'm trying to populate

RE: Antwort: RE: Running and debugging with Oracle JDeveloper

2001-02-12 Thread Park, Doug N
it was in the JBuilder project, it was not copied to the output folder. Under Tomcat this file is copied automatically. Doug Park -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, February 05, 2001 3:55 AM To: [EMAIL PROTECTED] Subject: Antwort: RE: Running