You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(37) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(37) |
Feb
(18) |
Mar
(33) |
Apr
(8) |
May
(7) |
Jun
(13) |
Jul
(20) |
Aug
|
Sep
|
Oct
(1) |
Nov
(5) |
Dec
(2) |
2003 |
Jan
|
Feb
(7) |
Mar
(3) |
Apr
(15) |
May
(7) |
Jun
(6) |
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
|
Dec
|
2004 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
(1) |
Jun
(1) |
Jul
|
Aug
(2) |
Sep
(4) |
Oct
|
Nov
(5) |
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(3) |
Dec
|
From: Eliot S. <eli...@Ri...> - 2003-04-04 08:18:41
|
> Currently FormProc would not convert multiple fields with the same > name > into an array, rather it uses the ServletRequest.getParameter() method > to return the first value. I will look into updating FormProc to handle > arrays today - it shouldn't be too hard. Hi Anthony, This feature (multi-valued fields) would be really useful to me. I see in your post that you were planning to take a look at adding this to FormProc. If this feature isn't available yet I'd like to implement it and was hoping you could point me in the direction of the class(es) that'd need tinkering with. Kind regards, Eliot ------------------ As for storing those values afterwards, you can either use the ReflectionStorer which should work fine >with arrays once I implement the arrays as described previously, or you can create your own Storer implementation and provide whatever storage mechanism you need. Sincerely, Anthony Eden > -----Original Message----- > From: formproc-developer-admin@li... > [mailto:formproc-developer-admin@li...] On > Behalf Of Gandulf > Sent: Friday, November 08, 2002 3:57 AM > To: formproc-developer@li... > Subject: [FormProc-developer] formproc an alternativ to > Intake. should I change??? > > > Hello, > > I'm currently working an an turbine/velocity/torque > environment and use > intake as the buildin formprocessing tool. > > But since working with Intake is rather anoying I'm thinking about > switching to another formprocessing tool. > I looked at the documentation of Formproc and it's seems to be an > alternative to Intake. But I'd need some special Information about > FormProc, especially about how it handels arrays of formelements. > > Here is an short example ...(a little bit minimalized) > > ---- > <form> > <input type="text" name="name1"> > <input type="text" name="name1"> > > <input type="text" name="name2"> > <input type="text" name="name2"> > </form> > ---- > > Now If I submit such an Form, it would create two arrays > (name1[], name2[]) > wich contain the values for the two inputs with the same names. > > Now my Question: > > Is Formproc able to handle such a form and save the values in > an object > (via the store.ReflectionMapper), since Intake is not ??? > > thx Gandulf > > > > ------------------------------------------------------- > This sf.net email is sponsored by: See the NEW Palm > Tungsten T handheld. Power & Color in a compact size! http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0001en _______________________________________________ FormProc-developer mailing list FormProc-developer@li... https://lists.sourceforge.net/lists/listinfo/formproc-developer ________________________________________________________________________ This email has been scanned for all viruses by the MessageLabs service. ________________________________________________________________________ |
From: Eliot S. <eli...@Ri...> - 2003-03-25 10:55:03
|
Hi, First off, great product - I never thought form validation could be made this easy. I was just wondering what version the commons-logging.jar is that is included with the FormProc 1.2 release or where I can find this information out? Also, is this the same version for the FormProc 1.3 release? Thanks in advance, Eliot PS. Apologies for reposting - last post was html email, not plain text, oops. ________________________________________________________________________ This email has been scanned for all viruses by the MessageLabs service. ________________________________________________________________________ |
From: Eliot S. <eli...@Ri...> - 2003-03-19 11:33:40
|
Hi, First off, great product - I never thought form validation could be made this easy. I was just wondering what version the commons-logging.jar is that is included with the FormProc 1.2 release? Also, is this the same for the FormProc 1.3 release? Thanks in advance, Eliot ________________________________________________________________________ This email has been scanned for all viruses by the MessageLabs service. ________________________________________________________________________ |
From: <eg...@va...> - 2003-02-27 18:38:15
|
Hi, Anyone can tell me the best way to implement a DateRangeValidator? I'd ready implement a DateValidator, which one can receive a pattern = format or use a default one, but now I need to implement a = DateRangeValidator. I suppose this one has to be in an ELEMENT-GROUP but = exist a way to invoke the DateValidator from the DateRangeValidator? Thx Edgar |
From: <eg...@va...> - 2003-02-26 22:05:07
|
Hi, Anyone can tell me the best way to implement a DateRangeValidator? I'd ready implement a DateValidator, which one can receive a pattern = format or use a default one, but now I need to implement a = DateRangeValidator. I suppose this one has to be in an ELEMENT-GROUP but = exist a way to invoke the DateValidator from the DateRangeValidator? Thx Edgar |
From: Anthony E. <me...@an...> - 2003-02-22 17:50:45
|
If you would like to contribute it I would be happy to include it in the code base, perhaps even replacing the existing storage-by-reflection mechanism. Sincerely, Anthony Eden Edgar González wrote: >Jakub, > >I got the same problem and my workaround was develop my own >IntrospectionStore which use org.apache.commons.beanutils. > > >---------------------------------------------------------------------------- >Edgar Gonzalez Gonzalez >VALHALLA Project, s.a. >Chief Technology Officer >Web: www.valhallaproject.com >E-mail: eg...@va... >Phone: +58-212-242.4379 / 6662 / 4055 / 6475 >Fax: +58-212-242.6809 > >"The limits of my language mean the limits of my world." >Ludwig Wittgenstein > >---------------------------------------------------------------------------- > > > > >----- Original Message ----- >From: "Jakub Cerny" <bla...@cb...> >To: <for...@li...> >Sent: Friday, February 21, 2003 5:00 PM >Subject: [FormProc-developer] Null values again > > > > >>Hello! >> >>I am trying to use FormProc in my new project. I really like it. >> >>I only struggle with form fields, which are not filled by the user. I need >>the null value stored in a bean. I am using ReflectionStorer. >> >>Unfortunatelly, the "null" value is NOT populated to my target bean. When >> >> >I > > >>enable debug mode, I get: >> >> INFO Form:419 - No method found for parameter LastName >> >>In my bean I have ordinary setter method: >> >>public void setLastName(String ln) { >> lastName = ln; >>} >> >>Can someone tell me, where is the problem? It seems to me that the EdenLib >>function MethodUtilities.invoke() is not able to call setter with null >>value... Maybe I am wrong. >> >>Looking forward to your hints. >> >>Jakub Cerny, Prague, Czech Republic >> >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. >>The most comprehensive and flexible code editor you can use. >>Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. >>www.slickedit.com/sourceforge >>_______________________________________________ >>FormProc-developer mailing list >>For...@li... >>https://lists.sourceforge.net/lists/listinfo/formproc-developer >> >> >> >> > > > >------------------------------------------------------- >This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. >The most comprehensive and flexible code editor you can use. >Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. >www.slickedit.com/sourceforge >_______________________________________________ >FormProc-developer mailing list >For...@li... >https://lists.sourceforge.net/lists/listinfo/formproc-developer > > |
From: <eg...@va...> - 2003-02-21 22:59:34
|
Jakub, I got the same problem and my workaround was develop my own IntrospectionStore which use org.apache.commons.beanutils. ---------------------------------------------------------------------------- Edgar Gonzalez Gonzalez VALHALLA Project, s.a. Chief Technology Officer Web: www.valhallaproject.com E-mail: eg...@va... Phone: +58-212-242.4379 / 6662 / 4055 / 6475 Fax: +58-212-242.6809 "The limits of my language mean the limits of my world." Ludwig Wittgenstein ---------------------------------------------------------------------------- ----- Original Message ----- From: "Jakub Cerny" <bla...@cb...> To: <for...@li...> Sent: Friday, February 21, 2003 5:00 PM Subject: [FormProc-developer] Null values again > Hello! > > I am trying to use FormProc in my new project. I really like it. > > I only struggle with form fields, which are not filled by the user. I need > the null value stored in a bean. I am using ReflectionStorer. > > Unfortunatelly, the "null" value is NOT populated to my target bean. When I > enable debug mode, I get: > > INFO Form:419 - No method found for parameter LastName > > In my bean I have ordinary setter method: > > public void setLastName(String ln) { > lastName = ln; > } > > Can someone tell me, where is the problem? It seems to me that the EdenLib > function MethodUtilities.invoke() is not able to call setter with null > value... Maybe I am wrong. > > Looking forward to your hints. > > Jakub Cerny, Prague, Czech Republic > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SlickEdit Inc. Develop an edge. > The most comprehensive and flexible code editor you can use. > Code faster. C/C++, C#, Java, HTML, XML, many more. FREE 30-Day Trial. > www.slickedit.com/sourceforge > _______________________________________________ > FormProc-developer mailing list > For...@li... > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > |
From: Jakub C. <bla...@cb...> - 2003-02-21 21:01:14
|
Hello! I am trying to use FormProc in my new project. I really like it. I only struggle with form fields, which are not filled by the user. I need the null value stored in a bean. I am using ReflectionStorer. Unfortunatelly, the "null" value is NOT populated to my target bean. When I enable debug mode, I get: INFO Form:419 - No method found for parameter LastName In my bean I have ordinary setter method: public void setLastName(String ln) { lastName = ln; } Can someone tell me, where is the problem? It seems to me that the EdenLib function MethodUtilities.invoke() is not able to call setter with null value... Maybe I am wrong. Looking forward to your hints. Jakub Cerny, Prague, Czech Republic |
From: <eg...@va...> - 2003-02-14 17:23:09
|
Hi Anthony, The FormResult.getGroupErrorMessage method search in the = validationResults map instead of the groupValidationResults map, for = that reason this method always return null. -------------------------------------------------------------------------= --- Edgar Gonzalez Gonzalez VALHALLA Project, s.a. Chief Technology Officer Web: www.valhallaproject.com E-mail: eg...@va... Phone: +58-212-242.4379 / 6662 / 4055 / 6475 Fax: +58-212-242.6809 "The limits of my language mean the limits of my world." Ludwig Wittgenstein -------------------------------------------------------------------------= --- |
From: Anthony E. <me...@an...> - 2002-12-17 16:14:28
|
> -----Original Message----- > From: for...@li... > [mailto:for...@li...] On > Behalf Of John Thorhauer > Sent: Tuesday, December 17, 2002 10:48 AM > To: for...@li... > Subject: [FormProc-developer] rule types > > > Hi, I am working on a package that will be using XML Schema > .xsd files to dynamically build much of the software > infrastructure. I am going to use XML Schemas to help > automatically build my FormProc validation framework. <snip> > So I have a couple of questions: > > 1. Has anyone else been working on anything like this? Not that I know of. > 2. Would this be the type of thing that the FormProc > developers would be interested in adding to the FormProc > library if it was available? Yes. Sincerely, Anthony Eden |
From: John T. <jo...@ze...> - 2002-12-17 15:46:08
|
Hi, I am working on a package that will be using XML Schema .xsd files to dynamically build much of the software infrastructure. I am going to use XML Schemas to help automatically build my FormProc validation framework. While doing this I am planning on adding several Rule and RuleValidator classes to support the XML Schema primitive and derived datatypes found here: http://www.w3.org/TR/xmlschema-2/ These would be Rules for things like time, date, float, duration, nonPositiveInteger, nonNegativeInteger etc. etc. So I have a couple of questions: 1. Has anyone else been working on anything like this? 2. Would this be the type of thing that the FormProc developers would be interested in adding to the FormProc library if it was available? Thanks, John Thorhauer -- ******************************** ** John Thorhauer ** jo...@ze... ** take a look at: ** http://tambora.zenplex.org ** http://www.zenplex.org ** http://www.zenplex.com ******************************** |
From: Jon F F. <jo...@ro...> - 2002-11-16 07:06:18
|
Hello I have a couple of contacts who are in Germany and Switzerland who are both looking for SAP people for some new projects. They need people in various areas and they do not need to be German speakers or have permits for CH. The companies will look at people as long as they have good experience in an area of SAP. I also know a few German speakers looking for permanent work in Europe and hence if anyone knows of any positions I will forward them on the details. Please drop me a mail if of interest. Kind regards Jon |
From: Anthony E. <me...@an...> - 2002-11-08 19:04:32
|
FormProc version 1.1 is now available at http://www.formproc.org/ . FormProc is an open source Java library designed to make handling and validating forms easy. Forms are represented as objects which manage a collection of form elements. Submitted data can be validated through several mechanisms including regular expressions, BSF supported scripting languages and custom Java classes. This release includes the following changes: FormConfiguration, FormElement and FormElementGroup are now interfaces. Added abstract base classes for new interfaces. Moved default FormConfiguration implementation to org.formproc.config.XMLConfiguration. Created default implementations of the FormElement and FormElementGroup interfaces in the org.formproc.form package. Added setFormConfiguration() method to FormManager. Added BasicFormElement and BasicFormElementGroup classes which provide a means for configuring elements and groups programmatically. Added REValidator constructor which takes a pattern string as an argument. Added support for handling parameter arrays in HttpServletRequest parameters. Sincerely, Anthony Eden ----------- Aetrion LLC http://www.aetrion.com/ ae...@ae... Reduce. Reuse. Relax. |
From: Anthony E. <me...@an...> - 2002-11-08 18:33:08
|
I have added initial support for parameter arrays into the code in CVS. I am currently making the 1.1 release of FormProc which will include this enhancement plus several others. There is still room for improvement for handling parameter arrays, especially in how it should be handled in validators, but at least this is a start. Sincerely, Anthony Eden |
From: Anthony E. <me...@an...> - 2002-11-08 17:53:24
|
Currently FormProc would not convert multiple fields with the same name into an array, rather it uses the ServletRequest.getParameter() method to return the first value. I will look into updating FormProc to handle arrays today - it shouldn't be too hard. As for storing those values afterwards, you can either use the ReflectionStorer which should work fine with arrays once I implement the arrays as described previously, or you can create your own Storer implementation and provide whatever storage mechanism you need. Sincerely, Anthony Eden > -----Original Message----- > From: for...@li... > [mailto:for...@li...] On > Behalf Of Gandulf > Sent: Friday, November 08, 2002 3:57 AM > To: for...@li... > Subject: [FormProc-developer] formproc an alternativ to > Intake. should I change??? > > > Hello, > > I'm currently working an an turbine/velocity/torque > environment and use > intake as the buildin formprocessing tool. > > But since working with Intake is rather anoying I'm thinking about > switching to another formprocessing tool. > I looked at the documentation of Formproc and it's seems to be an > alternative to Intake. But I'd need some special Information about > FormProc, especially about how it handels arrays of formelements. > > Here is an short example ...(a little bit minimalized) > > ---- > <form> > <input type="text" name="name1"> > <input type="text" name="name1"> > > <input type="text" name="name2"> > <input type="text" name="name2"> > </form> > ---- > > Now If I submit such an Form, it would create two arrays > (name1[], name2[]) > wich contain the values for the two inputs with the same names. > > Now my Question: > > Is Formproc able to handle such a form and save the values in > an object > (via the store.ReflectionMapper), since Intake is not ??? > > thx Gandulf > > > > ------------------------------------------------------- > This sf.net email is sponsored by: See the NEW Palm > Tungsten T handheld. Power & Color in a compact size! http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0001en _______________________________________________ FormProc-developer mailing list For...@li... https://lists.sourceforge.net/lists/listinfo/formproc-developer |
From: Gandulf <gan...@gm...> - 2002-11-08 08:56:57
|
Hello, I'm currently working an an turbine/velocity/torque environment and use intake as the buildin formprocessing tool. But since working with Intake is rather anoying I'm thinking about switching to another formprocessing tool. I looked at the documentation of Formproc and it's seems to be an alternative to Intake. But I'd need some special Information about FormProc, especially about how it handels arrays of formelements. Here is an short example ...(a little bit minimalized) ---- <form> <input type="text" name="name1"> <input type="text" name="name1"> <input type="text" name="name2"> <input type="text" name="name2"> </form> ---- Now If I submit such an Form, it would create two arrays (name1[], name2[]) wich contain the values for the two inputs with the same names. Now my Question: Is Formproc able to handle such a form and save the values in an object (via the store.ReflectionMapper), since Intake is not ??? thx Gandulf |
From: Richard, D. <dri...@un...> - 2002-10-07 11:14:55
|
I am working on a survey that has several pages. It is very important that a person completing the second page of the survey not be able to go back and change previous answers. I have tried to accomplish this by having two pages submit to the same FormProc script, transferring an ID value with JavaScript so that I can match up the answers to the two forms later. I want the feedback screen canceled when the user submits the first form. It would be ok if the feedback screen was canceled for all forms submitting to this FormProc script. Is this possible? How is it accomplished? thanks, Dan- |
From: Anthony E. <me...@an...> - 2002-07-26 19:18:17
|
That is bizarre. Must have something to do with cookies being funked up. If you manage to track down the problem, please send me a detailed report so that if the issue arises in the future I will know how to answer. :-) Sincerely, Anthony Eden > -----Original Message----- > From: Anthony W. Marino [mailto:an...@AW...] > Sent: Friday, July 26, 2002 12:48 PM > To: Anthony Eden; for...@li... > Subject: Re: [FormProc-developer] Build Errors with Latest CVS Drop > > > Anthony, > I was failing with Konqueror 3.0.2 howeve when tested with a > Mozilla 1.0 > browser it worked fine with TC4.1.8/JDK1.4. > > Thanks, > Anthony > > > Anthony, > > > > I am not sure what to do here because you are using a bleeding-edge > > version of Tomcat. I have not yet tested FormProc in Tomcat 4.1.x. > > Would it be possible for you to download the current > release of Tomcat > > 4.0.x (which is 4.0.4) and see if you encounter the same problem? > > > > Sincerely, > > Anthony Eden > > > > > -----Original Message----- > > > From: for...@li... > > > [mailto:for...@li...] > On Behalf Of > > > Anthony W. Marino > > > Sent: Friday, July 26, 2002 11:01 AM > > > To: Anthony Eden; for...@li... > > > Subject: Re: [FormProc-developer] Build Errors with > Latest CVS Drop > > > > > > > > > No luck! > > > Anthony > > > > > > > It sounds like the form object is not in the session > when you go > > > > to the process.jsp page. This could be due to the > session being > > > > timed out. Try to go back to the index.jsp page and > reload, then > > > > submit again. > > > > > > > > Sincerely, > > > > Anthony Eden > > > > > > > > > -----Original Message----- > > > > > From: Anthony W. Marino [mailto:an...@AW...] > > > > > Sent: Friday, July 26, 2002 10:22 AM > > > > > To: Anthony Eden; for...@li... > > > > > Subject: Re: [FormProc-developer] Build Errors with > > > > > > Latest CVS Drop > > > > > > > > Anthony, > > > > > The following is what I get when attempting to run > > > > > "formproc-example" and after I submit my input > > > > > > (process.jsp). I'm > > > > > > > > running with > > > > > SuSE7.3/TC4.1.8LE/Java1.41: > > > > > > > > > > > > > > > The server encountered an internal error () that > > > > > > prevented it from > > > > > > > > fulfilling this request. > > > > > > > > > > > > > > > exception > > > > > > > > > > org.apache.jasper.JasperException: bean form not found > > > > > > within scope > > > > > > > > at > > > > > org.apache.jasper.servlet.JspServletWrapper.service(JspServlet > > > > > Wrapper.java:246) > > > > > at > > > > > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet > > > > > .java:289) > > > > > at > > > > > > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240) > > > > > at > > > > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > > > > at > > > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilt > > > > > er(ApplicationFilterChain.java:247) > > > > > at > > > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli > > > > > cationFilterChain.java:193) > > > > > at > > > > > org.apache.catalina.core.StandardWrapperValve.invoke(StandardW > > > > > rapperValve.java:260) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > > ine.java:480) > > > > > at > > > > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995 > > > ) > > > > > > > > at > > > > > org.apache.catalina.core.StandardContextValve.invoke(StandardC > > > > > ontextValve.java:191) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > > ine.java:480) > > > > > at > > > > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995 > > > ) > > > > > > > > at > > > > > org.apache.catalina.core.StandardContext.invoke(StandardContex > > > > > t.java:2350) > > > > > at > > > > > org.apache.catalina.core.StandardHostValve.invoke(StandardHost > > > > > Valve.java:180) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > > at > > > > > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi > > > > > spatcherValve.java:170) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > > eContext.invokeNext(StandardPipeline.java:641) > > > > > at > > > > > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport > > > > > Valve.java:171) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > > eContext.invokeNext(StandardPipeline.java:641) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > > ine.java:480) > > > > > at > > > > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995 > > > ) > > > > > > > > at > > > > > org.apache.catalina.core.StandardEngineValve.invoke(StandardEn > > > > > gineValve.java:174) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > > ine.java:480) > > > > > at > > > > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995 > > > ) > > > > > > > > at > > > > > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter. > > > > > java:223) > > > > > at > > > > > org.apache.coyote.http11.Http11Processor.process(Http11Process > > > > > or.java:405) > > > > > at > > > > > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle > > > > > r.processConnection(Http11Protocol.java:380) > > > > > at > > > > > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi > > > > > nt.java:508) > > > > > at > > > > > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run( > > > > > ThreadPool.java:533) > > > > > at java.lang.Thread.run(Thread.java:536) > > > > > > > > > > > > > > > root cause > > > > > > > > > > javax.servlet.ServletException: bean form not found > within scope > > > > > at > > > > > org.apache.jasper.runtime.PageContextImpl.handlePageException( > > > > > PageContextImpl.java:495) > > > > > at > > > > > org.apache.jsp.process_jsp._jspService(process_jsp.java:127) > > > > > at > > > > > > > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:136) > > > > > > > > at > > > > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > > > > at > > > > > org.apache.jasper.servlet.JspServletWrapper.service(JspServlet > > > > > Wrapper.java:202) > > > > > at > > > > > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet > > > > > .java:289) > > > > > at > > > > > > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240) > > > > > at > > > > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > > > > at > > > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilt > > > > > er(ApplicationFilterChain.java:247) > > > > > at > > > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli > > > > > cationFilterChain.java:193) > > > > > at > > > > > org.apache.catalina.core.StandardWrapperValve.invoke(StandardW > > > > > rapperValve.java:260) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > > ine.java:480) > > > > > at > > > > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995 > > > ) > > > > > > > > at > > > > > org.apache.catalina.core.StandardContextValve.invoke(StandardC > > > > > ontextValve.java:191) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > > ine.java:480) > > > > > at > > > > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995 > > > ) > > > > > > > > at > > > > > org.apache.catalina.core.StandardContext.invoke(StandardContex > > > > > t.java:2350) > > > > > at > > > > > org.apache.catalina.core.StandardHostValve.invoke(StandardHost > > > > > Valve.java:180) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > > at > > > > > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi > > > > > spatcherValve.java:170) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > > eContext.invokeNext(StandardPipeline.java:641) > > > > > at > > > > > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport > > > > > Valve.java:171) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > > eContext.invokeNext(StandardPipeline.java:641) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > > ine.java:480) > > > > > at > > > > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995 > > > ) > > > > > > > > at > > > > > org.apache.catalina.core.StandardEngineValve.invoke(StandardEn > > > > > gineValve.java:174) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > > at > > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > > ine.java:480) > > > > > at > > > > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995 > > > ) > > > > > > > > at > > > > > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter. > > > > > java:223) > > > > > at > > > > > org.apache.coyote.http11.Http11Processor.process(Http11Process > > > > > or.java:405) > > > > > at > > > > > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle > > > > > r.processConnection(Http11Protocol.java:380) > > > > > at > > > > > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi > > > > > nt.java:508) > > > > > at > > > > > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run( > > > > > ThreadPool.java:533) > > > > > at java.lang.Thread.run(Thread.java:536) > > > > > > > > > > > > > > > Apache Tomcat/4.1.8-LE-jdk14 > > > > > > > > > > > Fixed. I forgot to check in some updated files. > Sorry about > > > > > > that. > > > > > > > > > > > > -Anthony > > > > > > > > > > > > > -----Original Message----- > > > > > > > From: for...@li... > > > > > > > [mailto:for...@li...] > > > > > > > > > > On Behalf Of > > > > > > > > > > > > Anthony W. Marino > > > > > > > Sent: Friday, July 26, 2002 7:07 AM > > > > > > > To: for...@li... > > > > > > > Subject: [FormProc-developer] Build Errors with > > > > > > Latest CVS Drop > > > > > > > > > > Buildfile: build.xml > > > > > > > > > > > > > > init: > > > > > > > > > > > > > > compile: > > > > > > > [copy] Copying 71 files to > > > > > > > /usr/local/src/formproc/formproc/build/src > > > > > > > [copy] Copied 2 empty directories to > > > > > > > /usr/local/src/formproc/formproc/build/src > > > > > > > [mkdir] Created dir: > > > > > > > /usr/local/src/formproc/formproc/build/classes > > > > > > > [echo] javac classpath = > > > > > > > > lib/jakarta-oro-2.0.6.jar:lib/log4j-core.jar:lib/jaxp.jar:li > > > > > > > b/ > > > > > > > bsf.jar:lib/EdenLib.jar:build-lib/servlet.jar > > > > > > > [javac] Compiling 63 source files to > > > > > > > /usr/local/src/formproc/formproc/build/classes > > > > > > > [javac] > > > > > > > > /usr/local/src/formproc/formproc/build/src/org/formproc/config > > > > > > > /XMLFormConfiguration.java:84: > > > > > > > org.formproc.config.XMLFormConfiguration should > be declared > > > > > > > abstract; it does not define isSkipNullValues() in > > > > > > > org.formproc.config.AbstractFormConfiguration > > > > > > > [javac] public class XMLFormConfiguration extends > > > > > > > AbstractFormConfiguration implements > > > > > > > [javac] ^ > > > > > > > [javac] 1 error > > > > > > > > > > > > > > BUILD FAILED > > > > > > > file:/usr/local/src/formproc/formproc/build.xml:68: > > > > > > > > > > Compile failed; > > > > > > > > > > > > see the compiler error output for details. > > > > > > > > > > > > > > > > > > > > > Thank You, > > > > > > > Anthony > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > > > This sf.net email is sponsored by:ThinkGeek > > > > > > > Welcome to geek heaven. > > > > > > > http://thinkgeek.com/sf > > > > > > > _______________________________________________ > > > > > > > FormProc-developer mailing list > > > > > > > For...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/f> ormproc-developer > > > > > > > > > ------------------------------------------------------- > > > > > > This sf.net email is sponsored by:ThinkGeek > > > > > > Welcome to geek heaven. > > > > > > http://thinkgeek.com/sf > > > > > > _______________________________________________ > > > > > > FormProc-developer mailing list > > > > > > For...@li... > > > > > > > https://lists.sourceforge.net/lists/listinfo/formproc-develope > > > > > r > > > > > > ------------------------------------------------------- > > > This sf.net email is sponsored by:ThinkGeek > > > Welcome to geek heaven. > > > http://thinkgeek.com/sf > > > _______________________________________________ > > > FormProc-developer mailing list > > > For...@li... > > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > FormProc-developer mailing list > > For...@li... > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > FormProc-developer mailing list > For...@li... > https://lists.sourceforge.net/lists/listinfo/formproc-developer |
From: Anthony W. M. <an...@AW...> - 2002-07-26 16:49:15
|
Anthony, I was failing with Konqueror 3.0.2 howeve when tested with a Mozilla 1.0=20 browser it worked fine with TC4.1.8/JDK1.4. Thanks, Anthony > Anthony, > > I am not sure what to do here because you are using a bleeding-edge > version of Tomcat. I have not yet tested FormProc in Tomcat 4.1.x. > Would it be possible for you to download the current release of Tomcat > 4.0.x (which is 4.0.4) and see if you encounter the same problem? > > Sincerely, > Anthony Eden > > > -----Original Message----- > > From: for...@li... > > [mailto:for...@li...] On > > Behalf Of Anthony W. Marino > > Sent: Friday, July 26, 2002 11:01 AM > > To: Anthony Eden; for...@li... > > Subject: Re: [FormProc-developer] Build Errors with Latest CVS Drop > > > > > > No luck! > > Anthony > > > > > It sounds like the form object is not in the session when you go to > > > the process.jsp page. This could be due to the session being timed > > > out. Try to go back to the index.jsp page and reload, then submit > > > again. > > > > > > Sincerely, > > > Anthony Eden > > > > > > > -----Original Message----- > > > > From: Anthony W. Marino [mailto:an...@AW...] > > > > Sent: Friday, July 26, 2002 10:22 AM > > > > To: Anthony Eden; for...@li... > > > > Subject: Re: [FormProc-developer] Build Errors with > > > > Latest CVS Drop > > > > > > Anthony, > > > > The following is what I get when attempting to run > > > > "formproc-example" and after I submit my input > > > > (process.jsp). I'm > > > > > > running with > > > > SuSE7.3/TC4.1.8LE/Java1.41: > > > > > > > > > > > > The server encountered an internal error () that > > > > prevented it from > > > > > > fulfilling this request. > > > > > > > > > > > > exception > > > > > > > > org.apache.jasper.JasperException: bean form not found > > > > within scope > > > > > > at > > > > org.apache.jasper.servlet.JspServletWrapper.service(JspServlet > > > > Wrapper.java:246) > > > > at > > > > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet > > > > .java:289) > > > > at > > > > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240) > > > > at > > > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > > > at > > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilt > > > > er(ApplicationFilterChain.java:247) > > > > at > > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli > > > > cationFilterChain.java:193) > > > > at > > > > org.apache.catalina.core.StandardWrapperValve.invoke(StandardW > > > > rapperValve.java:260) > > > > at > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > at > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > ine.java:480) > > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > > > > at > > > > org.apache.catalina.core.StandardContextValve.invoke(StandardC > > > > ontextValve.java:191) > > > > at > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > at > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > ine.java:480) > > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > > > > at > > > > org.apache.catalina.core.StandardContext.invoke(StandardContex > > > > t.java:2350) > > > > at > > > > org.apache.catalina.core.StandardHostValve.invoke(StandardHost > > > > Valve.java:180) > > > > at > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > at > > > > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi > > > > spatcherValve.java:170) > > > > at > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > eContext.invokeNext(StandardPipeline.java:641) > > > > at > > > > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport > > > > Valve.java:171) > > > > at > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > eContext.invokeNext(StandardPipeline.java:641) > > > > at > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > ine.java:480) > > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > > > > at > > > > org.apache.catalina.core.StandardEngineValve.invoke(StandardEn > > > > gineValve.java:174) > > > > at > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > at > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > ine.java:480) > > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > > > > at > > > > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter. > > > > java:223) > > > > at > > > > org.apache.coyote.http11.Http11Processor.process(Http11Process > > > > or.java:405) > > > > at > > > > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle > > > > r.processConnection(Http11Protocol.java:380) > > > > at > > > > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi > > > > nt.java:508) > > > > at > > > > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run( > > > > ThreadPool.java:533) > > > > at java.lang.Thread.run(Thread.java:536) > > > > > > > > > > > > root cause > > > > > > > > javax.servlet.ServletException: bean form not found within scope > > > > at > > > > org.apache.jasper.runtime.PageContextImpl.handlePageException( > > > > PageContextImpl.java:495) > > > > at > > > > org.apache.jsp.process_jsp._jspService(process_jsp.java:127) > > > > at > > > > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:136) > > > > > > at > > > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > > > at > > > > org.apache.jasper.servlet.JspServletWrapper.service(JspServlet > > > > Wrapper.java:202) > > > > at > > > > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet > > > > .java:289) > > > > at > > > > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240) > > > > at > > > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > > > at > > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilt > > > > er(ApplicationFilterChain.java:247) > > > > at > > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli > > > > cationFilterChain.java:193) > > > > at > > > > org.apache.catalina.core.StandardWrapperValve.invoke(StandardW > > > > rapperValve.java:260) > > > > at > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > at > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > ine.java:480) > > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > > > > at > > > > org.apache.catalina.core.StandardContextValve.invoke(StandardC > > > > ontextValve.java:191) > > > > at > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > at > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > ine.java:480) > > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > > > > at > > > > org.apache.catalina.core.StandardContext.invoke(StandardContex > > > > t.java:2350) > > > > at > > > > org.apache.catalina.core.StandardHostValve.invoke(StandardHost > > > > Valve.java:180) > > > > at > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > at > > > > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi > > > > spatcherValve.java:170) > > > > at > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > eContext.invokeNext(StandardPipeline.java:641) > > > > at > > > > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport > > > > Valve.java:171) > > > > at > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > eContext.invokeNext(StandardPipeline.java:641) > > > > at > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > ine.java:480) > > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > > > > at > > > > org.apache.catalina.core.StandardEngineValve.invoke(StandardEn > > > > gineValve.java:174) > > > > at > > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > > eContext.invokeNext(StandardPipeline.java:643) > > > > at > > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > > ine.java:480) > > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > > > > at > > > > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter. > > > > java:223) > > > > at > > > > org.apache.coyote.http11.Http11Processor.process(Http11Process > > > > or.java:405) > > > > at > > > > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle > > > > r.processConnection(Http11Protocol.java:380) > > > > at > > > > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi > > > > nt.java:508) > > > > at > > > > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run( > > > > ThreadPool.java:533) > > > > at java.lang.Thread.run(Thread.java:536) > > > > > > > > > > > > Apache Tomcat/4.1.8-LE-jdk14 > > > > > > > > > Fixed. I forgot to check in some updated files. Sorry about > > > > > that. > > > > > > > > > > -Anthony > > > > > > > > > > > -----Original Message----- > > > > > > From: for...@li... > > > > > > [mailto:for...@li...] > > > > > > > > On Behalf Of > > > > > > > > > > Anthony W. Marino > > > > > > Sent: Friday, July 26, 2002 7:07 AM > > > > > > To: for...@li... > > > > > > Subject: [FormProc-developer] Build Errors with > > > > Latest CVS Drop > > > > > > > > Buildfile: build.xml > > > > > > > > > > > > init: > > > > > > > > > > > > compile: > > > > > > [copy] Copying 71 files to > > > > > > /usr/local/src/formproc/formproc/build/src > > > > > > [copy] Copied 2 empty directories to > > > > > > /usr/local/src/formproc/formproc/build/src > > > > > > [mkdir] Created dir: > > > > > > /usr/local/src/formproc/formproc/build/classes > > > > > > [echo] javac classpath =3D > > > > > > lib/jakarta-oro-2.0.6.jar:lib/log4j-core.jar:lib/jaxp.jar:lib= / > > > > > > bsf.jar:lib/EdenLib.jar:build-lib/servlet.jar > > > > > > [javac] Compiling 63 source files to > > > > > > /usr/local/src/formproc/formproc/build/classes > > > > > > [javac] > > > > > > /usr/local/src/formproc/formproc/build/src/org/formproc/confi= g > > > > > > /XMLFormConfiguration.java:84: > > > > > > org.formproc.config.XMLFormConfiguration should be declared > > > > > > abstract; it does not define isSkipNullValues() in > > > > > > org.formproc.config.AbstractFormConfiguration > > > > > > [javac] public class XMLFormConfiguration extends > > > > > > AbstractFormConfiguration implements > > > > > > [javac] ^ > > > > > > [javac] 1 error > > > > > > > > > > > > BUILD FAILED > > > > > > file:/usr/local/src/formproc/formproc/build.xml:68: > > > > > > > > Compile failed; > > > > > > > > > > see the compiler error output for details. > > > > > > > > > > > > > > > > > > Thank You, > > > > > > Anthony > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > > This sf.net email is sponsored by:ThinkGeek > > > > > > Welcome to geek heaven. > > > > > > http://thinkgeek.com/sf > > > > > > _______________________________________________ > > > > > > FormProc-developer mailing list > > > > > > For...@li... > > > > https://lists.sourceforge.net/lists/listinfo/f> ormproc-developer > > > > > > > ------------------------------------------------------- > > > > > This sf.net email is sponsored by:ThinkGeek > > > > > Welcome to geek heaven. > > > > > http://thinkgeek.com/sf > > > > > _______________________________________________ > > > > > FormProc-developer mailing list > > > > > For...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > > > > > ------------------------------------------------------- > > > This sf.net email is sponsored by:ThinkGeek > > > Welcome to geek heaven. > > > http://thinkgeek.com/sf > > > _______________________________________________ > > > FormProc-developer mailing list > > > For...@li... > > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > FormProc-developer mailing list > > For...@li... > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > FormProc-developer mailing list > For...@li... > https://lists.sourceforge.net/lists/listinfo/formproc-developer |
From: Anthony E. <me...@an...> - 2002-07-26 15:23:10
|
Anthony, I am not sure what to do here because you are using a bleeding-edge version of Tomcat. I have not yet tested FormProc in Tomcat 4.1.x. Would it be possible for you to download the current release of Tomcat 4.0.x (which is 4.0.4) and see if you encounter the same problem? Sincerely, Anthony Eden > -----Original Message----- > From: for...@li... > [mailto:for...@li...] On > Behalf Of Anthony W. Marino > Sent: Friday, July 26, 2002 11:01 AM > To: Anthony Eden; for...@li... > Subject: Re: [FormProc-developer] Build Errors with Latest CVS Drop > > > No luck! > Anthony > > > It sounds like the form object is not in the session when you go to > > the process.jsp page. This could be due to the session being timed > > out. Try to go back to the index.jsp page and reload, then submit > > again. > > > > Sincerely, > > Anthony Eden > > > > > -----Original Message----- > > > From: Anthony W. Marino [mailto:an...@AW...] > > > Sent: Friday, July 26, 2002 10:22 AM > > > To: Anthony Eden; for...@li... > > > Subject: Re: [FormProc-developer] Build Errors with > Latest CVS Drop > > > > > > > > > Anthony, > > > The following is what I get when attempting to run > > > "formproc-example" and after I submit my input > (process.jsp). I'm > > > running with > > > SuSE7.3/TC4.1.8LE/Java1.41: > > > > > > > > > The server encountered an internal error () that > prevented it from > > > fulfilling this request. > > > > > > > > > exception > > > > > > org.apache.jasper.JasperException: bean form not found > within scope > > > at > > > org.apache.jasper.servlet.JspServletWrapper.service(JspServlet > > > Wrapper.java:246) > > > at > > > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet > > > .java:289) > > > at > > > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240) > > > at > > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > > at > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilt > > > er(ApplicationFilterChain.java:247) > > > at > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli > > > cationFilterChain.java:193) > > > at > > > org.apache.catalina.core.StandardWrapperValve.invoke(StandardW > > > rapperValve.java:260) > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > eContext.invokeNext(StandardPipeline.java:643) > > > at > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > ine.java:480) > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > at > > > org.apache.catalina.core.StandardContextValve.invoke(StandardC > > > ontextValve.java:191) > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > eContext.invokeNext(StandardPipeline.java:643) > > > at > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > ine.java:480) > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > at > > > org.apache.catalina.core.StandardContext.invoke(StandardContex > > > t.java:2350) > > > at > > > org.apache.catalina.core.StandardHostValve.invoke(StandardHost > > > Valve.java:180) > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > eContext.invokeNext(StandardPipeline.java:643) > > > at > > > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi > > > spatcherValve.java:170) > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > eContext.invokeNext(StandardPipeline.java:641) > > > at > > > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport > > > Valve.java:171) > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > eContext.invokeNext(StandardPipeline.java:641) > > > at > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > ine.java:480) > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > at > > > org.apache.catalina.core.StandardEngineValve.invoke(StandardEn > > > gineValve.java:174) > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > eContext.invokeNext(StandardPipeline.java:643) > > > at > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > ine.java:480) > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > at > > > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter. > > > java:223) > > > at > > > org.apache.coyote.http11.Http11Processor.process(Http11Process > > > or.java:405) > > > at > > > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle > > > r.processConnection(Http11Protocol.java:380) > > > at > > > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi > > > nt.java:508) > > > at > > > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run( > > > ThreadPool.java:533) > > > at java.lang.Thread.run(Thread.java:536) > > > > > > > > > root cause > > > > > > javax.servlet.ServletException: bean form not found within scope > > > at > > > org.apache.jasper.runtime.PageContextImpl.handlePageException( > > > PageContextImpl.java:495) > > > at > > > org.apache.jsp.process_jsp._jspService(process_jsp.java:127) > > > at > > > > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:136) > > > at > > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > > at > > > org.apache.jasper.servlet.JspServletWrapper.service(JspServlet > > > Wrapper.java:202) > > > at > > > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet > > > .java:289) > > > at > > > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240) > > > at > > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > > at > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilt > > > er(ApplicationFilterChain.java:247) > > > at > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli > > > cationFilterChain.java:193) > > > at > > > org.apache.catalina.core.StandardWrapperValve.invoke(StandardW > > > rapperValve.java:260) > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > eContext.invokeNext(StandardPipeline.java:643) > > > at > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > ine.java:480) > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > at > > > org.apache.catalina.core.StandardContextValve.invoke(StandardC > > > ontextValve.java:191) > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > eContext.invokeNext(StandardPipeline.java:643) > > > at > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > ine.java:480) > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > at > > > org.apache.catalina.core.StandardContext.invoke(StandardContex > > > t.java:2350) > > > at > > > org.apache.catalina.core.StandardHostValve.invoke(StandardHost > > > Valve.java:180) > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > eContext.invokeNext(StandardPipeline.java:643) > > > at > > > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi > > > spatcherValve.java:170) > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > eContext.invokeNext(StandardPipeline.java:641) > > > at > > > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport > > > Valve.java:171) > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > eContext.invokeNext(StandardPipeline.java:641) > > > at > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > ine.java:480) > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > at > > > org.apache.catalina.core.StandardEngineValve.invoke(StandardEn > > > gineValve.java:174) > > > at > > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > > eContext.invokeNext(StandardPipeline.java:643) > > > at > > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > > ine.java:480) > > > at > > > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > > at > > > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter. > > > java:223) > > > at > > > org.apache.coyote.http11.Http11Processor.process(Http11Process > > > or.java:405) > > > at > > > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle > > > r.processConnection(Http11Protocol.java:380) > > > at > > > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi > > > nt.java:508) > > > at > > > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run( > > > ThreadPool.java:533) > > > at java.lang.Thread.run(Thread.java:536) > > > > > > > > > Apache Tomcat/4.1.8-LE-jdk14 > > > > > > > Fixed. I forgot to check in some updated files. Sorry about > > > > that. > > > > > > > > -Anthony > > > > > > > > > -----Original Message----- > > > > > From: for...@li... > > > > > [mailto:for...@li...] > > > > > > On Behalf Of > > > > > > > > Anthony W. Marino > > > > > Sent: Friday, July 26, 2002 7:07 AM > > > > > To: for...@li... > > > > > Subject: [FormProc-developer] Build Errors with > Latest CVS Drop > > > > > > > > > > > > > > > Buildfile: build.xml > > > > > > > > > > init: > > > > > > > > > > compile: > > > > > [copy] Copying 71 files to > > > > > /usr/local/src/formproc/formproc/build/src > > > > > [copy] Copied 2 empty directories to > > > > > /usr/local/src/formproc/formproc/build/src > > > > > [mkdir] Created dir: > > > > > /usr/local/src/formproc/formproc/build/classes > > > > > [echo] javac classpath = > > > > > lib/jakarta-oro-2.0.6.jar:lib/log4j-core.jar:lib/jaxp.jar:lib/ > > > > > bsf.jar:lib/EdenLib.jar:build-lib/servlet.jar > > > > > [javac] Compiling 63 source files to > > > > > /usr/local/src/formproc/formproc/build/classes > > > > > [javac] > > > > > /usr/local/src/formproc/formproc/build/src/org/formproc/config > > > > > /XMLFormConfiguration.java:84: > > > > > org.formproc.config.XMLFormConfiguration should be declared > > > > > abstract; it does not define isSkipNullValues() in > > > > > org.formproc.config.AbstractFormConfiguration > > > > > [javac] public class XMLFormConfiguration extends > > > > > AbstractFormConfiguration implements > > > > > [javac] ^ > > > > > [javac] 1 error > > > > > > > > > > BUILD FAILED > > > > > file:/usr/local/src/formproc/formproc/build.xml:68: > > > > > > Compile failed; > > > > > > > > see the compiler error output for details. > > > > > > > > > > > > > > > Thank You, > > > > > Anthony > > > > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > This sf.net email is sponsored by:ThinkGeek > > > > > Welcome to geek heaven. > > > > > http://thinkgeek.com/sf > > > > > _______________________________________________ > > > > > FormProc-developer mailing list > > > > > For...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/f> ormproc-developer > > > > > > > > ------------------------------------------------------- > > > > This sf.net email is sponsored by:ThinkGeek > > > > Welcome to geek heaven. > > > > http://thinkgeek.com/sf > > > > _______________________________________________ > > > > FormProc-developer mailing list > > > > For...@li... > > > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > FormProc-developer mailing list > > For...@li... > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > FormProc-developer mailing list > For...@li... > https://lists.sourceforge.net/lists/listinfo/formproc-developer > |
From: Anthony E. <me...@an...> - 2002-07-26 15:12:22
|
It appears that the example web applications which are shipped with FormProc do not work properly with Tomcat 4.0.1 and JDK 1.4. The problem is related to conflicts between the JAXP and Crimson libraries which are included with FormProc and the JAXP libraries which are included in the JDK. The problem does not occur in Tomcat 4.0.3 because class path separation has been improved. The workaround for this problem is to remove the Crimson and JAXP libraries from the WEB-INF/lib directory. This appears to work fine with any copy of Tomcat 4 and JDK 1.4. If you are using JDK 1.3 then the JAXP and Crimson libraries should be left in the WEB-INF/lib directory. Sincerely, Anthony Eden Ph: 305 323 5200 Email: me...@an... Web: http://www.anthonyeden.com/ |
From: Anthony W. M. <an...@AW...> - 2002-07-26 15:02:13
|
No luck! Anthony > It sounds like the form object is not in the session when you go to the > process.jsp page. This could be due to the session being timed out. > Try to go back to the index.jsp page and reload, then submit again. > > Sincerely, > Anthony Eden > > > -----Original Message----- > > From: Anthony W. Marino [mailto:an...@AW...] > > Sent: Friday, July 26, 2002 10:22 AM > > To: Anthony Eden; for...@li... > > Subject: Re: [FormProc-developer] Build Errors with Latest CVS Drop > > > > > > Anthony, > > The following is what I get when attempting to run > > "formproc-example" and > > after I submit my input (process.jsp). I'm running with > > SuSE7.3/TC4.1.8LE/Java1.41: > > > > > > The server encountered an internal error () that prevented it > > from fulfilling > > this request. > > > > > > exception > > > > org.apache.jasper.JasperException: bean form not found within scope > > at > > org.apache.jasper.servlet.JspServletWrapper.service(JspServlet > > Wrapper.java:246) > > at > > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet > > .java:289) > > at > > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240) > > at > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > at > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilt > > er(ApplicationFilterChain.java:247) > > at > > org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli > > cationFilterChain.java:193) > > at > > org.apache.catalina.core.StandardWrapperValve.invoke(StandardW > > rapperValve.java:260) > > at > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > eContext.invokeNext(StandardPipeline.java:643) > > at > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > ine.java:480) > > at > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > at > > org.apache.catalina.core.StandardContextValve.invoke(StandardC > > ontextValve.java:191) > > at > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > eContext.invokeNext(StandardPipeline.java:643) > > at > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > ine.java:480) > > at > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > at > > org.apache.catalina.core.StandardContext.invoke(StandardContex > > t.java:2350) > > at > > org.apache.catalina.core.StandardHostValve.invoke(StandardHost > > Valve.java:180) > > at > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > eContext.invokeNext(StandardPipeline.java:643) > > at > > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi > > spatcherValve.java:170) > > at > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > eContext.invokeNext(StandardPipeline.java:641) > > at > > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport > > Valve.java:171) > > at > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > eContext.invokeNext(StandardPipeline.java:641) > > at > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > ine.java:480) > > at > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > at > > org.apache.catalina.core.StandardEngineValve.invoke(StandardEn > > gineValve.java:174) > > at > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > eContext.invokeNext(StandardPipeline.java:643) > > at > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > ine.java:480) > > at > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > at > > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter. > > java:223) > > at > > org.apache.coyote.http11.Http11Processor.process(Http11Process > > or.java:405) > > at > > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle > > r.processConnection(Http11Protocol.java:380) > > at > > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi > > nt.java:508) > > at > > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run( > > ThreadPool.java:533) > > at java.lang.Thread.run(Thread.java:536) > > > > > > root cause > > > > javax.servlet.ServletException: bean form not found within scope > > at > > org.apache.jasper.runtime.PageContextImpl.handlePageException( > > PageContextImpl.java:495) > > at > > org.apache.jsp.process_jsp._jspService(process_jsp.java:127) > > at > > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:136) > > at > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > at > > org.apache.jasper.servlet.JspServletWrapper.service(JspServlet > > Wrapper.java:202) > > at > > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet > > .java:289) > > at > > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240) > > at > > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > > at > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilt > > er(ApplicationFilterChain.java:247) > > at > > org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli > > cationFilterChain.java:193) > > at > > org.apache.catalina.core.StandardWrapperValve.invoke(StandardW > > rapperValve.java:260) > > at > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > eContext.invokeNext(StandardPipeline.java:643) > > at > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > ine.java:480) > > at > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > at > > org.apache.catalina.core.StandardContextValve.invoke(StandardC > > ontextValve.java:191) > > at > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > eContext.invokeNext(StandardPipeline.java:643) > > at > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > ine.java:480) > > at > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > at > > org.apache.catalina.core.StandardContext.invoke(StandardContex > > t.java:2350) > > at > > org.apache.catalina.core.StandardHostValve.invoke(StandardHost > > Valve.java:180) > > at > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > eContext.invokeNext(StandardPipeline.java:643) > > at > > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi > > spatcherValve.java:170) > > at > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > eContext.invokeNext(StandardPipeline.java:641) > > at > > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport > > Valve.java:171) > > at > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > eContext.invokeNext(StandardPipeline.java:641) > > at > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > ine.java:480) > > at > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > at > > org.apache.catalina.core.StandardEngineValve.invoke(StandardEn > > gineValve.java:174) > > at > > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > > eContext.invokeNext(StandardPipeline.java:643) > > at > > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > > ine.java:480) > > at > > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > > at > > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter. > > java:223) > > at > > org.apache.coyote.http11.Http11Processor.process(Http11Process > > or.java:405) > > at > > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle > > r.processConnection(Http11Protocol.java:380) > > at > > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi > > nt.java:508) > > at > > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run( > > ThreadPool.java:533) > > at java.lang.Thread.run(Thread.java:536) > > > > > > Apache Tomcat/4.1.8-LE-jdk14 > > > > > Fixed. I forgot to check in some updated files. Sorry about that. > > > > > > -Anthony > > > > > > > -----Original Message----- > > > > From: for...@li... > > > > [mailto:for...@li...] > > > > On Behalf Of > > > > > > Anthony W. Marino > > > > Sent: Friday, July 26, 2002 7:07 AM > > > > To: for...@li... > > > > Subject: [FormProc-developer] Build Errors with Latest CVS Drop > > > > > > > > > > > > Buildfile: build.xml > > > > > > > > init: > > > > > > > > compile: > > > > [copy] Copying 71 files to > > > > /usr/local/src/formproc/formproc/build/src > > > > [copy] Copied 2 empty directories to > > > > /usr/local/src/formproc/formproc/build/src > > > > [mkdir] Created dir: > > > > /usr/local/src/formproc/formproc/build/classes > > > > [echo] javac classpath =3D > > > > lib/jakarta-oro-2.0.6.jar:lib/log4j-core.jar:lib/jaxp.jar:lib/ > > > > bsf.jar:lib/EdenLib.jar:build-lib/servlet.jar > > > > [javac] Compiling 63 source files to > > > > /usr/local/src/formproc/formproc/build/classes > > > > [javac] > > > > /usr/local/src/formproc/formproc/build/src/org/formproc/config > > > > /XMLFormConfiguration.java:84: > > > > org.formproc.config.XMLFormConfiguration should be declared > > > > abstract; it does not define isSkipNullValues() in > > > > org.formproc.config.AbstractFormConfiguration > > > > [javac] public class XMLFormConfiguration extends > > > > AbstractFormConfiguration implements > > > > [javac] ^ > > > > [javac] 1 error > > > > > > > > BUILD FAILED > > > > file:/usr/local/src/formproc/formproc/build.xml:68: > > > > Compile failed; > > > > > > see the compiler error output for details. > > > > > > > > > > > > Thank You, > > > > Anthony > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This sf.net email is sponsored by:ThinkGeek > > > > Welcome to geek heaven. > > > > http://thinkgeek.com/sf > > > > _______________________________________________ > > > > FormProc-developer mailing list > > > > For...@li... > > > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > > > > > ------------------------------------------------------- > > > This sf.net email is sponsored by:ThinkGeek > > > Welcome to geek heaven. > > > http://thinkgeek.com/sf > > > _______________________________________________ > > > FormProc-developer mailing list > > > For...@li... > > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > FormProc-developer mailing list > For...@li... > https://lists.sourceforge.net/lists/listinfo/formproc-developer |
From: Anthony E. <me...@an...> - 2002-07-26 14:56:37
|
It sounds like the form object is not in the session when you go to the process.jsp page. This could be due to the session being timed out. Try to go back to the index.jsp page and reload, then submit again. Sincerely, Anthony Eden > -----Original Message----- > From: Anthony W. Marino [mailto:an...@AW...] > Sent: Friday, July 26, 2002 10:22 AM > To: Anthony Eden; for...@li... > Subject: Re: [FormProc-developer] Build Errors with Latest CVS Drop > > > Anthony, > The following is what I get when attempting to run > "formproc-example" and > after I submit my input (process.jsp). I'm running with > SuSE7.3/TC4.1.8LE/Java1.41: > > > The server encountered an internal error () that prevented it > from fulfilling > this request. > > > exception > > org.apache.jasper.JasperException: bean form not found within scope > at > org.apache.jasper.servlet.JspServletWrapper.service(JspServlet > Wrapper.java:246) > at > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet > .java:289) > at > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240) > at > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilt > er(ApplicationFilterChain.java:247) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli > cationFilterChain.java:193) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardW > rapperValve.java:260) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > eContext.invokeNext(StandardPipeline.java:643) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > ine.java:480) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardC > ontextValve.java:191) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > eContext.invokeNext(StandardPipeline.java:643) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > ine.java:480) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.catalina.core.StandardContext.invoke(StandardContex > t.java:2350) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHost > Valve.java:180) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > eContext.invokeNext(StandardPipeline.java:643) > at > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi > spatcherValve.java:170) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > eContext.invokeNext(StandardPipeline.java:641) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport > Valve.java:171) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > eContext.invokeNext(StandardPipeline.java:641) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > ine.java:480) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEn > gineValve.java:174) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > eContext.invokeNext(StandardPipeline.java:643) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > ine.java:480) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter. > java:223) > at > org.apache.coyote.http11.Http11Processor.process(Http11Process > or.java:405) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle > r.processConnection(Http11Protocol.java:380) > at > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi > nt.java:508) > at > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run( > ThreadPool.java:533) > at java.lang.Thread.run(Thread.java:536) > > > root cause > > javax.servlet.ServletException: bean form not found within scope > at > org.apache.jasper.runtime.PageContextImpl.handlePageException( > PageContextImpl.java:495) > at > org.apache.jsp.process_jsp._jspService(process_jsp.java:127) > at > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:136) > at > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > at > org.apache.jasper.servlet.JspServletWrapper.service(JspServlet > Wrapper.java:202) > at > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet > .java:289) > at > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240) > at > javax.servlet.http.HttpServlet.service(HttpServlet.java:853) > at > org.apache.catalina.core.ApplicationFilterChain.internalDoFilt > er(ApplicationFilterChain.java:247) > at > org.apache.catalina.core.ApplicationFilterChain.doFilter(Appli > cationFilterChain.java:193) > at > org.apache.catalina.core.StandardWrapperValve.invoke(StandardW > rapperValve.java:260) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > eContext.invokeNext(StandardPipeline.java:643) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > ine.java:480) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.catalina.core.StandardContextValve.invoke(StandardC > ontextValve.java:191) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > eContext.invokeNext(StandardPipeline.java:643) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > ine.java:480) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.catalina.core.StandardContext.invoke(StandardContex > t.java:2350) > at > org.apache.catalina.core.StandardHostValve.invoke(StandardHost > Valve.java:180) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > eContext.invokeNext(StandardPipeline.java:643) > at > org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDi > spatcherValve.java:170) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > eContext.invokeNext(StandardPipeline.java:641) > at > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReport > Valve.java:171) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > eContext.invokeNext(StandardPipeline.java:641) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > ine.java:480) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.catalina.core.StandardEngineValve.invoke(StandardEn > gineValve.java:174) > at > org.apache.catalina.core.StandardPipeline$StandardPipelineValv > eContext.invokeNext(StandardPipeline.java:643) > at > org.apache.catalina.core.StandardPipeline.invoke(StandardPipel > ine.java:480) > at > org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) > at > org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter. > java:223) > at > org.apache.coyote.http11.Http11Processor.process(Http11Process > or.java:405) > at > org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandle > r.processConnection(Http11Protocol.java:380) > at > org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoi > nt.java:508) > at > org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run( > ThreadPool.java:533) > at java.lang.Thread.run(Thread.java:536) > > > Apache Tomcat/4.1.8-LE-jdk14 > > > > > > Fixed. I forgot to check in some updated files. Sorry about that. > > > > -Anthony > > > > > -----Original Message----- > > > From: for...@li... > > > [mailto:for...@li...] > On Behalf Of > > > Anthony W. Marino > > > Sent: Friday, July 26, 2002 7:07 AM > > > To: for...@li... > > > Subject: [FormProc-developer] Build Errors with Latest CVS Drop > > > > > > > > > Buildfile: build.xml > > > > > > init: > > > > > > compile: > > > [copy] Copying 71 files to > > > /usr/local/src/formproc/formproc/build/src > > > [copy] Copied 2 empty directories to > > > /usr/local/src/formproc/formproc/build/src > > > [mkdir] Created dir: > > > /usr/local/src/formproc/formproc/build/classes > > > [echo] javac classpath = > > > lib/jakarta-oro-2.0.6.jar:lib/log4j-core.jar:lib/jaxp.jar:lib/ > > > bsf.jar:lib/EdenLib.jar:build-lib/servlet.jar > > > [javac] Compiling 63 source files to > > > /usr/local/src/formproc/formproc/build/classes > > > [javac] > > > /usr/local/src/formproc/formproc/build/src/org/formproc/config > > > /XMLFormConfiguration.java:84: > > > org.formproc.config.XMLFormConfiguration should be declared > > > abstract; it does not define isSkipNullValues() in > > > org.formproc.config.AbstractFormConfiguration > > > [javac] public class XMLFormConfiguration extends > > > AbstractFormConfiguration implements > > > [javac] ^ > > > [javac] 1 error > > > > > > BUILD FAILED > > > file:/usr/local/src/formproc/formproc/build.xml:68: > Compile failed; > > > see the compiler error output for details. > > > > > > > > > Thank You, > > > Anthony > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This sf.net email is sponsored by:ThinkGeek > > > Welcome to geek heaven. > > > http://thinkgeek.com/sf > > > _______________________________________________ > > > FormProc-developer mailing list > > > For...@li... > > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > FormProc-developer mailing list > > For...@li... > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > |
From: Anthony W. M. <an...@AW...> - 2002-07-26 14:22:51
|
Anthony, The following is what I get when attempting to run "formproc-example" and= =20 after I submit my input (process.jsp). I'm running with=20 SuSE7.3/TC4.1.8LE/Java1.41: The server encountered an internal error () that prevented it from fulfil= ling=20 this request. exception=20 org.apache.jasper.JasperException: bean form not found within scope at=20 org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.jav= a:246) at=20 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:2= 40) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at=20 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applicat= ionFilterChain.java:247) at=20 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilte= rChain.java:193) at=20 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve= =2Ejava:260) at=20 org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.in= vokeNext(StandardPipeline.java:643) at=20 org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:48= 0) at=20 org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at=20 org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve= =2Ejava:191) at=20 org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.in= vokeNext(StandardPipeline.java:643) at=20 org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:48= 0) at=20 org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at=20 org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2350= ) at=20 org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:= 180) at=20 org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.in= vokeNext(StandardPipeline.java:643) at=20 org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVal= ve.java:170) at=20 org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.in= vokeNext(StandardPipeline.java:641) at=20 org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:= 171) at=20 org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.in= vokeNext(StandardPipeline.java:641) at=20 org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:48= 0) at=20 org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at=20 org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.j= ava:174) at=20 org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.in= vokeNext(StandardPipeline.java:643) at=20 org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:48= 0) at=20 org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at=20 org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) at=20 org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:405= ) at=20 org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processCo= nnection(Http11Protocol.java:380) at=20 org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:508= ) at=20 org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.= java:533) at java.lang.Thread.run(Thread.java:536) root cause=20 javax.servlet.ServletException: bean form not found within scope at=20 org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContext= Impl.java:495) at org.apache.jsp.process_jsp._jspService(process_jsp.java:127) at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java= :136) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at=20 org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.jav= a:202) at=20 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:2= 40) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at=20 org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applicat= ionFilterChain.java:247) at=20 org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilte= rChain.java:193) at=20 org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve= =2Ejava:260) at=20 org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.in= vokeNext(StandardPipeline.java:643) at=20 org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:48= 0) at=20 org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at=20 org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve= =2Ejava:191) at=20 org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.in= vokeNext(StandardPipeline.java:643) at=20 org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:48= 0) at=20 org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at=20 org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2350= ) at=20 org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:= 180) at=20 org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.in= vokeNext(StandardPipeline.java:643) at=20 org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherVal= ve.java:170) at=20 org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.in= vokeNext(StandardPipeline.java:641) at=20 org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:= 171) at=20 org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.in= vokeNext(StandardPipeline.java:641) at=20 org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:48= 0) at=20 org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at=20 org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.j= ava:174) at=20 org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.in= vokeNext(StandardPipeline.java:643) at=20 org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:48= 0) at=20 org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995) at=20 org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223) at=20 org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:405= ) at=20 org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processCo= nnection(Http11Protocol.java:380) at=20 org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:508= ) at=20 org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.= java:533) at java.lang.Thread.run(Thread.java:536) Apache Tomcat/4.1.8-LE-jdk14 > Fixed. I forgot to check in some updated files. Sorry about that. > > -Anthony > > > -----Original Message----- > > From: for...@li... > > [mailto:for...@li...] On > > Behalf Of Anthony W. Marino > > Sent: Friday, July 26, 2002 7:07 AM > > To: for...@li... > > Subject: [FormProc-developer] Build Errors with Latest CVS Drop > > > > > > Buildfile: build.xml > > > > init: > > > > compile: > > [copy] Copying 71 files to > > /usr/local/src/formproc/formproc/build/src > > [copy] Copied 2 empty directories to > > /usr/local/src/formproc/formproc/build/src > > [mkdir] Created dir: > > /usr/local/src/formproc/formproc/build/classes > > [echo] javac classpath =3D > > lib/jakarta-oro-2.0.6.jar:lib/log4j-core.jar:lib/jaxp.jar:lib/ > > bsf.jar:lib/EdenLib.jar:build-lib/servlet.jar > > [javac] Compiling 63 source files to > > /usr/local/src/formproc/formproc/build/classes > > [javac] > > /usr/local/src/formproc/formproc/build/src/org/formproc/config > > /XMLFormConfiguration.java:84: > > org.formproc.config.XMLFormConfiguration should be declared > > abstract; it does > > not define isSkipNullValues() in > > org.formproc.config.AbstractFormConfiguration > > [javac] public class XMLFormConfiguration extends > > AbstractFormConfiguration implements > > [javac] ^ > > [javac] 1 error > > > > BUILD FAILED > > file:/usr/local/src/formproc/formproc/build.xml:68: Compile > > failed; see the > > compiler error output for details. > > > > > > Thank You, > > Anthony > > > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > FormProc-developer mailing list > > For...@li... > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > FormProc-developer mailing list > For...@li... > https://lists.sourceforge.net/lists/listinfo/formproc-developer |
From: Anthony W. M. <an...@AW...> - 2002-07-26 13:06:10
|
Thanks, Anthony > Fixed. I forgot to check in some updated files. Sorry about that. > > -Anthony > > > -----Original Message----- > > From: for...@li... > > [mailto:for...@li...] On > > Behalf Of Anthony W. Marino > > Sent: Friday, July 26, 2002 7:07 AM > > To: for...@li... > > Subject: [FormProc-developer] Build Errors with Latest CVS Drop > > > > > > Buildfile: build.xml > > > > init: > > > > compile: > > [copy] Copying 71 files to > > /usr/local/src/formproc/formproc/build/src > > [copy] Copied 2 empty directories to > > /usr/local/src/formproc/formproc/build/src > > [mkdir] Created dir: > > /usr/local/src/formproc/formproc/build/classes > > [echo] javac classpath =3D > > lib/jakarta-oro-2.0.6.jar:lib/log4j-core.jar:lib/jaxp.jar:lib/ > > bsf.jar:lib/EdenLib.jar:build-lib/servlet.jar > > [javac] Compiling 63 source files to > > /usr/local/src/formproc/formproc/build/classes > > [javac] > > /usr/local/src/formproc/formproc/build/src/org/formproc/config > > /XMLFormConfiguration.java:84: > > org.formproc.config.XMLFormConfiguration should be declared > > abstract; it does > > not define isSkipNullValues() in > > org.formproc.config.AbstractFormConfiguration > > [javac] public class XMLFormConfiguration extends > > AbstractFormConfiguration implements > > [javac] ^ > > [javac] 1 error > > > > BUILD FAILED > > file:/usr/local/src/formproc/formproc/build.xml:68: Compile > > failed; see the > > compiler error output for details. > > > > > > Thank You, > > Anthony > > > > > > > > > > ------------------------------------------------------- > > This sf.net email is sponsored by:ThinkGeek > > Welcome to geek heaven. > > http://thinkgeek.com/sf > > _______________________________________________ > > FormProc-developer mailing list > > For...@li... > > https://lists.sourceforge.net/lists/listinfo/formproc-developer > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > FormProc-developer mailing list > For...@li... > https://lists.sourceforge.net/lists/listinfo/formproc-developer |