RE: db error

2004-03-25 Thread McCormack, Chris
Check your database is up before trying to connect to it. If it is and you can ping the database from your application server box, then check your spelling in the data source definition. Chris McCormack -Original Message- From: Rajat Pandit [mailto:[EMAIL PROTECTED] Sent: 25 March 2004

Re: db error

2004-03-25 Thread Rajat Pandit
, Chris [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, March 25, 2004 4:46 PM Subject: RE: db error Check your database is up before trying to connect to it. If it is and you can ping the database from your application server box, then check your spelling

RE: db error

2004-03-25 Thread McCormack, Chris
- From: Rajat Pandit [mailto:[EMAIL PROTECTED] Sent: 25 March 2004 11:11 To: Struts Users Mailing List Subject: Re: db error Thanks chris, so this is not because of any missing classes or jar files? is this a connectivity issue? the database server isup and my other applications sqlplusw can

Re: db error

2004-03-25 Thread Rajat Pandit
PROTECTED] Sent: Thursday, March 25, 2004 4:58 PM Subject: RE: db error It doesnt appear to be a case of missing classes etc This exception seems pretty descriptive : UnavailableException: Initializing application data source org.apache.struts.action.DATA_SOURCE It looks like struts cannot

Re: db error

2004-03-25 Thread Larry Meadors
Subject: RE: db error Check your database is up before trying to connect to it. If it is and you can ping the database from your application server box, then check your spelling in the data source definition. Chris McCormack -Original Message- From: Rajat Pandit [mailto:[EMAIL PROTECTED] Sent

Re: db error

2004-03-25 Thread Daniel H. F. e Silva
can access it. any pointers? sorry about read reciept thing in my previous mail. rajat - Original Message - From: McCormack, Chris [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, March 25, 2004 4:46 PM Subject: RE: db error Check your database

Re: Regarding Error in Validator - Urgent Help

2004-03-10 Thread Geeta Ramani
Hi Ramachandran: Here's a suggestion: look at line number 63 of the servlet (in your work directory) generated by your first.jsp. See what the code there is and that may give you an idea of what's going wrong.. (seems like a null pointer somewhere, so try to see what may be null in that line of

Re: validation error in FormBean, where to redirect next?

2004-02-25 Thread Niall Pemberton
Yes - Original Message - From: Marco Mistroni [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 10:51 AM Subject: validation error in FormBean, where to redirect next? Hi all, Assume that I have following struts-config.xml action

Re: FileUploading Error

2004-02-18 Thread Mark Shifman
: Re: FileUploading Error At 9:35 AM -0500 2/16/04, Mark Shifman wrote: In trying to bulletproof file uploading I noticed something odd. If I type some junk in the field for the file name and hit Submit, I get a file of size 0. I can deal with that. If I type in a directory name in my home

Re: FileUploading Error

2004-02-16 Thread Joe Germuska
At 9:35 AM -0500 2/16/04, Mark Shifman wrote: In trying to bulletproof file uploading I noticed something odd. If I type some junk in the field for the file name and hit Submit, I get a file of size 0. I can deal with that. If I type in a directory name in my home directory (admittedly a dumb

RE: FileUploading Error

2004-02-16 Thread Andrew Hill
using? -Original Message- From: Joe Germuska [mailto:[EMAIL PROTECTED] Sent: Tuesday, 17 February 2004 00:13 To: Struts Users Mailing List Subject: Re: FileUploading Error At 9:35 AM -0500 2/16/04, Mark Shifman wrote: In trying to bulletproof file uploading I noticed something odd. If I

RE: Validation error messages

2004-02-02 Thread Hunt, Steve
in the resource file where the error message is defined use {0} to parametize it. eg address.invalid=Address {0} is not a valid email address. When you construct the actionError add the parameter to the constructor ie. new ActionError(address.invalid, address) Regards Steve -Original

RE: Validation error messages

2004-02-02 Thread Glenn, Scott
- From: Hunt, Steve [mailto:[EMAIL PROTECTED] Sent: 02 February 2004 15:49 To: 'Struts Users Mailing List' Subject: RE: Validation error messages in the resource file where the error message is defined use {0} to parametize it. eg address.invalid=Address {0} is not a valid email address. When

RE: Validation error messages

2004-02-02 Thread Hunt, Steve
' Subject: RE: Validation error messages Thanks Steve, That's what I'm doing when I implement my own custom validation routines, but what about the standard Struts validation rules (which are implemented declaratively), so you don't explicitly create any ActionError objects?? For example, we

RE: Validation error messages

2004-02-02 Thread Glenn, Scott
As long as the error message is set up as I said the validation framework should put the field name at the start of the message... But not the value in the field. so in your example below you might get an error message like; Email address is a required field [[SMG]] Yeah, that's

Re: Tomcat error

2004-02-02 Thread Claire Wall
Just thought i'd add that this error might be something completey different and not necessarily the reason why Tomcat is throwing LifeCycle exceptions.. just i saw the error and put 2 and 2 together.. - Original Message - From: Claire Wall [EMAIL PROTECTED] To: Struts Users Mailing List

Re: Tomcat error with compiling JSPs

2004-01-15 Thread Claire Wall
to be installed on a server where we can't dictate the install path of Tomcat so this is not a solution. - Original Message - From: McCormack, Chris [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 15, 2004 12:11 PM Subject: RE: Tomcat error with compiling JSPs [javac] javac

Re: Tomcat error with compiling JSPs

2004-01-15 Thread Max Cooper
This seems telling: [javac] javac: invalid flag: C:\Program It seems like some kind of path with a space in it is being passed to the compiler, but it is not being quoted properly. javac -classpath C:\Program Files\somelib\lib.jar ... (should be: javac -classpath C:\Program

Re: Tomcat error with compiling JSPs

2004-01-15 Thread Claire Wall
to be the problem. - Original Message - From: Max Cooper [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, January 15, 2004 1:31 PM Subject: Re: Tomcat error with compiling JSPs This seems telling: [javac] javac: invalid flag: C:\Program It seems like

RE: Tomcat error with compiling JSPs

2004-01-15 Thread Kevin A. Palfreyman
-Original Message- From: Claire Wall [mailto:[EMAIL PROTECTED] Sent: 15 January 2004 12:53 To: Struts Users Mailing List Subject: Re: Tomcat error with compiling JSPs i see what you're saying, but I've got about 6 applications running on Tomcat on this server and they all work fine

Re: Tomcat error with compiling JSPs

2004-01-15 Thread Martin Gainty
: Thursday, January 15, 2004 8:44 AM Subject: Re: Tomcat error with compiling JSPs the classpath of the server only points to the bin folder of the JDK. It still doesn't explain why this application isnt working and all of the rest are, since all our applications are installed via a WAR file and I do

Re: Tomcat error with compiling JSPs

2004-01-15 Thread Claire Wall
their tomcat installed in. - Original Message - From: Martin Gainty [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, January 15, 2004 1:43 PM Subject: Re: Tomcat error with compiling JSPs I ran into this exact error when I installed IBM JDK with Websphere

Re: Tomcat error with compiling JSPs

2004-01-15 Thread Claire Wall
this helps. Kev -Original Message- From: Claire Wall [mailto:[EMAIL PROTECTED] Sent: 15 January 2004 12:53 To: Struts Users Mailing List Subject: Re: Tomcat error with compiling JSPs i see what you're saying, but I've got about 6 applications running on Tomcat on this server

Re: Tomcat error with compiling JSPs

2004-01-15 Thread Martin Gainty
I expect politicians to lie not engineers! *Glad that solved your problem* Martin - Original Message - From: Claire Wall [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, January 15, 2004 8:56 AM Subject: Re: Tomcat error with compiling JSPs sorry, i lied

RE: Tomcat error with compiling JSPs

2004-01-15 Thread David Friedman
: Thursday, January 15, 2004 10:47 AM To: Struts Users Mailing List Subject: Re: Tomcat error with compiling JSPs I expect politicians to lie not engineers! *Glad that solved your problem* Martin - Original Message - From: Claire Wall [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL

RE: Generic Error Handler

2004-01-12 Thread Norm Deane
We generally map HTTP 400, 500, and 404 to an error handler action via the web.xml like so... error-page error-code500/error-code location/Error.do/location /error-page error-page error-code404/error-code location/InvalidUrl.do/location /error-page

RE: Generic Error Handler

2004-01-12 Thread Matthew J. Vincent
Would this be better handled in the web.xml Matt -Original Message- From: Matthew J. Vincent [mailto:[EMAIL PROTECTED] Sent: Monday, January 12, 2004 11:08 AM To: Struts Users Mailing List Subject: Generic Error Handler I searched the archives and I must have missed it. I want to

RE: Generic Error Handler

2004-01-12 Thread Robert Taylor
Matthew, What we do is define this in our web.xml file so that when the container gets a 500, 404, etc... error status code, I can then assign the appropriate Struts action to handle it. For example: error-page error-code500/error-code location/c/systemError/location

Re: 403 error page not being displayed

2004-01-08 Thread Kris Schneider
Looks like Struts 1.1 sends a 400 and the current nightly sends a 403. Maybe it's a TC bug. Which version are you using? Quoting Matt Raible [EMAIL PROTECTED]: I have roles configured on my /editUser action mapping so that only administrator can access it. When I try to request the page as a

Re: 403 error page not being displayed

2004-01-08 Thread Kris Schneider
Huh. Both 4.1.29 and 5.0.16 seem to work for 400 and 403 with a simple error-page test (no Struts involved). AFAIK, the roles check is performed within RequestProcessor.processRoles which just does an HttpServletResponse.sendError if the user in not in the required role. At that point, the

RE: 403 error page not being displayed

2004-01-08 Thread Matt Raible
:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 12:05 PM To: Struts Users Mailing List Subject: Re: 403 error page not being displayed Huh. Both 4.1.29 and 5.0.16 seem to work for 400 and 403 with a simple error-page test (no Struts involved). AFAIK, the roles check is performed

RE: 403 error page not being displayed

2004-01-08 Thread Matt Raible
List' Subject: RE: 403 error page not being displayed I'm currently experiencing the issue with Tomcat 4.1.29, JDK 1.4.2 on Windows XP and Fedora Core 1. The header (from Mozilla) looks fine: HTTP/1.x 403 User is not authorized to access action /editUser Content-Type: text/html

Re: 403 error page not being displayed

2004-01-08 Thread Jason Lea
the HTTP_STATUS code so I can disable the filter when the error-code is 403? Thanks, Matt -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED] Sent: Thursday, January 08, 2004 1:14 PM To: 'Struts Users Mailing List' Subject: RE: 403 error page not being displayed I'm currently

RE: [other] error tag PS

2003-12-22 Thread Peter Sloots
Hi withbean:message key=card.title/ you can read messages from your properties file btw, If I get nothing back in JSP it's because I forget the taglibs... %@ taglib uri=/tags/struts-html prefix=html % %@ taglib uri=/tags/struts-bean prefix=bean % *** REPLY SEPARATOR *** On

RE: [other] error tag

2003-12-22 Thread Noel E. Lecaros
To: Struts Users Mailing List Subject: RE: [other] error tag Hi Noel, Thanks for that. Since that post, I have opted for constructing an ActionMessages object and populating it with ActionMessage (s). This being because I hear ActionError/s are deprecated as of Struts 1.2. I have set up

Re: BeanUtils.populate Error

2003-12-21 Thread Raman
... -- Raman [EMAIL PROTECTED] - Original Message - From: Mark Lowe [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, December 20, 2003 7:59 PM Subject: Re: BeanUtils.populate Error On 20 Dec 2003, at 11:28, Raman wrote: ya the properties are same both

RE: [other] error tag

2003-12-21 Thread Noel E. Lecaros
Hi Jerald, The single-string ActionError class constructor that you are invoking interprets the parameter passed to it as a key of a message string defined in your Application.properties file (this file is usually placed under the classes/resources directory). HTH Noel -Original

RE: [other] error tag

2003-12-21 Thread Jerald Powel
Hi Noel, Thanks for that. Since that post, I have opted for constructing an ActionMessages object and populating it with ActionMessage (s). This being because I hear ActionError/s are deprecated as of Struts 1.2. I have set up the Application.properties file under

RE: [other] error tag PS

2003-12-21 Thread Jerald Powel
it just occurrred to me, perhaps it may be due to the JSP: html:errors / as ActionMessages are not soley used for error handling? If this is the case, what error tag will extract the error labels defined in my Application.properties? thanks again G -

Re: BeanUtils.populate Error

2003-12-20 Thread Mark Lowe
When are you getting this? Are you using dynaforms and/or validator action forms? On 20 Dec 2003, at 09:36, Raman wrote: I am facing a error in Struts at BeanUtils.populate and not able to trace the cause. has anyone already face this problem? if yes what the cause. Pls help. type Exception

Re: BeanUtils.populate Error

2003-12-20 Thread Raman
Hi I am using Validator form... is there something i am doing wrong in that? -- Raman - Original Message - From: Mark Lowe [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, December 20, 2003 4:11 PM Subject: Re: BeanUtils.populate Error When are you

Re: BeanUtils.populate Error

2003-12-20 Thread Firat TIRYAKI
check your form and bean properties, types, ... they have to be same... F. - Original Message - From: Raman [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, December 20, 2003 12:41 PM Subject: Re: BeanUtils.populate Error Hi I am using Validator form

Re: BeanUtils.populate Error

2003-12-20 Thread Mark Lowe
, at 10:41, Raman wrote: Hi I am using Validator form... is there something i am doing wrong in that? -- Raman - Original Message - From: Mark Lowe [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, December 20, 2003 4:11 PM Subject: Re: BeanUtils.populate Error

Re: BeanUtils.populate Error

2003-12-20 Thread Raman
: Saturday, December 20, 2003 4:20 PM Subject: Re: BeanUtils.populate Error check your form and bean properties, types, ... they have to be same... F. - Original Message - From: Raman [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, December 20, 2003 12

Re: BeanUtils.populate Error

2003-12-20 Thread Mark Lowe
TIRYAKI [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, December 20, 2003 4:20 PM Subject: Re: BeanUtils.populate Error check your form and bean properties, types, ... they have to be same... F. - Original Message - From: Raman [EMAIL PROTECTED

Re: BeanUtils.populate Error

2003-12-20 Thread Mark Lowe
-- Raman - Original Message - From: Firat TIRYAKI [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, December 20, 2003 4:20 PM Subject: Re: BeanUtils.populate Error check your form and bean properties, types, ... they have to be same... F. - Original

Re: FormBean error using Struts 1.1 and Tomcat 5

2003-12-05 Thread John Ferguson Smart
Forget it, guys, I called an exorsist and a vodoo-specialist, who told me to install Tomcat 5.0.16, and now it works. John Ferguson Smart wrote: Anyone got any ideas ? John Ferguson Smart wrote: Hi, I've run into a strange problem using Struts 1.1 with Tomcat 5.0.14 . In a page that

Re: FormBean error using Struts 1.1 and Tomcat 5

2003-12-04 Thread John Ferguson Smart
Anyone got any ideas ? John Ferguson Smart wrote: Hi, I've run into a strange problem using Struts 1.1 with Tomcat 5.0.14 . In a page that previously worked fine (of course...), I now get a JSP page displays the following message : [ServletException in:/admin/tiles/welcomeBody.jsp]

Re: FormBean error using Struts 1.1 and Tomcat 5

2003-12-04 Thread Kris Schneider
Couple of questions: Are the Struts and supporting JAR files installed in your app's WEB-INF/lib or someplace else like $CATALINA_HOME/common/lib? Are you intentionally using JSTL 1.0? With TC 5, you probably want JSTL 1.1. How are you doing your deployment/update? For example, are you copying

RE: Requiredif error?

2003-10-31 Thread Ramadoss Chinnakuzhandai
Try var-namefieldTest[0]/var-name -Original Message- From: Greg Hess [mailto:[EMAIL PROTECTED] Sent: Saturday, October 25, 2003 12:21 PM To: Struts Subject: Requiredif error? Hi All, I get the following error when I submit my form using the requiredif: 25 Oct 2003 12:03:13,311 -

Re: Multiple error pages from validate method

2003-10-24 Thread Geeta Ramani
Here's one hacky way of doing this: Set a request attribute, something like goToErrorPage2 right after you validate. On the top of the error page if that attribute goToErrorPage2 is nonnull, then forward to the second error page else simply render the normal error page.. [EMAIL PROTECTED] wrote:

Re: Multiple error pages from validate method

2003-10-24 Thread VKeswani
Thanks geeta! Yes that might be a roundabout way of doing it.Lemme try! Geeta Ramani [EMAIL PROTECTED] 10/24/2003 02:36 PM Please respond to Struts Users Mailing List To: Struts Users Mailing List [EMAIL PROTECTED] cc: Subject:Re: Multiple error pages

RE: Multiple error pages from validate method

2003-10-24 Thread Chen, Gin
-Original Message- From: Geeta Ramani [mailto:[EMAIL PROTECTED] Sent: Friday, October 24, 2003 3:36 PM To: Struts Users Mailing List Subject: Re: Multiple error pages from validate method Here's one hacky way of doing this: Set a request attribute, something like goToErrorPage2 right after you

RE: Multiple error pages from validate method

2003-10-24 Thread VKeswani
Thanks Tim.This too makes good sense..thanks Chen, Gin [EMAIL PROTECTED] 10/24/2003 02:45 PM Please respond to Struts Users Mailing List To: 'Struts Users Mailing List' [EMAIL PROTECTED] cc: Subject:RE: Multiple error pages from validate method Here's

Re: Multiple error pages from validate method

2003-10-24 Thread Geeta Ramani
); } } Do the same for edit. Of course there are a lot of other ways to do this as well. -Tim -Original Message- From: Geeta Ramani [mailto:[EMAIL PROTECTED] Sent: Friday, October 24, 2003 3:36 PM To: Struts Users Mailing List Subject: Re: Multiple error pages from validate

Re: Multiple error pages from validate method

2003-10-24 Thread Max Cooper
The input page is specified in the action mapping. Use separate action mappings for each input page (add.jsp and edit.jsp). You can use the same Action class for both. -Max - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 24, 2003 12:15 PM

Re: struts error on console screen.

2003-10-16 Thread Caroline Lauferon
this is not an error message, but an information message!! It informs you that the MessageResources are being configured from your file org.apache.struts.action.ActionResources, and that if there is no message for the key you ask for, null will be returned. Hope it helps! Caroline Does

RE: struts error on console screen.

2003-10-16 Thread Viral_Thakkar
Thanks Caroline for the info -Original Message- From: Caroline Lauferon [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 6:15 PM To: Struts Users Mailing List Subject: Re: struts error on console screen. this is not an error message, but an information message!! It informs

Re: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread Caroline Jen
My welcome page is displayed as the very first screen without any problem. The page has logic:present and logic:notPresent tags, which test if any registered user has logged on. The problem occurred after I filled out username, and clicked the Submit button. Thereafter, the welcome page was

Re: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread amind
Your missing html:form My welcome page is displayed as the very first screen without any problem. The page has logic:present and logic:notPresent tags, which test if any registered user has logged on. The problem occurred after I filled out username, and clicked the Submit button.

Re: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread amind
You're missing html:form My welcome page is displayed as the very first screen without any problem. The page has logic:present and logic:notPresent tags, which test if any registered user has logged on. The problem occurred after I filled out username, and clicked the Submit button.

RE: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread Karr, David
I would want to see your web.xml, and any information that shows up in the Tomcat console (not log file). -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] I am experimenting a basic application - logon. I got the first two screens working without problem. However,

RE: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread Srinivas Gunturu
I have seen this behavior when the jsp page I am forwarding to is not found such as in wrong location, wrong case (Welcome.jsp vs welcome.jsp). But we are using tiles so not sure if it is tiles specific or not. Hope this helps. [EMAIL PROTECTED] 09/30/03 10:28AM I would want to see your

RE: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread Richard J. Duncan
,   Rich -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 3:05 AM To: Struts Users Mailing List Subject: Re: No Error Message But A Blank Page Is Displayed. Your missing html:form My welcome page is displayed as the very first screen

RE: No Error Message But A Blank Page Is Displayed.

2003-09-30 Thread Caroline Jen
/perform tells struts that your method wrote the response itself. Regards,   Rich -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 3:05 AM To: Struts Users Mailing List Subject: Re: No Error Message But A Blank Page Is Displayed

Re: No Error Message But A Blank Page Is Displayed.

2003-09-29 Thread Abhijeet Mahalkar
have u updated the Resource files... ? abhijeet - Original Message - From: Caroline Jen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 9:45 AM Subject: No Error Message But A Blank Page Is Displayed. I am experimenting a basic application - logon. I got the

Re: No Error Message But A Blank Page Is Displayed.

2003-09-29 Thread Caroline Jen
Which resource file needs to be updated? I have checked the application.properties. Nothing in that file is relevant to my problem. --- Abhijeet Mahalkar [EMAIL PROTECTED] wrote: have u updated the Resource files... ? abhijeet - Original Message - From: Caroline Jen [EMAIL

Re: No Error Message But A Blank Page Is Displayed.

2003-09-29 Thread Kwok Peng Tuck
You might want to put System.out.println(Line [number]) ; to see the flow in your action. BTW did you actually put anything(like hello world) in Welcome.jsp ? Caroline Jen wrote: Which resource file needs to be updated? I have checked the application.properties. Nothing in that file is

RE: No Error Message But A Blank Page Is Displayed.

2003-09-29 Thread Chen, Gin
I'm not sure where in your scenario the error was supposed to occur. I would suggest just right clicking on the blank page and see what the src holds. If you change the last line to: ActionForward valForward = mapping.findForward(Constants.VALID); servlet.log(Forwarding to: +

Re: [OT] Error Messages using standard security constraint?

2003-09-28 Thread Max Cooper
Do you have the form-error-page set to something different than the form-login-page? That is the normal means to inform the user that something was wrong with the username/password combo they typed in. Of then the form-error-page is nearly identical to the form-login-page, except that a bad

RE: Quartz error and Struts plugin for struts

2003-09-25 Thread Holman, Cal
-Original Message- From: Mick Knutson [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 19:12 To: Struts Users Mailing List Subject: Re: Quartz error and Struts plugin for struts I also have the following execute method which is not called: /** * Method execute

Re: Quartz error and Struts plugin for struts

2003-09-25 Thread Mick Knutson
--- - Original Message - From: Holman, Cal [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, September 25, 2003 4:58 AM Subject: RE: Quartz error and Struts plugin for struts I had no problem using the quartz-config you supplied. Is your plugin configured like

RE: Quartz error and Struts plugin for struts

2003-09-24 Thread Holman, Cal
In the war .jars in the web-inf/lib quartz-config in web-inf quartz.properties in web-inf/classes Cal http://www.calandva.com/Last update 08/01/03 -Original Message- From: Mick Knutson [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 15:29 To: struts Subject:

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Mick Knutson
[EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 1:58 PM Subject: RE: Quartz error and Struts plugin for struts In the war .jars in the web-inf/lib quartz-config in web-inf quartz.properties in web-inf/classes Cal http://www.calandva.com

RE: Quartz error and Struts plugin for struts

2003-09-24 Thread Holman, Cal
, 2003 17:20 To: Struts Users Mailing List Subject: Re: Quartz error and Struts plugin for struts Are you using the quartz plugin? In the examples, I did not see the quartz.properties. I thought the quartz-config.xml is the replacement. --- Thanks Mick Knutson http://www.baselogic.com +001(805) 563

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Mick Knutson
Subject: RE: Quartz error and Struts plugin for struts Mick Yes I am using the plug in. The properties configure Quartz - the type of scheduler, misfire instructions, and other more advanced stuff. It my not e necessary - ill try without. I really only have the followling items in the file

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Mick Knutson
Knutson [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 4:05 PM Subject: Re: Quartz error and Struts plugin for struts OK, I seem to be a little further. Here is the next error I get: === 16:03:11,515 INFO [StdSchedulerFactory

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Mick Knutson
[EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 4:11 PM Subject: Re: Quartz error and Struts plugin for struts I also have the following execute method which is not called: /** * Method execute * * @param jobExecCtx * @throws org.quartz.JobExecutionException

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Holman, Cal
: Wed Sep 24 19:05:51 2003 Subject: Re: Quartz error and Struts plugin for struts OK, I seem to be a little further. Here is the next error I get: === 16:03:11,515 INFO [StdSchedulerFactory] Quartz scheduler 'QuartzScheduler' initialized from default resource file in Quartz package

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Mick Knutson
Message - From: Holman, Cal [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 5:27 PM Subject: Re: Quartz error and Struts plugin for struts Looks like the plug in is having trouble with parsing the quartz-config. I cannot see any problem but I am on a blackberry so

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Joe Germuska
At 5:45 PM -0700 9/24/03, Mick Knutson wrote: I have used the example xml excerp from the src, but I don't know what would be wrong with the file, or how to track it further. Any ideas about where I can go to get help? I'd suggest going straight to the source code, seeing as all the pieces you

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Mick Knutson
] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 6:08 PM Subject: Re: Quartz error and Struts plugin for struts At 5:45 PM -0700 9/24/03, Mick Knutson wrote: I have used the example xml excerp from the src, but I don't know what would be wrong with the file

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Michael Nascimento Santos
Knutson [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 10:19 PM Subject: Re: Quartz error and Struts plugin for struts I tried that and here is what I found: JobDetail(381): return JobDetail ' as listed in the method below: public String

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Mick Knutson
--- - Original Message - From: Michael Nascimento Santos [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 6:26 PM Subject: Re: Quartz error and Struts plugin for struts The only way to get a NPE in that use would be to have a null return

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Mick Knutson
- From: Michael Nascimento Santos [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 6:26 PM Subject: Re: Quartz error and Struts plugin for struts The only way to get a NPE in that use would be to have a null return for getJobClass(). Check

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Holman, Cal
Are you using the struts 1.1 libs? Latest parser? Cal -Original Message- From: Mick Knutson [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wed Sep 24 20:45:51 2003 Subject: Re: Quartz error and Struts plugin for struts I have used the example xml excerp from

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Mick Knutson
, September 24, 2003 7:05 PM Subject: Re: Quartz error and Struts plugin for struts Are you using the struts 1.1 libs? Latest parser? Cal -Original Message- From: Mick Knutson [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wed Sep 24 20:45:51 2003 Subject: Re: Quartz

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Holman, Cal
Xerces. All the commons should be ok from the struts release. I will try your quartz-config tomorrow. Cal -Original Message- From: Mick Knutson [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wed Sep 24 22:11:24 2003 Subject: Re: Quartz error and Struts plugin

Re: Quartz error and Struts plugin for struts

2003-09-24 Thread Mick Knutson
Thanks for the help --- Thanks Mick Knutson http://www.baselogic.com +001(805) 563-0666 Office +001 (708) 570-2772 Fax --- - Original Message - From: Holman, Cal [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 7:25 PM Subject: Re: Quartz error and Struts

Re: org.apache.commons.digester.Digester error

2003-09-18 Thread Sgarlata Matt
It sounds like you might have installed the JSTL correctly. Did you copy the appropriate JARS into your WEB-INF/lib directory and the TLDs into your WEB-INF directory? I believe this is all that is required for installation. Also make sure that you are referring to the TLDs correctly if you also

RE: Compile Error for bean:define

2003-09-06 Thread Carey Nation
It _may_ be, and I'm just shooting in the dark here, that it's defined by default someplace other than as a local variable (like in the request). Try adding scope=page to the bean:define and see if that makes any difference. HTH, Carey -Original Message- From: [EMAIL PROTECTED]

Re: html error

2003-09-04 Thread Ryan
How would I check to see if that specific error existed? I would like to write the message after a break BR below the text box when the message is present, and have no break when it is not. For example: if (fieldSample${count}) then brprint error message Ryan Ryan wrote: Thanks, that

RE: html error

2003-09-04 Thread Chen, Gin
ApplicationResources: errors.header=br/ or errors.prefix=br/ -Tim -Original Message- From: Ryan [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 12:34 PM To: [EMAIL PROTECTED] Subject: Re: html error How would I check to see if that specific error existed? I would like

Re: html error

2003-09-04 Thread Ryan
Optionally you can define a resource property in your ApplicationResources: errors.header=br/ or errors.prefix=br/ -Tim -Original Message- From: Ryan [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 12:34 PM To: [EMAIL PROTECTED] Subject: Re: html error How would I check to see

RE: html error

2003-09-03 Thread Slattery, Tim - BLS
When I try and set the html error attribute property using a jsp expression nothing shows up. html:errors property='%= fieldSample + count %'/ Note: The variable count is just an integer that gets incremented each iteration of the loop. An easy way out would be to use the html-el

Re: html error

2003-09-03 Thread Ryan
Thanks, that worked. Ryan Slattery, Tim - BLS wrote: When I try and set the html error attribute property using a jsp expression nothing shows up. html:errors property='%= fieldSample + count %'/ Note: The variable count is just an integer that gets incremented each iteration of the

Re: Positioning error messages

2003-08-27 Thread Samanth Athrey
forget it.. i had made a silly mistake.. thanx -Samanth Samanth Athrey [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hey all, I am using Validation Framework. The only problem I now have is to position the messages. Everything is towards the right of textbox. But i want to the

RE: TILES ERROR when using more than one directory

2003-08-20 Thread Holman, Cal
/ put name=defname value=about.pagedef/ /definition Cal -Original Message- From: Cameron Hickey [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 11:39 To: 'Struts Users Mailing List' Subject: RE: TILES ERROR when using more than one directory I did not solve this problem

RE: TILES ERROR when using more than one directory

2003-08-19 Thread Holman, Cal
Cameron Did you figure this out? I use a base tag in my template to anchor all tiles jsp files to the single spot in the webapp. You should not have any problems having a more complex directory structure - it is simplified if all the paths are from the same point in the webapp. Cal

RE: TILES ERROR when using more than one directory

2003-08-19 Thread Cameron Hickey
... thanks for any further assistance Cameron -Original Message- From: Holman, Cal [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 2:10 PM To: Struts Users Mailing List Subject: RE: TILES ERROR when using more than one directory Cameron Did you figure this out? I use a base tag in my

  1   2   3   4   >