Re: CSS background images, struts2

2009-08-04 Thread Andy Engle
I made my CSS files out of JSPs, like so: <%@ page contentType="text/css"%> <%@ taglib uri="http://java.sun.com/jstl/core"; prefix="c" %> body { background-color: #ECEDF1; font-family: 'Lucida Grande',Geneva,Verdana,Arial,sans-serif; background-image: url(); margin-top: 0px; padding: 0;

Jetty / Apache / mod_proxy config with sslext

2009-05-04 Thread Andy Engle
Hi all, I am using sslext in my Struts application to support http/https, and attempting to get all this to run on a Jetty server behind an Apache 2 web server. The application runs fine, but I am really running into trouble with my configuration, particularly since sslext forwards to the spe

Displaytag, number formatting, and sorting

2005-01-06 Thread Andy Engle
Hi all, I am using displaytag, and I would like to have a sortable column of large numbers. I want to format these numbers (they're going to be dollar amounts, like 1,400.00, 6.99, and the like), but it seems that I cannot have the fancy number formatting and have that column sortable all at the

Gracefully handling invalid paths

2004-09-08 Thread Andy Engle
Hi all, I am wondering how I should handle invalid path situations within my Struts application. I want to be able to have a "catch-all" page whenever someone enters an invalid path so that they don't see that ugly Tomcat 404 page. How might I go about doing something like that? Thanks very muc

RE: Displaying bean values within tiles

2004-08-13 Thread Andy Engle
Whatever() in step #1. Is that the way this thing works? Thank you for your help! Andy --- Jim Barrows <[EMAIL PROTECTED]> wrote: > > > > -Original Message- > > From: Andy Engle [mailto:[EMAIL PROTECTED] > > Sent: Friday, August 13, 2004 12:05 PM

Displaying bean values within tiles

2004-08-13 Thread Andy Engle
Hi all, I hate to ask a real, boring, non-OT question on a Friday, but I am working with a Struts application in which I am using tiles to organize my views. What I want to be able to do is pass in a bean with a String (or, "string beans" for all you farmer types out there) into my tiles setup an

Re: [OT] FW: Timothy J Theis is out of the office

2004-06-24 Thread Andy Engle
Robert Taylor <[EMAIL PROTECTED]> wrote: > Should we call Mike, and tell him to tell Tim to unsubscribe when > he is out of the office :) I think we should. How annoying! Or we could have one of the list managers to unsubscribe him for us. Andy --

Re: a fine example of an example

2004-06-21 Thread Andy Engle
josh <[EMAIL PROTECTED]> wrote: > Hi, > > I have recently completed my first struts application and I am > beginning to feel comfortable with the framework. What I would like > now is to look at someone else's code for a really good example of > how things should be done. Hi Josh. I always tho

Re: Charts with struts

2004-06-14 Thread Andy Engle
René_Zbinden <[EMAIL PROTECTED]> wrote: > Hi everybody > does anybody know a way to dynamically create a chart and display it > in a JSP. I will read the underlying data from a database. I used the stuff from jpowered.com and it works pretty well. I am not to the point yet where I have the lice

MySQL, iBatis, and mysql_insert_id

2004-06-03 Thread Andy Engle
Hi all, I am working on a Struts app where I will be slapping some stuff into a database table, and from there I will need to get an insert ID back. I am using a MySQL database, my database stuff is handled by iBatis, and I am assuming that I need to use the MySLQ command mysql_insert_id() to get

Re: From bean into "for" loop

2004-05-24 Thread Andy Engle
Hi all, Thanks to all of you who responded to my question. I certainly should be able to solve the problem now. I appreciate your responses! Have a great day. Andy - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

From bean into "for" loop

2004-05-24 Thread Andy Engle
Hi all, I am trying to do something as simple as writing a FOR loop with some information that I have in a bean, but this is proving to be quite a bit more cumbersome and difficult than I thought it would be. For some reason, everything I try seems to fail. Here is a short example of what I'm tr

[ot] eclipse vs. IDEA

2004-05-19 Thread Andy Engle
Hi all, I am wondering (for you Mac users out there) if IDEA is less of a resource hog than eclipse? When I fire up eclipse on my Mac it seems like that thing takes a lot o' juice. Is IDEA just as bad, or is it a little lighter? Thanks, Andy --

Re: [OT] Jobs

2004-05-13 Thread Andy Engle
James Mitchell <[EMAIL PROTECTED]> wrote: > I am trying to find 10 descent struts developers to fill open > positions. Might any of those positions be in Chicago? Andy - To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

Re: [OT] Beer

2004-04-19 Thread Andy Engle
Bill Siggelkow <[EMAIL PROTECTED]> wrote: > I like beer -- I can't get enough of it -- I prefer free beer. Have you been drinking excessive amounts within the last few hours prior to posting this message? Andy - To unsubscrib

Re: when not to use an ActionForm

2004-04-14 Thread Andy Engle
[EMAIL PROTECTED] wrote: > Richard, > Its not necessary to use ActionForm, but it is always better to use > one(its my philosophy). But yes it will work the way you are doing > it. But i rather prefer a ActionForm which can also help in future > for any validation or in future if decided to add m

Easily printing out session values

2004-04-07 Thread Andy Engle
Hi all, Is there a way to simply print out session values, such as through the bean:write tag or something like that? If there is, could you please share? It seems like it should be easily done, but I can't find anything that describes how to. Thanks! Andy --

Re: [FRIDAY OT] .net or websphere?

2004-04-02 Thread Andy Engle
I agree. --- Mike Zatko <[EMAIL PROTECTED]> wrote: > Java is cooler. Use that in your debate. > > [EMAIL PROTECTED] wrote: > > >Hi, our group will have a debate over the superiority of .Net vs > that of > >Websphere.. I have never used .net. > >Can anyone give me any feedback on it? > > > >Any

Re: [FRIDAY] humour

2004-04-02 Thread Andy Engle
Niiice. I thought this was pretty funny too, featured on google.com yesterday: http://www.google.com/jobs/lunar_job.html Andy --- Adam Hardy <[EMAIL PROTECTED]> wrote: > Since it's Friday and I felt in need of a little light relief, I > looked > through my collection of old humour-spam and fo

iBatis caching not working

2004-04-01 Thread Andy Engle
Hi all, I can't get iBatis caching to work for anything. Worse yet, it seems that I am doing what the error messages tell me to fix, but still nothing. The message I have been getting is: org.jdom.JDOMException: Error on line 9: Attribute "implementation" must be declared for element type "cach

RE: Handling parameters not in a form bean

2004-03-30 Thread Andy Engle
Craig Berry <[EMAIL PROTECTED]> wrote: > Easily done; just grab them using getParameter on the request object > that's passed to your execute method. Ahh that sounds easy -- that must've been the one thing I didn't try. I'll give it a whirl. Thanks! Andy

Handling parameters not in a form bean

2004-03-30 Thread Andy Engle
Hi all, I am wondering if there is a way that I can access submitted form information in an action that may not be a member of any form bean? Do name/value pairs submitted to an action *have* to be in a form bean? If they don't, how could they be accessed? I have a situation where my applicatio