Re: html:link passing multiple parameters

2004-02-15 Thread Adam L
There's also the use of c:url. The catch there is that if you incude the resulting url in a html:link, it will be double contexted, which means you should use a standard href tag and use a c:out to spit out the final url. - Original Message - From: Nick Faiz [EMAIL PROTECTED] To:

Re: Orkut - Done!

2004-02-09 Thread Adam L
day late, dollar short. if someone would pass along the invitation, I'd be much obliged. thanks! -- adam - Original Message - From: Vic Cekvenich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 09, 2004 10:16 AM Subject: Re: Orkut - Done! I invited the people so

Re: Tiles And Frames

2004-02-05 Thread Adam L
According to: http://www.w3.org/TR/REC-html40/present/frames.html 16.2 Layout of frames An HTML document that describes frame layout (called a frameset document) has a different makeup than an HTML document without frames. A standard document has one HEAD section and one BODY. A frameset

SOLVED: Re: problems w/ logging.. again

2004-01-21 Thread Adam L
-0800 Hi Adam, If you're using JBoss you need to edit the server's log4j.xml config file. For 3.2.2 it lives in $JBOSS_HOME/server/all|default|minimal/conf/. Edit the one in the server subdirectory you deploy your app to. HTH, Curtis Adam L wrote: I've scoured

problems w/ logging.. again

2004-01-19 Thread Adam L
I've scoured the archives. Ive tried a million different log4j.properties configurations, some with .xml, some with commons-logging.properties. I've read the links to the apache site that seem to focus mainly on how to use logging from the programmatic aspect (and had no luck with the examples

Re: problems w/ logging.. again

2004-01-19 Thread Adam L
and log4j in some. btw, in struts 1.1, i don't think debug param plays any role. regards Navjot Singh -Original Message- From: Adam L [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 20, 2004 11:09 AM To: Struts Users Mailing List Subject: problems w/ logging.. again I've scoured

Workflow extension (living logic) and debug

2004-01-18 Thread Adam L
I've been plagued by the stupid virus. I cannot find anyway to turn on the debug logging for the workflow extensions to get the information as shown on the bottom of http://www.livinglogic.de/Struts/demoApp.html I did it once before, recall it being a minor thing, but now... I can't find

Re: [OT] Date problerm

2003-12-13 Thread Adam L
very basic jdbc. as each db vendor is bound to have a different format for their dates, especially compounded with locale, let the driver handle the abstraction for you: PreparedStatement pstmt = con.prepareStatement(insert into [table] values (?)); pstmt.setDate(1, myDateValue); int retval =

Re: [ot] image file to byte array

2003-12-03 Thread Adam L
It might be your output stream.. here's my code, which does work: File imagedata = new File(img.getImageLocation(), img.getImageId() ); resp.setContentType( img.getImageType() ); RandomAccessFile raf = new RandomAccessFile( imagedata, r ); resp.setContentLength(

Re: IDE

2003-11-19 Thread Adam L
I personally use Gel (www.gexperts.com). It understand taglibs, it understands java, it's native code for windows, it has code completion, integrates with ant and cvs, jsp editing, has a decent xml viewer (collapse/expand branches), validates xml (based on well formed and completeness). The

Re: workflow extension question

2003-10-07 Thread Adam L
Matthias: Thank you for the clearer explanation. If I understand this now, if I change all my current workflow violation forwards to be of type ForwardNextStateViolationAction (they are all currently just plain actions with a forward, no type specified), then the existing workflow will

Re: Wizard with a Twist

2003-10-07 Thread Adam L
For what it's worth, check out the workflow extension, http://www.livinglogic.de/Struts It takes a bit of tinkering with to fully understand and appreciate its power (check the archives for a very recent dialog between myself and its designer, Matthias Bauer). It's very simple in concept and

Re: Creating a bean!!!!

2003-10-07 Thread Adam L
First:you don't need to use excessive punctuation in your subject titles. More often than not it's bound to get your post ignored or pushed aside. Second: I don't understand from your message if you DO or DO NOT have a class named Book that resides in the package books as in: code

Re: Still an issue: Quartz plugin shutdown problem

2003-10-02 Thread Adam L
I'm going to go out on a limb here and suggest that: 1) You haven't yet received an answer from this list after several attempts, which is a struts list, on a component by somebody other than ASF. Perhaps they'd be a better route? 2) Not having used Quartz, the best guess i can suggest is that

workflow extension question

2003-10-02 Thread Adam L
Matthias: Now to take you up on your offer.is something missing? What thoughts do you have on a end all previous workflows property? The thought is this: - my user is working through a process, and gets bored or distracted - rather than using the provided cancel button,

Re: an exception problem!!!

2003-09-30 Thread Adam L
the source of the problem is detailed in the exception you posted. - Original Message - From: khabot zakaria [EMAIL PROTECTED] To: Struts-user [EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 11:54 AM Subject: an exception problem!!! Hi, I have this exception message and don't know

Re: [Question] Problem with bean:include.

2003-09-28 Thread Adam L
Where's the connection between 'Head', 'headTemplate' and 'headTemp' ? Perhaps it's the mismatch of names that's causing grief... - Original Message - From: Rajesh M Vasudevan [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Sunday, September 28, 2003 7:33 AM

Re: workflow - Re: integration with other app

2003-09-27 Thread Adam L
Matthias: I've been dinking with this workflow extension for awhile, amidst other madness, and here's what I've come to observe. Please let me know if my observations are correct, and if there's not a better/easier way to achieve my goals: I have a logical process flow for achieving the

Re:[PARTLY SOLVED] workflow - Re: integration with other app

2003-09-27 Thread Adam L
, have I grokked this properly ? Is there something else Im missing? -- adam - Original Message - From: Adam L [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, September 27, 2003 2:58 PM Subject: Re: workflow - Re: integration with other app Matthias

[OT] Subject line filter tag

2003-09-16 Thread Adam L
To the powers that be: Is there a particular reason there's no list name header in the subject lines, ie [struts-users], for easy filtering from all the other spam and junk mail? I realize [struts-users] is a rather lengthy segment in the subject line, so perhaps it could be abbreviated..

Re: Validating uploaded file as an image only

2003-08-22 Thread Adam L
I do it the brute force way: snip - FormFile image; java.awt.Image makeimg = null; try { makeimg = Toolkit.getDefaultToolkit().createImage( image.getFileData() ); // wait for the image to be loaded/created Canvas cv = new Canvas();

Re: J2EE certified

2003-08-14 Thread Adam L
It's filed under URGENT This list is about using Struts. Yes, Struts is built on Java technology. Sun is the producer of Java. They've got all the info you could ever want about Java, and associated certifications, and forums to chat with other java dorks about Java in general, and various

Re: Getting values from a Flash form

2003-08-14 Thread Adam L
You're going to have to treat it like any other outgoing post/get request using ActionScript. Have it sent to an Action and you should be good to go. There's nothing magical about Struts -- no panacaea. It's just a nice framework to handle all of the html and http stuff you should already be

Re: J2EE certified

2003-08-14 Thread Adam L
J2EE encompasses a lot more than just a web application. JMS, EJB, XML processing/manipulation, SOAP, CORBA / IDL, JavaMail.. just to begin with. - Original Message - From: Mohd Amin Mohd Din [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, August 13,

Re: Welcome.do;jsessionid=C36048429636E35FB1ECAA5978E23132

2003-08-04 Thread Adam L
I've seen this same issue since moving to 1.1. I'm running JBoss 3.0.7. Other apps I have running (non struts apps, or if they are, they must be using an earlier version) are using cookies w/o a problem.My app was using cookies before the upgrade. I've tried so many things: -- trying to

Re: Birthdate validation ?

2003-07-24 Thread Adam L
Are you drunk again? (= It does understand leap years. 2004 is a leap year. which means 2/29/04 is a valid date. which means 2/29/03 is not. so, with lenient(true) 2/29/03 - 3/1/03, 2/29/04 - 2/29/04 with lenient(false) 2/29/03 - exception; 2/29/04 - 2/29/04 That's the purpose of