application configuration suggestions

2003-03-09 Thread Rob
of files on the disk. Rob

struts-config.xml parse errors (can't find source)

2003-03-11 Thread Rob
I'm just throwing together a demo application to refresh myself w/ struts but have run into a problem where the struts-config.xml is resulting in parsing errors, problem is I can't figure out where the error is. If someone could point it out I would appreciate it. ?xml version=1.0

Re: strtus-tag lib error with tomcat4.0.b5

2002-06-10 Thread Rob
It compiled for me under Tomcat 4.04 Beta 2 I did remove the %@ taglib uri=/WEB-INF/struts-form.tld prefix=form % Since I am using struts 1.1 and struts-form (pre version 1.0) was replaced by struts-html since March 2001. If possible upgrade to a newer version of Tomcat. -Rob Heligon

adding / creating new collection elements in a form

2003-06-06 Thread Rob
! Rob - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: adding / creating new collection elements in a form

2003-06-07 Thread Rob
aware of nested/logic tags but if they are the way I can't see how. Suggestions would be appreciated, Thanks! Rob - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: adding / creating new collection elements in a form

2003-06-08 Thread Rob
. Rob Dan Tran wrote: I just implemented myself, so let me throw a shot at this. In my case, I make my action derived from LookupDispatchAction which can handle multiple button submission handlers. One of the button is called something like addRow. When you hit this addRow button, struts

Re: Struts doesn't execute my ActionForm.

2003-06-08 Thread Rob
Thomas Miskiewicz wrote: Hi! I have a small HTML-Form with 3 textfields. I've implemented the validation rules in the validate() method of the ActionForm belonging to the html form. Unfortunately Struts isn't using the ActionForm. Why? Here my struts-config.xml ?xml version=1.0

multiple request / query parameters in struts-config.xml

2003-06-13 Thread Rob
I have the following arrangement for some of my forwards. forward name=foo path=/do/foo?bar=10/ Now it's come time where I want to have more than one parameter specified in the struts-config.xml file. I tried: forward name=foo path=/do/foo?bar=10ampid=10/ However the second parameter ends up

Re: multiple request / query parameters in struts-config.xml

2003-06-13 Thread Rob
Thanks, I knew that I just can't believe I forgot it. Andrew Hill wrote: forward name=foo path=/do/foo?bar=10amp;id=10/ Note the ';' in the above. (proper xml terminates its entities with ; while html doesnt need it) -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: Friday, 13

Re: multiple request / query parameters in struts-config.xml

2003-06-13 Thread Rob
doesnt need it) -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: Friday, 13 June 2003 14:23 To: Struts Users Mailing List Subject: multiple request / query parameters in struts-config.xml I have the following arrangement for some of my forwards. forward name=foo path=/do/foo?bar=10

executing statements on subsets of actions without code duplication

2003-06-13 Thread Rob
I have a set of statements I would like executed every time an action is executed. I would also like to only have to code these set of statements once and have them transparently executed for all actions (except for a small subset). Is there a facility in struts for doing this? Is there an

Re: executing statements on subsets of actions without code duplication

2003-06-14 Thread Rob
Rob Leland wrote: Rob wrote: I have a set of statements I would like executed every time an action is executed. I would also like to only have to code these set of statements once and have them transparently executed for all actions (except for a small subset). When we were using a Servlet

Re: a jsp question:how to get the web application's directory?

2003-06-14 Thread Rob
I prefer html:base/ for this. lcl wrote: Hi all, I just have a question about jsp/servlet, how to gain the directory in the file system of a web application? because I want to create a file under the web application, and redirect it to user. Best Regards lcl

Re: DispatchAction?

2003-06-19 Thread Rob
Bjorn T Johansen wrote: I am starting to use DispatchAction instead of some of my actions to simplify CRUD operations, but I have a question. How do I integrate which method to call in a html:form tag? I.e. if I could write http://localhost/app/order?method=create then it wouldn't be a problem,

dynamically generated form pages beans

2002-01-31 Thread rob
the regular html tags to accommodate the dynamic form? Any help appreciated, Thanks rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

global forwards (Struts Catalog)

2002-02-03 Thread rob
forward name view. example where n is generated from some set (not using global forward): a href=/do/view?item=nitem n/a obviously this is the kind of link we're trying to avoid cause it's hard coded to /do/view So how do I generate a link that will follow / use the Global Forward? Thanks rob

Re: global forwards (Struts Catalog)

2002-02-03 Thread rob
it? Thanks for the quick reply before I appreciate it rob - Original Message - From: Ted Husted [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, February 04, 2002 3:14 PM Subject: Re: global forwards (Struts Catalog) forward name=view path=/do/view

Design advice.

2002-02-04 Thread rob
operations view, creation, modification and removal. I was just wondering if anyone could offer some comments that might be helpful in developing the model I am trying to build. Or by all means any other design advice is good as well. Thanks rob form-beans form-bean name=viewFolder

nesting struts tags

2002-02-06 Thread rob
together is not possible a solution with scriptlets is alright. Thanks rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

ActionForm:reset() method

2002-02-06 Thread rob
Under what circumstances is the reset() method of an ActionForm called on the struts programmers behalf without them (the struts programmer) explicitly calling reset() in their own code? I can't quite figure out when it's being called for me and it's irritating the hell out of me :) Thanks rob

ActionForward usage.

2002-02-07 Thread rob
Regarding a post Ted made a couple of days ago. (Which a copy of follows this post) As well as some other general questions. I would like to pre-populate my form field values from a database datasource. I am using the following configuration which to be honest is giving me a bit of a headache

Re: Nathan Smith/Corporate/FSC is out of the office.

2002-02-19 Thread rob
I'm not particularly offended by this happening but I do agree that it is bad etiquitte to have automatic replys about people being in or out of their office as a result of messages received from a mail list. Perhaps Mr. Smith should invest in a second mail account from which he can sign up to

multiple forms on one page and population

2002-02-21 Thread rob
I have a view page that contains two forms each form has to be populated with dynamic data and each of the forms ideally would be processed by different actions when they are submitted. page with two forms. html:form action=foo html:select property=item html:options property=items

taglibs documentation (whered it go)?

2002-02-21 Thread rob
Where did the taglibs documentation go on the struts page? Used to be accessed via the taglibs link under Stable Release. The javadoc is less indicitive of how the tags work. Thanks Rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

Re: ActionForm and default values

2002-02-21 Thread rob
- Original Message - From: Corey Klaasmeyer [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Thursday, February 21, 2002 4:09 AM Subject: RE: ActionForm and default values This is probably a common question, which should have a corresponding FAQ 'How do I

forwarding multi-part requests

2002-02-21 Thread rob
to be the way it works in struts? I would like to be able to forward multipart requests as many times as necessary. Is this sighted for change in future releases? Is there a way around it that doesn't involve placing a jsp in the middle? Thanks Rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

struts tags in jsp:included ~ pages

2002-03-05 Thread rob
.. in it) but if I cut and paste this code into the foo.jsp page it works perfectly fine. Any suggestions Thanks Rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Do ALL html:form's actions need a form bean?

2002-03-19 Thread rob
- Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 20, 2002 2:22 AM Subject: Do ALL html:form's actions need a form bean? Hi, I have just a simple form that I have included purely because there are two buttons that the user can press - Confirm

Re: Strange PDF download behavior

2002-03-19 Thread rob
This browser doesn't have one of those lame download manager plugins installed into it by any chance? I experienced a problem similar to this on a machine that had a real audio download manager a few days ago. - Original Message - From: Struts Newsgroup @[EMAIL PROTECTED] To: [EMAIL

Re: Do ALL html:form's actions need a form bean?

2002-03-19 Thread rob
My apologies this is a followup to my previous reply. I misread the second portion. Yes, if you wish to use form based input type=xxx you must have a form. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 20, 2002 2:22 AM Subject: Do ALL

Re: Accessing ActionForm...

2002-03-19 Thread rob
I have occasionally dealt with this by using the regular jsp:getProperty id=foo name=getter though there is probably a better way to do it using struts. - Original Message - From: Marcelo Caldas [EMAIL PROTECTED] To: Struts Mailing List [EMAIL PROTECTED] Sent: Wednesday, March 20, 2002

Re: Struts w/Tomcat, I know this is a dumb question but

2002-03-19 Thread rob
Yes, it does. - Original Message - From: [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, March 20, 2002 4:49 AM Subject: Struts w/Tomcat, I know this is a dumb question but I am getting a new computer in 2 weeks for home use. I plan to develop an

Re: How to take object from the Action to jsp

2002-04-15 Thread rob
.jsp pages have access to the a reference named application from which you can gain access to objects stored in your servlet context. I believe you should use the following method to access context scoped objects within your jsp pages. You can extract the reference to your treemodel with the

struts-nested.tld - where's it from?

2002-04-16 Thread rob
I recently came across an application that required struts-nested.tld. I'm currently using struts 1.0.2 is this tld from a newer version of struts? Or from a proprietary package maybe? Thanks Rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto

/do/ being prepended to paths inside logic tags

2002-04-16 Thread rob
the following is being requested. /context/do/images/foo.jpg As a result the images aren't loaded on my pages. So i modified the img tag path to compensate. img src=../images/foo.jpg This works but it's kind of dirty, is there a way around this? Thanks. Rob -- To unsubscribe, e-mail

html:errors how to confirm the errors are there?

2002-04-16 Thread rob
and Y are extend Action. P - X - Y (error entered) (params changed) - X - Y - P (display errors) No other point are errors saved into the request, all is processed over one request. Any suggestions? Thanks Rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands

html:errors / ActionErrors bug.

2002-04-16 Thread rob
It would appear that you can not maintain saved errors in the http request across a forward to an action before displaying it on a .jsp page. The following diagram helps to illustrate: X - action 1 Y - action 2 J - view (jsp page) X - Y - J If an ActionErrors instance is created, an

Re: html:errors / ActionErrors bug. (Robert Taylor)

2002-04-16 Thread rob
using struts 1.01). Rob Robert Taylor wrote: I don't have a direct answer for you Rob, but what we did was to create a custom tag that looks for errors in all scopes. Once it is rendered, then it removes it from all scopes. This allows me to propogate error from page X to page J by placing

Re: Struts Doc for Web Designers

2002-04-16 Thread rob
I believe the only tag related documentation is here. http://jakarta.apache.org/struts/userGuide/index.html under the heading 'Tag Lib Documentation' though this is likely not what your looking for. Rob McAfee, Tom wrote: Does anyone have Struts documentation designed for those who would

Re: html:errors / ActionErrors bug.

2002-04-16 Thread rob
are effecting the request after the initial errors are added and it all happens in a single request. Sandeep Takhar wrote: I am wondering if you can set validate=false on the second mapping (Y)? maybe because it is going through validation again? sandeep --- rob [EMAIL PROTECTED] wrote

Re: How to get ActionForward for input ?

2002-04-16 Thread rob
From your perform() method return new ActionForward(mapping.getInput()); Providing you defined the input=foo.jsp attribute in your action ... / in struts-config.xml. Nicolas De Loof wrote: In an action, how to forward the user to the input page ? ActionMapping.findForward(input) doesn't

more relative path link headaches! (help)

2002-04-16 Thread rob
like such as: /context/WEB-INF/pages/ns.css - This is no good either. Because the servlet container doesn't allow gets from above WEB-INF. So I'm not the first to suffer from this, whats the solution? Thanks Rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e

Re: Struts example - redundant login checking?

2002-04-18 Thread rob
not difficult to do and it increases the security of the application. Rob We're trying to avoid this with a Filter that does not allow users to directly request JSPs at all (i.e. all our links always go to actions and those internally forward to JSPs after they're done). This way we only need

Re: ActionForward to another Action bean

2002-04-21 Thread rob
I don't typically use *.do however. Struts Newsgroup (@Basebeans.com) wrote: Subject: ActionForward to another Action bean From: Harsh [EMAIL PROTECTED] === In Struts:Fast Track book, chapter 7 has explained how to pass data from one action bean to another. I am trying same thing except

RE: Difference between form tags and html tags

2002-05-30 Thread Rob
Use struts-html The struts-form was used before version 1.0. -Rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

struts 1.0.2 logging - destination fd

2002-09-11 Thread rob
in web.xml. My apologies for the simple question, perhaps it's simplicity indicates that it should be on one of the various FAQ's. Thanks Rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: No action instance for path /action could not be created. (solved)

2002-09-11 Thread rob
The reason it was biting me was because the struts.jar was in the CLASSPATH of the user who was starting the servlet container. Better explanation here. So not obvious. http://w6.metronet.com/~wjm/tomcat/2001/Feb/msg00096.html rob wrote: This seems to be a fairly common problem and I have

Re: Another question

2002-09-11 Thread rob
If you keep your pages above WEB-INF/ it's necessary infact. I have one page ctxtroot/index.jsp that does nothing but forward the request to ctxtroot/WEB-INF/pages/login.jsp. Rob Eddie Bush wrote: accepted? I think it's probably a best practice. That's the impression I get. You can

Re: Dynamic number of form fields

2002-09-11 Thread rob
There was a good tutorial on this possibly linked from the struts page titled Monkey Struts. I found it to be quite good, very easy to follow. David Graham wrote: I want to have a form with a variable number of input boxes. For example, a simple edit person form that has a first name and

url parameters not being copied to form bean

2002-09-25 Thread rob
somewhere but can anyone suggest what exactly? I've successfully done this in other applications and this is the first time it's not worked. Thanks Rob I have a little something like the following to write my link. html:form action=foo nested:iterate parameter=items nested:link forward

difficult problem, preventing population

2003-07-15 Thread Rob
this results in an IndexOutOfBoundsException. Is there any way to examine the transaction token from the form prior to the form bean being populated and then avoid population of the form bean if the token is not valid? Help with this problem would be greatly appreciated. Rob

Re: difficult problem, preventing population

2003-07-16 Thread Rob
is not valid? Help with this problem would be greatly appreciated. Rob - To unsubscribe, e-mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED

dificult problem, preventing population (repost)

2003-07-16 Thread Rob
this results in an IndexOutOfBoundsException. Is there any way to examine the transaction token from the form prior to the form bean being populated and then avoid population of the form bean if the token is not valid? Help with this problem would be greatly appreciated. Rob

May 9th Struts.jar Problem

2001-05-09 Thread Leland, Rob
Switching from a May 2nd build of struts to a May 9th build of struts gives the error below. Switching back to the May 2nd jar fixes the error. When switching I am also updating the tld files. Internal Servlet Error: javax.servlet.ServletException at

Re: java report article says bye-bye struts

2001-06-18 Thread Leland, Rob
Ritter, Steve wrote: Craig, if you read this thread it might not be a bad idea to send a quick email to the editor's of Java Report and let them know about some of the mis-leading statements. Maybe you could also share with the editor what you view as mis-leading statements ? -Rob Robert

Re: Struts taglibs without Struts

2002-10-16 Thread Rob Leland
was yes. I am sure struts 1.0 tags will work outside of struts. However, in 1.1 the ApplicationConfig objects were added for application modules, and so there will probably be cases where they won't work. Now that the JSTL is out, use those tags first. -Rob -- To unsubscribe, e-mail: mailto

Re: anyone seen this startup error?

2002-10-16 Thread Rob Leland
Vincent Stoessel wrote: Oct 16, 2002 2:53:00 PM org.apache.struts.validator.ValidatorPlugIn init SEVERE: null java.util.ConcurrentModificationException at This was fixed last Friday Oct 11, so download the latest nightly build, which also has other Validator fixes. -Rob

Re: {Validator] Required Fields

2002-10-21 Thread Rob Leland
://nagoya.apache.org/bugzilla/show_bug.cgi?id=13526 However there will need to be some changes to the basic validator-rules.xml. -Rob -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org

Re: {Validator] Required Fields

2002-10-21 Thread Rob Leland
Rob Leland wrote: Jerry Jalenak wrote: Has Validator changed in its use of 'required'? I pulled down the 20021008 build a couple of weeks ago, and found that Validator is now 'requiring' all of my form fields even when I don't specify the required parameter. Looking a little further

Re: Validator and required dependency

2002-10-22 Thread Rob Leland
at using the Validator so right now what I say needs to be 'taken with a grain of salt', evaluated by considering my experience. -Rob -Original Message- From: James Turner [mailto:turner;blackbear.com] Sent: Tuesday, October 22, 2002 12:24 PM To: [EMAIL PROTECTED] Subject: Validator

Re: [Validator] StrutsValidatorUtil.getActionError

2002-10-24 Thread Rob Leland
a look at your struts-documentation web app. It Just wasn't updated on the Jakarta Web Site. It was renamed o.a.s.validator.Resources.getActionError() -Rob -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user-help

Re: Struts validator for date field

2002-10-24 Thread Rob Leland
Down load the Nightly build for Oct 25, it should now work. The patch that James Turner Championed was comitted, to remove the depends=required attribute form the validator-rules.xml -Rob -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e

Re: error checking in Action

2002-10-28 Thread Rob Leland
to that,Any complex validation would take place in the Business Logic, with the Action being the go between loading and unloading the ActionForm and calling validation methods in the Business Logic. -Rob -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional

Re: Doc changes and 1.1

2002-10-30 Thread Rob Leland
' is the recommended may to contribute! -Rob -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org

Re: problem using the 1.1b2 validator dependency feature

2002-11-02 Thread Rob Leland
javascript = va.getJavascript(); I would try the nightly build. The validator code has had about 6 bugs fixed sinse B2. -Rob -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org

Re: problem using the 1.1b2 validator dependency feature

2002-11-02 Thread Rob Leland
Eric Weidner wrote: Yes, this is truly 1.1b2 and that is the line that failed. I figured the requiredif was in there since the documentation mentioned it as a feature in 1.1. When downloading a struts version always refer to the version of the docs that come with that download. The docs on

Re: org.apache.struts.validator.FieldChecks missing?

2002-11-05 Thread Rob Leland
Wendy Smoak wrote: I have last night's (10/5) nightly build, and when I call myValidatorForm.validate( mapping, request), I get this: SEVERE: reflection: org.apache.struts.validator.FieldChecks java.lang.ClassNotFoundException: org.apache.struts.validator.FieldChecks This seems like an

[REMINDER] --- Struts Nightly and 1.1B1 1.1B2 users

2002-11-06 Thread Rob Leland
the bug fixes and a few new features added. The more people we have banging on the Nightly builds, and submitting reproducible Bugzilla reports, the higher quality release we can give you. Also remember to update all your .tld and .xml files. Thank you for taking the time to upgrade ! -Rob

Re: [REMINDER] --- Struts Nightly and 1.1B1 1.1B2 users

2002-11-07 Thread Rob Leland
James Mitchell wrote: The only tests that are failing are in Tomcat 3.2 (but I'm hot the trail) Up to this point the 'folk lore' was that it was a bug in TC 3.2. So you think it might be in Struts/Commons code, or possible to work around it ? Give the Man a Cigar !!! -Rob

Re: Validate and nightly build problem

2002-11-08 Thread Rob Leland
builds ? -Rob -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org

Re: Validate and nightly build problem

2002-11-08 Thread Rob Leland
need to add `required' so for an integer field depends=required,integer would then cause an error message to be displayed when the submit button is pressed. -Rob Infact, the same happens when populating all the fields is this correct? Regards, Michael If the fields are blank and you hit

Re: Upgrading to STRUTS 1.1

2002-11-13 Thread Rob Leland
for the word 'case study'. -Rob -- To unsubscribe, e-mail: mailto:struts-user-unsubscribe;jakarta.apache.org For additional commands, e-mail: mailto:struts-user-help;jakarta.apache.org

Re: [Validator] Not validating any more since update? - Urgent

2002-11-19 Thread Rob Leland
, make sure your DTD references at the tops of your validator.xml files have been updated, and make sure you are using the new validator-rules.xml in your web app. -Rob Axel wrote: Hi. After updating struts and all common libs (including common-validator) from nightly-build 2002-07-31

Re: using tomcat version

2002-11-21 Thread Rob Leland
1.1 bugs are actively fixed. Then you can use Tomcat 4.1.12 which has speed improvements. -Rob -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: How to resolve why java element deprecated?

2002-12-02 Thread Rob Leland
David Graham wrote: The version of java has nothing to do with this. Check the PropertyUtil javadoc in the jakarta commons for details. David I didn't think struts 1.0 use commons-xxx jars ? -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

Re: Struts design: All actions in one ActionClass

2002-12-11 Thread Rob Leland
later we have 5+ projects using the same set of core Action classes and there is alot of complaints about how hard it to maintain ! We are now moveing to break up those action classes. Some people just have to learn the hard way , and very expensive too I might add -Rob David From: Jordan

Exception loading sessions from persistent storage

2003-02-11 Thread Scot Rob
Due to this strange exception i am getting, i can't access my beans/forms in jsps. I will appreciate any help/clues. Many Thanks, Scot 2003-02-11 21:53:35 StandardManager[/strutsvom] IOException while loading persisted sessions: java.io.WriteAbortedException: Writing aborted by exception;

RE: Any good suggestions on implementing Security

2003-02-12 Thread Rob Kischuk
the other two options aren't available, in which case I'd suggest you put effort into an upgrade instead). -Rob -Original Message- From: Rao, Nagraj [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 9:53 AM To: 'Struts Users Mailing List' Subject: RE: Any good sugestions

RE: [OT] Any good suggestions on implementing Security

2003-02-12 Thread Rob Kischuk
apps seem to be getting more complex yet powerful by the day -Rob - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: LookupDispatchAction

2003-02-12 Thread Rob Kischuk
resources (for i18n or something), you might want to use DispatchAction instead. -Rob -Original Message- From: JONATHAN PHILIP HOLLOWAY [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 12, 2003 12:04 PM To: Struts Users Mailing List Subject: LookupDispatchAction Does anybody know why

RE: Any good suggestions on implementing Security

2003-02-13 Thread Rob Kischuk
/docs61/javadocs/weblogic/soap/http/SoapInitialConte xtFactory.html that may be configurable as part of a Weblogic security realm as well. -Rob -Original Message- From: Tony Baity [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003 9:57 AM To: Struts Users Mailing List Subject: RE: Any

Re: URL Validation with Struts validator

2003-03-05 Thread Rob Leland
I started coding a URL client/server side validation 2 weeks ago, that I hope to contribute to the Validation framework. I put it on hold while getting other work finished before going on vacation. I modeled it on the email validation items, and used the w3.org definition of A URI to write the

Re: URL Validation with Struts validator

2003-03-05 Thread Rob Leland
finish the Validator extension and submit it a patch to the commons-validator, and include the Struts part as a 1.2, more likely a 1.3 enhancement to struts. -Rob - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: Sub-apps Question - Urgent Help Needed

2002-06-25 Thread Rob Leland
Mete Kural wrote: http://localhost/catalog/switch.do?prefix=page=/ I haven't used the SwitchAction yet but I have been using sub-apps for about 2 Months, so... Doesn't your application have a context ? How about http://localhost/application-context/catalog/switch.do?prefix=page=/ ? -Rob

Re: ServletException: Multipart data doesn't start with boundary

2002-06-27 Thread Rob Leland
Try last nights struts build, the patch that I applied suppliaed by Hal and others may fix your problem. Also when reporting a problem state the date/version of struts and conatiner TC 4.0.4 etc.. For an explination try searching the mail archives for 'Multipart data doesn't start with'

Re: ServletException: Multipart data doesn't start with boundary

2002-06-28 Thread Rob Leland
); if ((errors != null) !errors.empty()) { request = ((MultipartRequestWrapper) request).getRequest(); ... } I don't believe the patch will be in RequestProcessor. I need to look at the code better before putting a fix in. -Rob Daniel J. D'Cotta wrote: Rob, I am using Tomcat

Re: Validator Example: Error

2002-07-03 Thread Rob Leland
Jacob: Try downloading the latest build, it has many bugs fixed. I believe that in beta 1.1 the contrib validator example still used the regexpr.jar(org.apache.regexp.RESyntaxException ) but the validator used oro-2.0.6.jar both are from Jakrata-Apache top level. And I don't believe the

Struts emblem for web site

2002-07-27 Thread Rob Leland
://www.isea.qc.ca/symposium/archives/films90/f3.html 3) Then searching for 'William Latham' http://www.fortunecity.com/emachines/e11/86/latham.html Misc... These are also great set of slides. http://www.ntu.edu.au/faculties/science/sbes/sbi106/SBI106Inverts2/sld043.htm -Rob -- To unsubscribe

Re: Directories and Files structure for sub applications

2002-07-29 Thread Rob Leland
Does anyone have a best practices suggestion for how to organize the directory and files structure for a Struts application composed of sub applications? I don't know if there is a best practices yet. Here is what I have done. Our source tree looks much like the struts source

Form validation errors in different frame?

2001-10-18 Thread Rob Breeds
from the input frame. But if the errors collection is only stored in the request, it'd be too late to retrieve the errors I think. Can anyone offer a solution? Thanks Rob Breeds

how to refer to images from JSPs in WEB-INF?

2001-10-19 Thread Rob Breeds
/theimage.gif and will not show the image (can't serve from WEB-INF) Can anyone help please? Thanks Rob Breeds

Re: how to refer to images from JSPs in WEB-INF?

2001-10-19 Thread Rob Breeds
://localhost:9080/myApp/WEB-INF/pages/index.jsp; and that's bad because users shouldn't be able to get to WEB-INF directly should they? Rob Breeds

errors not clearing when hitting BACK

2001-10-20 Thread Rob Breeds
long, which is wrong. I have a reset() method in my ActionForm setting the name value to null but this has no effect. Any ideas please on how to prevent the error message(s) displaying when the page is displayed after hitting back button? Thank you Rob Breeds

Re: problem with html:errors tag

2001-10-23 Thread Rob Breeds
1. You need to put the html:errors property=whatever/ where you want them to appear. If you have several input fields, put a html:errors property=whatever/ next to each input field. The header and footer are for formatting but they are optional. Rob Breeds

RE: problem with html:errors tag

2001-10-23 Thread Rob Breeds
you still get error messages even without the html:errors/ tag? Sounds like a restart web app required? in the ActionForm validation() method, how do you populate Errors? Rob

RE: problem with html:errors tag

2001-10-23 Thread Rob Breeds
looks OK to me. Do the variables _firstName and _lastName get populated by setFirstName() and setLastName()? Other than that I'm afraid I've no idea - I'm still writing my first struts app! Rob

Incompatible object error trying to instantiate an Action

2001-11-02 Thread Rob Breeds
for confidentiality reasons but that doesn't change the problem!) Any ideas please? I'm stumped. I'm running in WebSphere App Server 4.0 and up until now, that hasn't been a problem... Thanks Rob Breeds -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto

Re: ClassCastException when moving extended Action and ActionForm classesin the classpath

2001-11-02 Thread Rob Breeds
That's the error message I get in the browser for my current problem too (see earlier post)! I don't think I see a specific ClassCastException though, only 'incompatible object'. You're right - it makes no sense Rob Breeds

RE: Newbe - problem with Struts-Config.xml

2001-11-02 Thread Rob Breeds
You can have your JSPs in the WEB-INF directory - I use that and it works fine. Are you using a html:base/ in your JSP? Rob Breeds |+- || Drozdowski, Terry| || Terry.Drozdowski@s| || chwab.com

how to dynamically add to form

2001-11-13 Thread Rob Breeds
bean:write name=el property=name/ /logic:iterate It's almost as if the ActionForm isn't being saved in the request but then why does the display work when I don't use iterate? I'm going round in circles with this so any help to get me moving again is appreciated. Thanks Rob Breeds -- To unsubscribe

  1   2   3   >