Re: Exception when tying to display a 404 error page.

2007-11-07 Thread Josh Vickery
Why not redirect to the struts 2 action you want? This is the jsp I use for error pages in tomcat: <%response.sendRedirect("error.do");%> where error.do points to a struts 2 action Josh On Nov 7, 2007 5:15 PM, matihost <[EMAIL PROTECTED]> wrote: > > This error p

Re: GridView - save multiple items at the same time

2007-10-15 Thread Josh Vickery
olumns, in which case you could greatly cut the amount of data you need to sort through in the post action. Josh On 10/15/07, wild_oscar <[EMAIL PROTECTED]> wrote: > > Imagine a table with a List of items (say, a List of people, each with an ID, > Name and age). I am thinking about

Re: Iterate Hashmap with s:iterate

2007-09-12 Thread Josh Vickery
Looking through some code here, this is what I have: The above seems to work OK, though I'm a little curious about the inclusion of the double parentheses at the end of "entrySet" -- OGNL, as far as I am concerned, is a bit of strange beast. Josh On 9/12/07, Cory D

Re: How format a string when it is Displayed?

2007-08-30 Thread Josh Vickery
Oops, I missed that you are using Struts 1. I believe that you can use the format attribute of the bean:write tag: http://struts.apache.org/1.1/userGuide/struts-bean.html#write to specify a format string as described on: http://java.sun.com/j2se/1.4.2/docs/api/java/text/MessageFormat.html Josh

Re: How format a string when it is Displayed?

2007-08-29 Thread Josh Vickery
could also do the same thing with JSTL if you prefer: http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/fmt/tld-summary.html Josh On 8/29/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > > I need help in formatting a String, when it is displayed. > > Here is

Re: using ${ , # and %{

2007-08-14 Thread Josh Vickery
/tutorial/doc/JSPIntro7.html and using OGNL with Struts 2: http://struts.apache.org/2.0.9/docs/ognl.html and http://struts.apache.org/2.0.9/docs/tag-syntax.html Josh On 8/14/07, yitzle <[EMAIL PROTECTED]> wrote: > NOTE: This email assumes Struts 2. I'm not sure how Struts 1 works; it &g

Re: Struts2 and images from database

2007-07-18 Thread Josh Vickery
If you return null from your Action you can write directly to the response: HttpServletResponse response = ServletActionContext.getResponse(); response.setContentType("image/jpg"); out = response.getOutputStream(); write image here return null; On 7/18/07, Roberto Nunnari <[EMAIL PROTECTED]> wro

Re: How to display the ' character from a .properties file

2007-07-12 Thread Josh Vickery
d cause problems when the same .properties file is used by multiple I8n implementations. Josh - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to display the ' character from a .properties file

2007-07-12 Thread Josh Vickery
t in a jsp like so: the displayed text is Messages for {0} if you double the ' (foo=Messages''s for {0}) you get: Messages for Josh On 7/12/07, Antonio Petrelli <[EMAIL PROTECTED]> wrote: 2007/7/12, TonyD <[EMAIL PROTECTED]>: > > > Thanks it works! Mmm..

Re: Dao subclass

2007-06-29 Thread Josh Vickery
ed to do so. This will not only save time up front, but will make your code simpler by removing an unneeded inheritance level. Josh On 6/28/07, Francesco Azzola <[EMAIL PROTECTED]> wrote: Yep it is a good practice. Usually u should have an interface and several dao implementing that inter

Re: How to format the decimal

2007-06-09 Thread Josh Vickery
://cwiki.apache.org/confluence/display/WW/text) has some links to more information about using MessageFormat. Josh On 6/9/07, Antonio Petrelli <[EMAIL PROTECTED]> wrote: 2007/6/9, Shuai Zheng <[EMAIL PROTECTED]>: > Dear All, > > I want to keep all the numeric in my system with 2 deci

Re: Struts 2 Application Approach.

2007-06-04 Thread Josh Vickery
in the domain, the helper classes (service?) or the action classes. This is work that you can save yourself from doing now, or worse, re-doing later, if you are not yet in the process of implementing multiple front ends. Josh On 6/4/07, Al Sutton <[EMAIL PROTECTED]> wrote: My recommendation

Re: [ANN] "Starting with Struts2" Book

2007-05-27 Thread Josh Long
Wonderful contribution! Congratulations! -- Joshua Long Sun Certified Java Programmer http://www.joshlong.com/ On 5/26/07, Nova Yu <[EMAIL PROTECTED]> wrote: i'm sorry, i don't think about this. and now i konw what to do. 2007/5/26, Al Sutton <[EMAIL PROTECTED]>: > > Emailing you a copy would

Re: [S2] s:include and jsp:include of Struts actions blank page

2007-05-25 Thread Josh Vickery
Well, I couldn't figure out why the include tags don't work, but I did find: which seems to do the trick. Josh On 5/25/07, Josh Vickery <[EMAIL PROTECTED]> wrote: I'm running into some strange behavior when using s:include and jsp:include with Struts actions as the incl

[S2] s:include and jsp:include of Struts actions blank page

2007-05-25 Thread Josh Vickery
k down the source of this problem, but I'm wondering if anyone else has seen this behavior. Josh - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [S2] How to get an object from Spring inside an interceptor

2007-05-23 Thread Josh Vickery
Not the most elegant solution, but you can pull the ApplicationContext from the ServletContext: ServletContext sc = ServletActionContext.getServletContext(); (ApplicationContext)sc.getAttribute("org.springframework.web.context.WebApplicationContext.ROOT"); Josh On 5/23/07, Célio Cid

Re: checkboxlist formatted vertically?

2007-05-17 Thread Josh Vickery
I agree! I would use checkboxes instead of a checkboxlist rather than write my own theme. I did something like that recently: On 5/17/07, Allen Gilliland <[EMAIL PROTECTED]> wrote: yeah, this is for struts2. that's a shame, hacking my own theme just so that my list gets

Re: Need a recommendation to use struts version

2007-05-13 Thread Josh Long
If you dont' plan on maintaining it much, and you find it "easier" to develop raw servlets/jsps and do MVC, then do that. If you plan on maintaining it but don't imagine you'll ever get to the point where you're going to outsource it to hundreds of people, use Struts 2, as it (and any framework)

Re: Persistent Database Object

2007-05-13 Thread Josh Long
Use a Connection pool. Jakarta Commons has one that's comonly available and easily configured in Tomcat, Spring, in code, etc. Make the Connection pool persistant (As it might be if it were available in a Spring context, for example.), and then on each new "request" (ie, if you're going to use i

Re: moving on to Hibernate with S2...

2007-05-12 Thread Josh Vickery
might use the same code that I previously put in my Action class, and it might never prove to be a problem even with all the excessive database. However, if it did prove to be a problem, I would know exactly where to address it, and I could be assured that my database performance tuning would be restr

Re: moving on to Hibernate with S2...

2007-05-11 Thread Josh Vickery
titor to Struts 2. I personally don't like Spring MVC, and would much rather use Struts 2. Josh On 5/11/07, Rick Schumeyer <[EMAIL PROTECTED]> wrote: Let me ask you a question that I've never really received a good answer to. Keep in mind that my knowledge of Java web progra

Re: [S2] populating user roles

2007-05-05 Thread Josh Vickery
my Actions. On 5/4/07, Flemming Seerup <[EMAIL PROTECTED]> wrote: Thanks, that what was I was looking for. I will take a look at your example, but I'm also considering just writing my own RolesInterceptor ... F Quoting Josh Vickery <[EMAIL PROTECTED]>: > Flemming, if y

Re: [S2] populating user roles

2007-05-02 Thread Josh Vickery
Flemming, if you are not using JAAS, and don't want to interact with it, you can fake it by wrapping the HttpServletRequest in a servlet filter. This is the method used by SecurityFilter (http://securityfilter.sourceforge.net/) and is very easy to implement. Here are some code snippets: A filter

Re: [S2] populating user roles

2007-05-01 Thread Josh Vickery
The easiest way I've found to do this is to write a ServletFilter that wraps the HttpServletRequest with a class that implements the isUserInRole method based on your database roles from an object you populated and placed in the Session. Josh On 5/1/07, Flemming Seerup <[EMAIL PROTECTED

Are my jar versions in Synch?

2006-05-12 Thread josh t
My commons-validator.jar Implementation-Version is 1.1.3 My struts.jar Implementation-Version is 1.2.8 Are these Compatible? They're under your jar's MANIFEST.MF file. - Love cheap thrills? Enjoy PC-to-Phone calls to 30+ countries for

RE: extending ValidationForm instead of ValidatorActionForm

2006-05-12 Thread josh t
I still get the same error with Struts 1.2.7. I get the error with both ValidationForm or when using ValidatorActionForm. josh t <[EMAIL PROTECTED]> wrote: Thanks Gary. So where should I be adding this method. I'm using struts 1.2.9. This probably has something to do with it, as

RE: extending ValidationForm instead of ValidatorActionForm

2006-05-12 Thread josh t
first thought was that you might be using an action as you validation > key i.e., in validation.xml, instead of: > > > > you had: > > > > But this is not the case. So, I can't really tell why this is happening. > > Harsh. > > -Original Mess

RE: extending ValidationForm instead of ValidatorActionForm

2006-05-12 Thread josh t
irst thought was that you might be using an action as you validation key i.e., in validation.xml, instead of: you had: But this is not the case. So, I can't really tell why this is happening. Harsh. -Original Message- From: josh t [mailto:[EMAIL PROTECTED] Sent: Friday, Ma

RE: extending ValidationForm instead of ValidatorActionForm

2006-05-12 Thread josh t
: My Validator-rule.xml "Chaudhary, Harsh" <[EMAIL PROTECTED]> wrote: Could you also include of you validation.xml and struts-config.xml? Harsh. -Original Message- From: josh t [mailto:[EMAIL PROTECTED] S

extending ValidationForm instead of ValidatorActionForm

2006-05-12 Thread josh t
When my form extends Strut's ValidationForm instead of ValidatorActionForm, I get the following exception when my form gets loaded for the first time. Any idea what this is? Also, I've copied my sample form here. Please let me know what I'm doing wrong. Many Thanks! MY Form (Do I need the

RE: Basic

2006-05-10 Thread josh t
Thanks. Does anyone know where I can get some good reference material on Struts Tags? "Patil, Sheetal" <[EMAIL PROTECTED]> wrote: Hi there As my best knowledge your And supports for either int or boolean -Original Message- From: josh t [mailto:[EMAIL PROTECTED] Sen

Basic

2006-05-10 Thread josh t
Greetings everyone: Objective: Retrieve an object from the session that contains a Collection of String for userRoles. Iterate through userRoles, and if one of the roles equals "SUPER" include a href. So this is what I have, but doesn't seem to be correct: .

Re: message-resources key/parameter

2006-05-10 Thread josh t
is the same as "key" in struts-config.xml) for a while, it was only actually supported since Struts 1.2.7 and Validator 1.1.4: http://www.niallp.pwp.blueyonder.co.uk/HelpTagsErrorsAndMessages.html#section7_2 Niall On 5/10/06, josh t wrote: > > > > Can someone please expl

message-resources key/parameter

2006-05-10 Thread josh t
Can someone please explain to me how and where in my code I need to refer to message-resources key? When doing validation, how does the validator know where to loopup the ApplicationResources? Do I need to include the key somwhere in my validator.xml? Thanks!

Re: Validation Issue - Validation Not Taking Affect

2006-05-09 Thread josh t
I've tried several things, but the form filed is not being validated. Am I doing the nested form attribute right in the validator.xml? josh t <[EMAIL PROTECTED]> wrote: I'm trying to set up a very basic(generic) validation with struts 1.1 (and tiles) and I can not get it

Role-Based Menu Navigation

2006-05-09 Thread josh t
I want to build a role-based nested navigation menu : - Using Struts 1.1 with tiles - My menu.jsp will be used by all other JSPs (extension in the tiles def file) - The roles to build the menu will be retrived from the session. - I don't care about the java script part of the dropdown na

RE: Validation Issue - Validation Not Taking Affect

2006-05-09 Thread josh t
IL PROTECTED]> wrote: I am not 100% on this as I don't know the package "org.apache.struts.chain.commands.servlet.ValidateActionForm" very well, but try extending your form from ValidatorForm from: org.apache.struts.validator.ValidatorForm Harsh. -Original Message

Validation Issue - Validation Not Taking Affect

2006-05-09 Thread josh t
I'm trying to set up a very basic(generic) validation with struts 1.1 (and tiles) and I can not get it to work. I'm not getting any errors or anything. Validation simply doesn't take affect. I believe I have everything in place. Here is some snippets from my file. Please let me know if you k

Re: [ANNOUNCE] Struts Central - When only Struts will Do

2006-03-01 Thread Josh McDonald
It's not? :) -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61 7 3006 6460 Email: [EMAIL PROTECTED] >>> [EMAIL PROTECTED] 02/03/

Re: AW: Disabling Back Button in IE

2006-02-22 Thread Josh McDonald
des fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61 7 3006 6460 Email: [EMAIL PROTECTED] >>> [EMAIL PROTECTED] 23/02/2006 2:09:28 am >>> Just add docu

Re: Disabling Back Button in IE

2006-02-21 Thread Josh McDonald
Can't (and shouldn't) be done. The closest you're likely to get it open your app in a popup window with no menu, though the user can still hit backspace. A better idea is to fix the (assumed) re-post issues in your application. -Josh -- "His comrades fought beside him, V

Re: [OT] Hiding methods

2006-02-16 Thread Josh McDonald
rstate, and your replacement's replacement adds a class to the package full of "allowed" classes, and it takes him a week to figure out what the bejesus you did. -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland

Re: [OT] Hiding methods

2006-02-16 Thread Josh McDonald
. That's what they're for. -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61 7 3006 6460 Email: [EMAIL PROTECTED] >>>

Re: [OT] Hiding methods

2006-02-16 Thread Josh McDonald
package with public a API that can only be instantiated by your "manager" classes. And it's you're still going to go to programmer hell if you do that. -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland

validation.xml - "Attribute 'indexedProperty' used but not declared" ?

2006-01-31 Thread Josh McDonald
I've inherited an application (again) which supposed works, but on deployment I get this error. Google isn't being much help, can anybody shed some light on the subject? Cheers, -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson

Re: struts javadocs?

2006-01-19 Thread Josh McDonald
Also of course, if you have the source, simply run javadoc and the docs pertaining exactly to your version will be generated for you :) -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst

Re: Struts JSTL & EL

2006-01-19 Thread Josh McDonald
Cheers guys, much appreciated - sorry bout all the (possibly quite dumb) q's :) -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61 7

Re: Struts JSTL & EL

2006-01-19 Thread Josh McDonald
What I mean is, can you use it inside third party (and your own) tags? Also, can you use it to get the result of a method that's not really a GETTER? Such as size() on a collection, even though there's no getSize() method? Cheers, -Josh -- "His comrades fought beside him, V

Re: Urgent help needed

2006-01-18 Thread Josh McDonald
an Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61 7 3006 6460 Email: [EMAIL PROTECTED] >>> [EMAIL PROTECTED] 19/01/2006 4:12:22 pm >>> Hi, Can anybody tell me how can I detec

Re: Struts JSTL & EL

2006-01-18 Thread Josh McDonald
Servlet 2.4 lets you use EL all over the place in JSPs? That rocks me, can someone please send me a link to some good examples of just how out-there you can get? -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the

Re: Best practices questions

2006-01-17 Thread Josh McDonald
Thanks for all your help guys, I knew there'd be a better (than rolling-my-own) solution :) -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Tech

Re: Best practices questions

2006-01-17 Thread Josh McDonald
articular value for "dispatch" or whatever you call it in your instance? -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61 7 3006 6460 Em

Re: Best practices questions

2006-01-17 Thread Josh McDonald
, then calls "addSubheading.submit()" -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61 7 3006 6460 Email: [EMAIL PROTECTED] ***

Re: Best practices questions

2006-01-17 Thread Josh McDonald
Erm, I meant "for struts" rather than "for tomcat". Sorry folks :) -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61 7 300

Best practices questions

2006-01-17 Thread Josh McDonald
ction mapping or of which I am unawares? It seems like many people would have come up against this problem in the past. Cheers, -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Anal

How does work internally?

2006-01-15 Thread Josh McDonald
I can't seem to google an answer for myself. Cheers, -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61 7 300

Re: Wildcards in actionmapping and dodgey URLs

2006-01-12 Thread Josh McDonald
So the answer would be a 404 then? :) It's what I assumed would happen, just wasn't sure. Thanks for the response, -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonal

Wildcards in actionmapping and dodgey URLs

2006-01-12 Thread Josh McDonald
ot;His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61 7 3006 6460 Email: [EMAIL PROTECTED]

Re:

2006-01-12 Thread Josh McDonald
y you'd want to that. So I can have two forms that use the same form, mainly. Otherwise I need multiple entries in the "class->bean name" mapping section of the config file, which just seems unecessary to me. Just trying to clean up this application, it's got more duplica

user@struts.apache.org

2006-01-11 Thread Josh McDonald
Quick question, is it possible to make generate an id="" ? Or to generate a name="" that's not based on the name of the form bean? The whole setup of the taglib doesn't make a lot of sense from where I sit really :( Cheers, -Josh -- "His comrades fough

Re: Noob Q: "Failed to obtain specified collection"

2006-01-09 Thread Josh McDonald
taining really "got the point" of struts, or OO design at all really /rant -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph:

Noob Q: "Failed to obtain specified collection"

2006-01-08 Thread Josh McDonald
kes? I've added bean references at the top of the JSP, they seem OK and don't trigger any errors. Cheers, -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Informa

Re: how to show an image without its address or OutputStream ?

2005-12-19 Thread Josh McDonald
Nope. You can't include an image's data with the html in a request. You'll have to have a servlet dedicated to seving up images using response.getOutputStream(), and in your JSP use an URL for the servlet with an image ID or something similar, like the above post. -Josh --

Re: Input validation and repair

2005-12-18 Thread Josh McDonald
Sweet, that's good to know. Not much use in an environment of such inertia and red tape tho :) I believe it'll be 1.1 for many moons after my contract is up -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was t

Re: Input validation and repair

2005-12-18 Thread Josh McDonald
or now I've just got it in the validate() function of the view/form (not sure where struts terminology ends and local cruft terminology begins) and it's working just about perfect :) I'll definitely be coming back to these posts if I have any lists that need checking etc. Cheers, -Josh -

Input validation and repair

2005-12-18 Thread Josh McDonald
amework allows me to change the data if it's fixable, or just flag it as being bad? Cheers, -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61

Re: Is JSF ready?

2005-12-13 Thread Josh McDonald
Mainly I thought I'd interrupt the ranting :) And what's tomcat if it's not an implementation of JSP / Servlets, and hence a partial implementation of J2EE? -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the b

Re: Is JSF ready?

2005-12-13 Thread Josh McDonald
Last I checked servlets / jsp were part of J2EE. -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61 7 3006 6460 Email: [EMAIL PROTECTED] >>&g

Apologies - Eclipse mailing list??

2005-12-13 Thread Josh McDonald
Hi, aplogies for the OT post, but is anyone here on the eclipse-general or wtp mailing list? I think the signup page is blocked by the admins here, so I can't get the subscribe address, and I'm wondering if any of you guys could mail it to me off-list? Cheers, -Josh -- "His

Re: Noob question...

2005-12-12 Thread Josh McDonald
Thanks, managed to get it working by re-writing a gang of code, so not sure what exactly was the culprit :| -Josh -- "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information

Noob question...

2005-12-12 Thread Josh McDonald
, "His comrades fought beside him, Van Owen and the rest... But of all the thompson gunners- Roland was the best." Josh McDonald Analyst Programmer Information Technology Ph: 61 7 3006 6460 Email: [EMAIL PROTECTED] **

Re: [OT] Re: Validator's indexedListProperty

2005-08-24 Thread Josh Cronemeyer
x27;m getting all the email I send to list list except ones with the subject of this thread. It is really weird. Didn't mean to make you all see double, uh i mean quadruple. Shame on me! -josh > > > - > To unsub

test

2005-08-24 Thread Josh Cronemeyer
Sorry, Having troube getting my mail to the list. Just testing. Pardons, Josh Cronemeyer - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Validator's indexedListProperty

2005-08-24 Thread Josh Cronemeyer
div when there are errors for the given property. Here is the link. http://www.cuberick.com/?p=2 Lemme know if you have any suggestions or questions. On Mon, Aug 22, 2005 at 11:18:50AM -0500, Josh Cronemeyer wrote: > Hi, > > I've been playing with the indexedListProperty to valida

Re: Validator's indexedListProperty

2005-08-24 Thread Josh Cronemeyer
when there are errors for the given property. Here is the link. http://www.cuberick.com/?p=2 Lemme know if you have any suggestions or questions. Hmm, I don't know where my emails are ending up, but this is my 3rd attempt to respond to this (my own) thread. -josh On Mon, Aug 22, 2005

Re: Validator's indexedListProperty

2005-08-24 Thread Josh Cronemeyer
the div when there are errors for the given property. Here is the link. http://www.cuberick.com/?p=2 Lemme know if you have any suggestions or questions. On Mon, Aug 22, 2005 at 03:52:30PM -0500, Josh Cronemeyer wrote: > On Mon, Aug 22, 2005 at 11:18:50AM -0500, Josh Cronemeyer wrote: >

Re: Validator's indexedListProperty

2005-08-23 Thread Josh Cronemeyer
the div when there are errors for the given property. Here is the link. http://www.cuberick.com/?p=2 Lemme know if you have any suggestions or questions. On Mon, Aug 22, 2005 at 03:52:30PM -0500, Josh Cronemeyer wrote: > On Mon, Aug 22, 2005 at 11:18:50AM -0500, Josh Cronemeyer wrote: >

Re: Validator's indexedListProperty

2005-08-22 Thread Josh Cronemeyer
On Mon, Aug 22, 2005 at 11:18:50AM -0500, Josh Cronemeyer wrote: > Hi, > > I've been playing with the indexedListProperty to validate what a user has > selected in my forms. The problem I am having is that when an error message > gets returned, It does not get associated w

Validator's indexedListProperty

2005-08-22 Thread Josh Cronemeyer
i missing? Regards, josh cronemeyer - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Restricting Get requests

2005-07-28 Thread Josh Cronemeyer
the session id if cookies are disabled? -- Josh Cronemeyer Information Network of Kansas "I don't understand," said the scientist, "why you lemmings all rush down to the sea and drown yourselves." "How curious," said the lemming. "The one thing I don'

Re: Subclassing ActionForward

2005-05-17 Thread Josh
ively, you could extend the RequestProcessor and provide a custom implementation of the processRoles method. However, that seems a bit heavy handed for something a simple as checking if a user is logged in. Josh - To unsubscri

[OT] Content Management Systems

2005-02-11 Thread Josh Holtzman
application.   It wouldn’t surprise me if there are at least a few items already available out there, and I’d prefer not to re-invent the wheel if necessary.   Thanks in advance.   Josh Holtzman     tel 310.470.1257 fax 310-362.8545   Sun Microsystems iForce Partner IBM Business Partner  

Struts/Magnolia Integration

2005-02-07 Thread Josh Holtzman
experience you can lend would be greatly appreciated.   We would also appreciate any suggestions or comments about other content management systems that meet this basic criteria.   Thank you all again for your time and assistance in advance.   Best regards,   Josh Holtzman     tel 888-259

Re: Character encoding problems after 1.1 to 1.2.4 upgrade

2005-01-04 Thread Josh Cronemeyer
carab.html -josh - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: no sessions

2004-12-07 Thread josh
created. I was hoping there was something I could put in the web.xml, but it seems like the session-timeout variable is the only related option. It can't help me except by making the sessions drop off more quickly. Any suggestions? thanks in advance josh On Tue, 2004-12-07 at 10:2

no sessions

2004-12-07 Thread josh
Is there a way to specify a struts app not to create a session object? -- Joshua Cronemeyer signature.asc Description: This is a digitally signed message part

Session Invalidation in JSP

2004-12-06 Thread josh
Hi, I have been working on a portal style collection of apps. There is a central app that functions as a simple content management tool. It generates dynamic Header, footer, navigation, etc... Other apps that are "in the portal" then do imports of the central application's Header/footer/nav.

streaming binary data to client

2004-10-15 Thread josh
Is it possible to stream binary data like a pdf to the client browser using struts? I was reading somewhere that I will need to have a seperate servlet to do that part because you can't change the mime type using the struts framework. -- Joshua Cronemeyer signature.asc Description: This is a

inheritance in tiles

2004-10-06 Thread josh
Can a tile definition that extends another definition itself be extended again? definition ^ | child definition ^ | grandchild definition -- Joshua Cronemeyer Thank you. signature.asc Description: This is a digitally signed message part

Re: validator-rules.xml

2004-09-28 Thread josh
On Tue, 2004-09-28 at 15:05, Wendy Smoak wrote: > From: "Anna Kerekes" <[EMAIL PROTECTED]> > Does anyone know where I can get a copy of this file? In its default form? > > Yes, we do. ;) > > (There's one in the 'lib' directory of the Struts 1.2.4 distribution.) > > -- > Wendy Smoak Or, if you

Re: validator-rules.xml

2004-09-28 Thread josh
Find where struts is installed. Go into the webapp directory. You should be able to unzip one of the example war files and then under the WEB-INF directory of whichever example you pick you will find a pristine validator-rules.xml file. I unzipped the examples.war file and found it np. -josh

Struts Console

2004-09-27 Thread josh
ng to support 1.1.3? Just trying to stay current -josh signature.asc Description: This is a digitally signed message part

Re: Content Management Across Multiple Apps

2004-09-17 Thread josh
7 at 08:32, josh wrote: > Still interested to hear if anyone has any ideas about this... > > On Wed, 2004-09-15 at 10:47, josh wrote: > > Hi all, > > > > I am writing multiple apps (~20) that all share the same sidebar > > navigation. > > > > Is there a way

Re: Content Management Across Multiple Apps

2004-09-17 Thread josh
Still interested to hear if anyone has any ideas about this... On Wed, 2004-09-15 at 10:47, josh wrote: > Hi all, > > I am writing multiple apps (~20) that all share the same sidebar > navigation. > > Is there a way to make multiple applications use a central library of >

Re: Validation and Tiles

2004-09-15 Thread josh
ags-html"; prefix="html" %> <%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles"; prefix="tiles" %> I'm leaving out the validation stuff because I you must have it right if it is detecting the errors and sending you somepl

Content Management Across Multiple Apps

2004-09-15 Thread josh
Hi all, I am writing multiple apps (~20) that all share the same sidebar navigation. Is there a way to make multiple applications use a central library of tiles so that I would be able to change or add a link in the library and it would affect all applications? In such a scenario could I add a l

RE: Mail Archive Access

2004-09-14 Thread Josh Holtzman
Text search is not available for: http://mail-archives.apache.org/eyebrowse/SummarizeList?listId=241 Thanks for the alternative access. Josh Holtzman AMERICAN DATA COMPANY Developing and Supporting your Online Applications [EMAIL PROTECTED] Voice: (310) 470-1257 Fax:(310) 362

Mail Archive Access

2004-09-14 Thread Josh Holtzman
Can someone please provide me with the location of a mirror of the mailing list archive? The search feature seems to be down again. Thanks. Josh Holtzman AMERICAN DATA COMPANY Developing and Supporting your Online Applications Sun Microsystems iForce Partner

Re: OT: Re: ibatis and jndi pooling

2004-07-28 Thread josh
your last email in the forum. -josh On Tue, 2004-07-27 at 18:33, Vic Cekvenich wrote: > josh wrote: > I just get a reference to the datasource and close it in > > the destroy method of the plugin. > > Let me ask why do you get a reference to datasource in SqlMaps? > >

Re: ibatis and jndi pooling

2004-07-27 Thread josh
to the DB forcing me to bring down tomcat in order to close them (for my DB admin who gets irate). It makes me think that I am not doing something at the server level that I should be doing. Any ideas? cheers, josh On Tue, 2004-07-27 at 14:31, Vic Cekvenich wrote: > josh wrote: > > I am tryin

  1   2   >