RE: [OT] Taglib reference and IntelliJ

2003-03-28 Thread Steve
? -Original Message- From: Steve [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 1:48 PM To: 'Carl Fyffe' Subject: RE: [OT] Taglib reference and IntelliJ I double checked and I do have struts.jar in the classpath and C:\jakarta-tomcat-4.0.4\webapps\test\WEB-INF does exis

RE: [OT] Taglib reference and IntelliJ

2003-03-28 Thread Steve
003 2:49 PM To: Struts Users Mailing List Subject: Re: [OT] Taglib reference and IntelliJ On Fri, 28 Mar 2003, Steve wrote: You need to add your tld as a resource. Go to Options -> IDE Settings -> Resources. Then add them one at a time. Example: URI=/WEB-INF/tlds/struts-bean.t

RE: [OT] Taglib reference and IntelliJ

2003-03-28 Thread Steve
Thanks Sri. Unfortunately they are there. Its seems so straightforward I figured I was missing something obvious. Any other suggestions? Steve -Original Message- From: Sri Sankaran [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 1:32 PM To: Struts Users Mailing List; [EMAIL

[OT] Taglib reference and IntelliJ

2003-03-28 Thread Steve
mately working as expected)appears with error flags. Can anyone point me in the right direction. Thanks. steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [TILES] Passing attributes to tiles

2003-03-26 Thread Steve Stair
variable that is available in the top level method, you have to explicitly pass that variable to that sub-method. With your definition of: Then, inside "tile-1.jsp", where you have instead, put this: -- Steve Stair [EMAIL

Adding ActionErrors in one tile to be displayed in another

2003-03-24 Thread Steve Stair
rs); %> <%-- Redirect to the home page --%> I've tried putting the error message in the session, instead of the request, and while that works, I'd have to go and remove the error or it sticks around to be displayed on every page :P Is there another way to do

RE: 1.1 rc1 -Validator: Conditionally required fields.

2003-03-20 Thread Steve
Thanks Jeff. My field-join condition should be AND instead of OR. That's a big DUH on my part. Less coffee more sleep I guess. -Original Message- From: Steve [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 3:04 PM To: 'Struts Users Mailing List' Subject: RE: 1.1

RE: 1.1 rc1 -Validator: Conditionally required fields.

2003-03-20 Thread Steve
Off -jeff On Thursday, March 20, 2003, at 01:32 PM, Steve wrote: > That makes sense. So if I had two input fields and a radio button > (status-that is defaulted to a checked value from my ValidatorForm) I > would think the following would work: > > > > >

RE: 1.1 rc1 -Validator: Conditionally required fields.

2003-03-20 Thread Steve
sureDependents" > > type="java.lang.Boolean" > > initial="false"/> > > > > > > > >'Where dependent is a bean that has properties lastName, firstName, > >dob, coverageType' > > > >Is 'dependent&#x

RE: Java Out Of Memory

2003-03-20 Thread Ditlinger, Steve
errors you are seeing. Steve -Original Message- From: Butt, Dudley [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 8:54 AM To: 'Struts Users Mailing List' Subject: RE: Java Out Of Memory yes guys come on, anyone got some tricks up their sleeves? i really

RE: 1.1 rc1 -Validator: Conditionally required fields.

2003-03-20 Thread Steve
;,'','','','','',''}"/> > name="insureDependents" > type="java.lang.Boolean" > initial="false"/> > > > >&#

1.1 rc1 -Validator: Conditionally required fields.

2003-03-20 Thread Steve
tName, firstName, dob, coverageType' Is 'dependent' referring to Dependent[] or dependentlistForm? If Dependent[], I don't see this in the src. Or this something I need to code? Thanks for any clarity you can offer. steve --

Re: Problem with Struts Validator

2003-03-19 Thread Steve Stair
x27;t get called. Of course we don't want the rest of the methods to get called, since we'd get a separate alert popup for each method. The right way to do it is to call one method that gathers ALL the errors, and presents ON

Re: Focus where I last clicked

2003-03-19 Thread Steve Stair
user > was on the page and return them to that position? Just change the action to which your form submits from: to In your JSP you will need something like: at the place you want the browser to scroll to. How you get it there, is left as an exercise for the rea

RE: IBM AIX

2003-03-19 Thread Steve Stair
Assuming WebLogic runs under AIX, no reason that it shouldn't work. Struts is pure Java code. I'm using Struts / WebLogic on a windows box and a Sun box and both work just fine. -- Steve Stair - To unsubscribe, e-ma

RE: Beginner question

2003-03-19 Thread Steve Stair
I sounds like you WANT to do is redirect to a page that, when reloaded, will just redisplay the item. So, you should redirect them to a URL that contains the itemId as a parameter. -- Steve Stair - To unsubscribe, e-mail

1.1-rc1 and Validator

2003-03-19 Thread Steve
I have just recently begun to utilize the validator in our application and had I simple question that I could not find an answer to searching the archives. I have a search form that a user can enter in 1..n criteria for searching. In a simple case there are two input fields. The validation should e

Even newer release of sslext posted

2003-03-18 Thread Ditlinger, Steve
new feature. Find it at http://sslext.sourceforge.net. This new release also clears up a bug in module selection which could emerge if using anchors or a URL which had already been rewritten. Special thanks to Max for his suggestion and

New releases of sslext posted

2003-03-17 Thread Ditlinger, Steve
nclude an additional version of the SecureRequestProcessor called SecureTilesRequestProcessor for use with Tiles. Thanks, Steve > > > > > --- Dennis Muhlestein <[EMAIL PROTECTED]> wrote: > > sslext does not function as expected with modules. > > > > S

RE: [OT] sslext (1.1b3) has a bug with modules

2003-03-14 Thread Ditlinger, Steve
Excellent catch! I've identified the problem and will post a new b3 (& RC1) version this weekend. I shouldn't have tried to get so fancy: allowing links with "../" upsets things. I have a solution in mind. Thanks, Steve -Original Message- From: Dennis M

Re: relative path problem

2003-03-12 Thread Steve Parker
Not sure, but perhaps can you get the relative path by calling java.lang.system.getProperty('prop_name') not sure what the identifier for relative path is though.. On Wed, 12 Mar 2003 10:36:09 -0800 (PST), bobd wrote > That is my problem...how do you get the relative path > (in an action class)

RE: Dynamic Image Loading from ByteArray

2003-03-10 Thread Steve Vanspall
It's cool I solved the problem, basically if I place a counter in the nested:iterate tag, I can add a paramater like index=<%=count%> to the URL and the browser treats it as a completely different image. Regards Steve -Original Message- From: Steve Vanspall [mailto:[EMAI

Dynamic Image Loading from ByteArray

2003-03-10 Thread Steve Vanspall
n anyone sugges a way to get around this?? Steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: [Q] how to Sort on JSP without calling server side?

2003-03-10 Thread Steve Armstrong
Hi, By JSP side I assume you mean client side which means JavaScript. Here is one possibility if you're displaying your list of beans (well,their properties)in a table: http://www.mattkruse.com/javascript/sorttable/ Cheers, -Steve -Original Message- From: [EMAIL PROTECTED] [m

RE: logic:iterate tag revisited

2003-03-06 Thread Steve Vanspall
process it from there. How do I do that. There isn't much info about uploading a dynamic number of files to the serve using struts. Steve -Original Message- From: alexj [mailto:[EMAIL PROTECTED] Sent: Friday, 7 March 2003 2:34 PM To: Struts Users Mailing List Subject: Re: logic:iterate

RE: logic:iterate tag revisited

2003-03-06 Thread Steve Vanspall
e' fields relate to. Not sure if I am trying to do something that struts can't do, or if I am just doing it wrong Regards Steve P.S. Alternatively how to I create a FormFile, with inputstream etc. from a string giving me the path of a file on the clients machine. -Original Mess

RE: logic:iterate tag revisited

2003-03-06 Thread Steve Vanspall
he apporopriate formFile information Regards Steve -Original Message----- From: Steve Vanspall [mailto:[EMAIL PROTECTED] Sent: Friday, 7 March 2003 12:42 PM To: Struts Users Mailing List Subject: RE: logic:iterate tag revisited Ah it's always the small thing, I can't beleive I

RE: logic:iterate tag revisited

2003-03-06 Thread Steve Vanspall
Ah it's always the small thing, I can't beleive I missed that Thank you, I will procedd to kick myself several times Steve -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Friday, 7 March 2003 11:51 AM To: Struts Users Mailing List Subject: Re: log

RE: redirecting to HTTPS

2003-03-06 Thread Ditlinger, Steve
There are examples with each of the different versions. (1.02, 1.1b1, 1.1b2 etc) at sslext.sourceforge.net. I intend to do some updating for an 1.1RC1 release soon (this weekend?). Also, I am usually able to answer questions in (semi-)prompt fashion.. Steve -Original Message- From

logic:iterate tag revisited

2003-03-06 Thread Steve Vanspall
t at the time, there are two variables named id one set to null and one set to 'imgFile'. I figure this is where the problem lies, Is there something wrong withmy coding? Any help would be appreciated Steve - To unsub

RE: logic iterate with nested class (I think that's the term)

2003-03-06 Thread Steve Vanspall
Yeah, I am trying to make input tags out of them Thanks anywa Steve -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED] Sent: Friday, 7 March 2003 10:54 AM To: Struts Users Mailing List Subject: Re: logic iterate with nested class (I think that's the term) On Fri,

RE: logic iterate with nested class (I think that's the term)

2003-03-06 Thread Steve Vanspall
Ignore this one, It seems that Struts doesn't know to go into the Hashtable entry and just get the value, Very strange, but basically it was looking to cast the whole entry rather than just the value. Will have to convert it to use a list instead STeve -Original Message- From:

logic iterate with nested class (I think that's the term)

2003-03-06 Thread Steve Vanspall
under com.crm.util.TemplateBeans, just of eas of use and neatness. Is there a way to properly reference these classes in the iterate tag?? Thaks in advance Steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

RE: Source code for ActionServlet 1.1-b2

2003-03-05 Thread Ditlinger, Steve
"Ditlinger, Steve" To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>

RE: Source code for ActionServlet 1.1-b2

2003-03-05 Thread Ditlinger, Steve
Of course you vcan always look at the CVS repository also http://cvs.apache.org/viewcvs.cgi/jakarta-struts/ -Original Message- From: Ditlinger, Steve [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 11:05 AM To: 'Struts Users Mailing List' Subject: RE: Sourc

RE: Source code for ActionServlet 1.1-b2

2003-03-05 Thread Ditlinger, Steve
right here -Original Message- From: Andrew Lubalin [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 11:00 AM To: [EMAIL PROTECTED] Subject: Source code for ActionServlet 1.1-b2 I have the source for 1.1-b3 but I cannot find anything for 1.1-b2, which is what I need.

Re: problem with vaidation of numeric field

2003-03-05 Thread Steve Stair
le(value); So the real question is, "does Java accept "123,45" as a double if locale is xx_XX?" (Whatever locale you are using). -- Steve Stair - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

FYI: Bug fix iin RC1 changed validator behavior

2003-03-04 Thread Steve Stair
ave just forced this behavior by adding "required" before "mask" in their validation configurations, but for those few who might have written code assuming this behavior, I think a note should be added to the release notes :) -- Steve Stair

You can also use

2003-03-04 Thread Steve Stair
You can also use As long as you are using Struts 1.1-rc1 -- Steve Stair - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Unable to access "title" attribute in Tiles under layout(1.1-rc1)

2003-03-04 Thread Steve Stair
Action", as well as your "Tiles Advanced Features" document, and still can't find this behavior explained anywhere. -- Steve Stair - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Basic Tiles question

2003-03-04 Thread Steve Stair
- tag.getAsString : attribute 'title' not found in context. Check tag syntax' -- Steve Stair - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: isEmpty() Method Not Working?

2003-03-03 Thread Ditlinger, Steve
NoSuchMethodError does not extend Exception, so if you are catching Exception, the catch block will not be entered. However, your real problem is that you are compiling against a current version of Struts and then running against an obsolete version of Struts. HTH, Steve -Original

Unable to access "title" attribute in Tiles under layout(1.1-rc1)

2003-03-03 Thread Steve Stair
ag syntax' I haven't been able to find an example that does this. So far I've only found an example that statically includes the header file, which somewhat defeats the purpose of using Tiles. My definition looks like this -- Steve Stair --

ForwardAction with Tiles in 1.1b2

2003-03-03 Thread Steve Stair
esn't work I get this error message Cannot create request dispatcher for path .app.CreateUser -- Steve Stair - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Netscape 4.7x and Struts performance problems

2003-02-26 Thread Steve Stair
l use up 1/2 the clock cycles waiting for the server to respond. I've seen this on *nix and Windows boxes. -- Steve Stair - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Mixing currencies and locales

2003-02-24 Thread Steve Armstrong
Hi, Can java.util.Currency in JDK 1.4 help you out here, perhaps in combination with java.text.NumberFormat.getCurrencyInstance()? Cheers, -Steve -Original Message- From: James Childers [mailto:[EMAIL PROTECTED] Sent: Monday, February 24, 2003 12:19 PM To: 'Struts Users Mailing Lis

RE: Help: ActionError - does not expand the {0} placeholder

2003-02-23 Thread Steve Armstrong
Hi, No guarantee, but try doubling your single quote. The java.text.FormatMessage Javadoc associated with JDK 1.3 says: In strings, single quotes can be used to quote the "{" (curly brace) if necessary. A real single quote is represented by ''. Cheers, -Steve -Origin

RE: [Q.] (redirect="true") how to get anything from request scope?

2003-02-21 Thread Ditlinger, Steve
A redirect is a response to the browser telling it to issue a new request for the specified URL. Because it is a new request, any attributes in the original request are gone. You'll have to put them in session if you wish to keep them around. Steve -Original Message- From: [

Is sslext only support struts 1.1, but not support struts 1.0.2?

2003-02-21 Thread Ditlinger, Steve
sslext supports 1.1 (b1, b2 & b3) and struts 1.0.2. See http://sslext.sourceforge.net Steve - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Validation question

2003-02-20 Thread Steve Stair
You could create your own Validator It could keep a count of the number of fields that were validated, as well as whether any of the fields were non-empty. Then while the last field was being validated, if could add an error if the all the fields had been empty. -- Steve Stair [EMAIL PROTECTED

Re: Mutliform validation using a DynaValidatorForm

2003-02-19 Thread Steve Stair
There is indeed a bug in multipage DynaValidatorForm usage http://www.mail-archive.com/struts-user@jakarta.apache.org/msg55576.html -- Steve Stair [EMAIL PROTECTED] (512) 463-7991 - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: One ActionForm for multiple JSP

2003-02-19 Thread Steve Stair
There is a bug in multipage DynaValidatorForm usage http://www.mail-archive.com/struts-user@jakarta.apache.org/msg55576.html -- Steve Stair [EMAIL PROTECTED] (512) 463-7991 - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: Struts Validator: validation.xml : Doubts

2003-02-13 Thread Steve Stair
Just as with the struts-config.xml, the best documentation is in the DTD. http://jakarta.apache.org/commons/dtds/validator_1_0.dtd -- Steve Stair [EMAIL PROTECTED] (512) 463-7991 - To unsubscribe, e-mail: [EMAIL PROTECTED

RE: / /OREF:CPTDA10A RE: [OT] VOTE to help Naveen.Dhotre Unsubscribe permanently

2003-01-29 Thread Steve Bull
And a true geek would be able to write code to tell you the day of the week for any given date. ;-) From: Mark Galbreath [mailto:[EMAIL PROTECTED]] Sent: 29 January 2003 14:49 To: 'Struts Users Mailing List' Subject: RE: / /OREF:CPTDA10A RE: [OT] VOTE to help Naveen.Dhotre Unsubscr ibe permanentl

New release of sslext available (1.1b3)

2003-01-27 Thread Ditlinger, Steve
m this point forward except for bug fixes. Stand by for other new features. Steve -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Struts and OJB

2003-01-25 Thread Steve Gass
oes storing objects in memory become less efficient than creating them each time they're needed? Thanks. Steve -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

RE: Struts and Websphere

2003-01-20 Thread Steve Vanspall
I'm not the guy who said that, but my main problem is I am not sure where to start find the problem, it just says that it can't find an action-mapping for my .do request. I have not changed any settings and it runs without a hitch under tomcat. -Original Message- From: Craig R. McClanahan

RE: Struts and Websphere

2003-01-20 Thread Steve Vanspall
I did use the assembly tool at first, but the same problem occured. will try again. am currently using WAS 5.0 Regards Steve Vanspall -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, 20 January 2003 8:27 PM To: [EMAIL PROTECTED] Subject: RE: Struts

RE: Struts and Websphere

2003-01-20 Thread Steve Vanspall
Hi there, my web.xml (Attached) is the same as for when I run it on Tomcat. Not sure if there are more settings I need regards Steve Vanspall -Original Message- From: Marco Fabbri [mailto:[EMAIL PROTECTED]] Sent: Monday, 20 January 2003 7:44 PM To: Struts Users Mailing List Subject

Struts and Websphere

2003-01-19 Thread Steve Vanspall
se am making the war file using Eclipse, the war file works with tomcat, but not websphere. Websphere pickup my welcome page, it then calls findefault.do, but that causes a 500 error. I think there must be some added setting one of my xml files needs. Can anyone help me out Regards Steve Van

ActionForm defaults for primitive wrapper types

2003-01-16 Thread Steve M.
I noticed a change in the Struts 1.1-b3 release that ActionForms which use primitive wrapper Objects for their bean properties, default to the corresponding primitive type defaults instead of null if the HttpRequest contains any value for the property name, including empty string. Example: when s

RE: Precompiling JSPs

2003-01-15 Thread Steve Button
df See section 7-37 (p205 in the PDF) for the precompilation information. Hope that helps. -steve- > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 16, 2003 1:26 PM > To: Struts Users Mailing List > Subject: RE: Precompi

RE: Struts forwards requests as http when jsp page was invoked as https

2003-01-09 Thread Steve Vanspall
But the main advantage is that you can set action security in struts-config. Regards Steve Vanspall -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, 10 January 2003 10:03 AM To: [EMAIL PROTECTED] Subject: Struts forwards requests as http when jsp pag

two apps using the same code base

2003-01-08 Thread Steve Vanspall
I can pass the releveant login information through the request. Just need some idea as to whether what I am asking is possible. Regards Steve Vanspall -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

RE: Request Processor to intercept URL that call a JSP as well as actions

2003-01-08 Thread Steve Vanspall
Thanks, You've given me any idea. Although the security constraint is interested. Will work out how I do it. Cheers Steve -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 8 January 2003 5:41 PM To: Struts Users Mailing List Subject: RE: Re

Re: [OT] Re: Oracle JDeveloper 9i and Struts Tomcat deployment

2003-01-08 Thread Steve Muench
Struts features, Ant features, and has cool new support for using our BC4J J2EE framework as your "model" layer with Struts as your "controller" layer. ______ Steve Muench - Developer, Product Mgr, Java/XML Evangelist,

RE: Request Processor to intercept URL that call a JSP as well as actions

2003-01-07 Thread Steve Vanspall
. in short, I want to be able to intercept the URL if someone manually type in http://localhost:8081/WebApp/blah.jsp This is unlikely, but would rather be able to stop people playing around with the site when it goes live Regards Steve Vanspall -Original Message- From: Craig R

RE: Request Processor to intercept URL that call a JSP as well as actions

2003-01-07 Thread Steve Vanspall
Thanks for the suggestion, the second way seems to be the answer, as I am looking for a non container specific way to do this. Regards Steve -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 8 January 2003 5:30 PM To: Struts Users Mailing List

Request Processor to intercept URL that call a JSP as well as actions

2003-01-07 Thread Steve Vanspall
is for a JSP. Is there something I can write that will do that? Perhaps there is another method in the RequestProcessor that I can use. Any help would be appreciated. Regards Steve Vanspall -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: &

Re: [OT] Re: Oracle JDeveloper 9i and Struts Tomcat deployment

2003-01-07 Thread Steve Muench
jaas.jar and the jazn.jar ______ Steve Muench - Developer, Product Mgr, Java/XML Evangelist, Author Simplify J2EE Development with the Oracle BC4J Framework http://otn.oracle.com/products/jdev/htdocs/j2ee_bc4j.html Building Oracle XML App

Re: [OT] Re: Oracle JDeveloper 9i and Struts Tomcat deployment

2003-01-07 Thread Steve Muench
ses, but the latest production 9.0.3 release has new features to simply open existing WAR files. Non-messy, and very intuitive. The latest production 9.0.3 release can be downloaded at: http://otn.oracle.com/products/jdev __ Steve M

Multiple Controllers struts-config

2003-01-06 Thread Steve Vanspall
Hi there, I am trying to use the SSLext extension as well as the ActionPluginExt extension for Struts I am using Struts 1.1b2 According to the DTD I can have only one tag deifined. each of these extensions require their own controller. Is there a way around this limitation? Regards Steve

Re: Oracle 9i BC4J and Struts

2003-01-06 Thread Steve Muench
ble. (some bolding and bullet-points didn't show up right). __ Steve Muench - Developer, Product Mgr, Java/XML Evangelist, Author Simplify J2EE Development with the Oracle BC4J Framework http://otn.oracle.com/products/jdev/htdocs/

RE: Source for beta 3

2003-01-06 Thread Steve Bosman
Thanks, got it now. Just so I appear less stupid :-) I was trying to follow the link from http://jakarta.apache.org/site/sourceindex.html which is broken. -- Steve Bosman Senior Programmer FW Pharma Systems Ltd, Four Brindleyplace, Birmingham, B1 2JB, UK Tel: +44 (0)121 616 5600Fax

Source for beta 3

2003-01-06 Thread Steve Bosman
I've just downloaded Beta 3 binary, but unlike beta 2 there does not appear to be a download source option. So could someone tell me which nightly build corresponds to beta 3? -- Steve Bosman Senior Programmer FW Pharma Systems Ltd, Four Brindleyplace, Birmingham, B1 2JB, UK Tel: +44 (0)12

ActionMapping, struts-config and custom attributes

2003-01-05 Thread Steve Vanspall
Hi there, Me again. Is there a way to set a custom attribute for an action mapping, then retrieve that attribute through the ActionMapping class? I am using Struts 1.1-b2 Regards Steve Vanspall -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: &

SSLext Struts-1.1-b2 - Addition

2003-01-05 Thread Steve Vanspall
keep useing hte sslext:form tag for the rest of the site. If this is the case, how do I break out of secure mode? say when a person log's out? Thanks in advance Steve Vanspall -Original Message----- From: Steve Vanspall [mailto:[EMAIL PROTECTED]] Sent: Monday, 6 January 2003 2:51 PM

SSLext Struts-1.1-b2

2003-01-05 Thread Steve Vanspall
Hi there. I am going to be as precise as I can with this one. I have been having this problem for a while now, and as yet, no solution. I am converting my web-app to use SSL for some of the pages. I use Steve Ditlinger's SSL extension. I am using Struts 1.1 B2 and Tomcat 4.1.18

Re: Data Access Objects

2002-12-26 Thread Steve Muench
driver and with any J2EE-compliant application server. A fully-supported developer license for the IDE costs $995.00, and the BC4J Framework has no additional runtime fees. __ Steve Muench - Developer, Product Mgr, Java/XML Eva

RE: how to send actionForm from one action to another action

2002-12-17 Thread Steve Vanspall
The key in session for a form will be the name defined for that form in the struts-config tag -Original Message- From: Taylor Cowan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 18 December 2002 3:28 PM To: [EMAIL PROTECTED] Subject: re: how to send actionForm from one action to another act

struts-config action-mapping how to set custom attribute

2002-12-17 Thread Steve Vanspall
file Can anyone help me here? Regards Steve Vanspall -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

RE: Struts SLL extension - Really lost

2002-12-10 Thread Ditlinger, Steve
Sounds like you are missing this line in the struts-config.xml (just before all the action definitions): Once you add that, the ClassCastException should go away. If you have any more problems, let me know. Steve -Original Message- From: Steve Vanspall [mailto:[EMAIL

Struts SLL extension - Really lost

2002-12-09 Thread Steve Vanspall
("login.jsp"); with the exception of the tag changes, this is exactly how my code was before. Now it doesn't work. The app throws a JasperException without any kind of message included. Can anyone guide me through this problem? Thanks in advance Steve -- To unsubscribe, e-

RE: Restrict acces to certain pages/actions

2002-12-04 Thread Steve Vanspall
So it would be great if I could dynamically implements the role based security. 'role based security' that was the term I was looking for. Probably would have got here sooner if I had said that. Regards Steve -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]]

RE: Restrict acces to certain pages/actions

2002-12-04 Thread Steve Vanspall
you can set it up such that it does not even exist for users that do not have the proper role. (... and I mean that quite literally - the server will return a 404 for unauthorized access!) Steve Vanspall wrote: >Hi there, > >I was wondering if struts had some mechanism to restrict acces &

RE: Restrict acces to certain pages/actions

2002-12-04 Thread Steve Vanspall
do not have the proper role. (... and I mean that quite literally - the server will return a 404 for unauthorized access!) Steve Vanspall wrote: >Hi there, > >I was wondering if struts had some mechanism to restrict acces according to >user level. > >Basically our users may be of va

Restrict acces to certain pages/actions

2002-12-04 Thread Steve Vanspall
cutomise for my own needs. Any help would be appreciated Regards Steve Vanspall -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Re: Docs

2002-12-02 Thread Steve Gass
On Monday 02 December 2002 04:21 pm, David Graham wrote: > Because there are a bunch of images included now. Not because the > actual documentation increased that much. Well, it was the file size which led me to look at the docs more closely. I guess it's been awhile since I've updated them on m

Docs

2002-12-02 Thread Steve Gass
is well on the way to becoming the most thoroughly documented open-source project there is. Keep up the great work! Steve [but psst . . . the faq dir is missing from the 1202 build ;)] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Is pre-validation transform of input possible?

2002-11-09 Thread Steve Peterson
Greetings. I'm just getting up to speed on the validation framework within Struts and have a question that I haven't been able to answer from reading the list or the docs. Is it possible to apply pre-validation transformations to form parameters? Some examples might be: . trimming whitespac

RE: Steps to Get JRUN 3.1 and Struts 1.1b2 working

2002-11-06 Thread Steve Fyfe
roblem with its solution in a few comments in the web.xml file to prevent confusion in the future. If you are still confused, send me a message off-list with more specific questions. Steve Steve Fyfe CNI Corporation Milford NH 03055 [EMAIL PROTECTED] >>> "Haseltine, Celeste" <

RE: Using SecureLinkTag with non-actions

2002-11-05 Thread Ditlinger, Steve
nk you can accomplish the same thing right now by using the tag. Anyway, please let me knoe of anymore issues, suggestions, etc you have. Steve > -Original Message- > From: Rick Mann [mailto:rmann@;latencyzero.com] > Sent: Monday, November 04, 2002 8:19 PM > To: Str

Re: Steps to Get JRUN 3.1 and Struts 1.1b2 working

2002-11-05 Thread Steve Fyfe
er()); super.init(sc); } } I'm using JRun 3.1 on Win XP with JDK 1.3 I did this a while ago, so I may be overlooking some other critical configuration detail. Your milage may vary :-) Steve Fyfe CNI Corporation Milford NH 03055 [EMAIL PROTECTED] -- To unsubscribe,

Re: [OT] static vs. application scope

2002-11-03 Thread Steve Gass
I use a singleton, too, but don't invoke it with anything - it's instantiated when it is first accessed by any method. That way it doesn't have anything to do with Struts or the container. On Sunday 03 November 2002 02:02 am, Andrew Hill wrote: > Another good way of initialising is to use the

Re: Ted's book..

2002-11-01 Thread Steve Gass
On Friday 01 November 2002 01:56 pm, Kris Schneider wrote: > Along with the PDF "Bookmarks" in the navigation pane, Ted's book has > a hyperlinked contents and index. Cool, thank you. Ahh, nothing like instant gratification. -- To unsubscribe, e-mail:

Re: Ted's book..

2002-11-01 Thread Steve Gass
On Friday 01 November 2002 01:25 pm, micael wrote: > Manning books really stress quality authors. I love Manning books. > They tend to have people who just plain know what they are doing > write their books. The Editor in Chief is a techie who really cares > about quality work. > > At 01:24 PM 1

Re: Ted's book..

2002-11-01 Thread Steve Gass
On Thursday 31 October 2002 10:14 am, [EMAIL PROTECTED] wrote: > http://www.manning.com/ebook_buy.html?project=husted Has anyone ever bought any of the Manning ebooks? How are they? A lot of pdf files can be mighty annoying to navigate. Just trying to decide if I should go for the instant gratif

RE: nested:iterate recursion inverts tree

2002-10-28 Thread Steve Hall
Arron, Weblogic 5.1 sp11 is running JSP spec 1.1. It sounds like that is the root of my problem. I'll just 'manually' nest my jsp until we get upgraded to Weblogic 7. Then I'll come back and implement the recursion. Thanks for your time! Steve -Origin

nested:iterate recursion inverts tree

2002-10-25 Thread Steve Hall
s causing the JSP iteration to run before any printing to the outputstream is executed? Do I have to "hard code" all the iteration levels into my JSP to get the tree to display "root down"? Environment: Struts 1.1 b2 Weblogic 5.1 sp11 (don't ask :-/ ) jdk 1.3.1 sdk 1.2.1 T

Re: Really: [OT] :netscape 4.7x was javascript revival?

2002-10-12 Thread Steve Gass
On Friday 11 October 2002 04:30 pm, micael wrote: > I have better luck with Mozilla with Red Hat 7.2 as well. > > At 03:26 PM 10/11/2002 -0500, you wrote: > >David Graham wrote: > >Last I checked I wasn't able to get an Opera that would exist well > > on my Linux 7.3 box though - I think there was

<    1   2   3   4   5   6   7   >