Struts Problem

2004-02-17 Thread Coolyogs
Sorry I didn't get any reply because i was unsubscibed. Now I have subscibed again. Hi, I hav one problem with struts framework. My application is developed with struts and its working fine. As a enhancement I have to integrate Query Builder which is a JSP based application. Query builder is

Re: Torque and Struts problem

2004-01-27 Thread Kris Schneider
What happens with this instead of JSTL: jsp:useBean id=comptest scope=request type=org.ttemplating.internal.dataobjects.Component/ jsp:getProperty name=comptest property=name/ Paul Daniell wrote: From: Kris Schneider [EMAIL PROTECTED] I suppose this could be a

Re: Torque and Struts problem

2004-01-27 Thread P. Daniell
with the same problem. Everything behaves properly when the class is renamed Komponent. PD - Original Message - From: Kris Schneider [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, January 26, 2004 3:14 PM Subject: Re: Torque and Struts problem My email's

Re: Torque and Struts problem

2004-01-27 Thread Kris Schneider
Schneider [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, January 26, 2004 3:14 PM Subject: Re: Torque and Struts problem My email's acting flaky, sorry if this gets posted twice: What happens with this instead of JSTL: jsp:useBean id=comptest

Re: Torque and Struts problem

2004-01-27 Thread Kris Schneider
Mailing List [EMAIL PROTECTED] Sent: Monday, January 26, 2004 3:14 PM Subject: Re: Torque and Struts problem My email's acting flaky, sorry if this gets posted twice: What happens with this instead of JSTL: jsp:useBean id=comptest scope=request

Torque and Struts problem

2004-01-26 Thread Paul Daniell
I've encountered a strange problem with Struts when used with Torque. I retrieve an object using the following: ArrayList list = (ArrayList)ComponentPeer.doSelect(new Criteria()); request.setAttribute(components, list); Component c = (Component)list.get(0); request.setAttribute(comptest, c);

Re: Torque and Struts problem

2004-01-26 Thread Kris Schneider
I suppose this could be a classloader issue. Are all your Struts, Torque, and JSTL JAR files colocated? Quoting Paul Daniell [EMAIL PROTECTED]: I've encountered a strange problem with Struts when used with Torque. I retrieve an object using the following: ArrayList list =

Re: Torque and Struts problem

2004-01-26 Thread Paul Daniell
From: Kris Schneider [EMAIL PROTECTED] I suppose this could be a classloader issue. Are all your Struts, Torque, and JSTL JAR files colocated? Yes. I am using Struts 1.1 rc1, Torque 3.0.2, and JSTL 1.0. Quoting Paul Daniell [EMAIL PROTECTED]: I've encountered a strange problem with

Re: Torque and Struts problem

2004-01-26 Thread Kris Schneider
My email's acting flaky, sorry if this gets posted twice: What happens with this instead of JSTL: jsp:useBean id=comptest scope=request type=org.ttemplating.internal.dataobjects.Component/ jsp:getProperty name=comptest property=name/ Paul Daniell wrote: From: Kris

HttpUnit and Struts: Problem solved

2003-10-22 Thread Moyer, Alan L
It was a coding bug in my application. I hadn't provided an input parameter for the Login action and the way HttpUnit called the server, it exercised a different code path where mapping.getInputForward() was called. As a Struts enhancement, it would be nice if a different exception besides null

RE: Struts Problem

2003-08-14 Thread Erez Efrati
: Sridhar Kotagiri [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 8:03 PM To: Struts Users Mailing List Subject: RE: Struts Problem Hi Erez, when Im using html-el tags its throwing an exception html-el:form action=/myaccount/advanced/edit/continue logic:notEmpty name

RE: Struts Problem

2003-08-14 Thread Sridhar Kotagiri
at org.apache.jasper.runtime.PageContextImpl.handlePageException Thanks! Sridhar -Original Message- From: Erez Efrati [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 1:26 PM To: 'Struts Users Mailing List' Subject: RE: Struts ProblemUrgent The reason this is not working

[OT] Re: Struts Problem!!!!Urgent

2003-08-14 Thread Gregory F. March
On Aug 7, 2003, Sridhar Kotagiri [EMAIL PROTECTED] wrote: | I have a HashMap in my ActionForm bean.I am able to display the data.Butwh | en I submit this form | I am unable to carry the data.can anyone help me regarding this. No offense, but why is your issue more urgent than anyone

RE: Struts Problem!!!!Urgent

2003-08-14 Thread Erez Efrati
}) / using the html-el taglib of Struts-EL. Haven't tested it but I think it should work. HTH, Erez -Original Message- From: Sridhar Kotagiri [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 6:16 PM To: Struts Users Mailing List Subject: Struts ProblemUrgent Hi, I have

Struts Problem!!!!Urgent

2003-08-14 Thread Sridhar Kotagiri
Hi, I have a HashMap in my ActionForm bean.I am able to display the data.Butwhen I submit this form I am unable to carry the data.can anyone help me regarding this. logic:notEmpty name=editAdvancedForm property=ip b class=txtMedium id=largebean:message bundle=content

Re: struts problem(Unable to populate the form in the jsp to ActionForm bean)

2003-08-12 Thread Paul Thomas
On 08/08/2003 02:11 Sridhar Kotagiri wrote: Hi, I have a Action form which contains an arraylist the array list adds beans which are called IpAddress(two String properties).I am able to display in the jsp page but when I submit this form it is unable to populate to the action form. b

Re: struts problem(Unable to populate the form in the jsp to ActionFormbean)

2003-08-11 Thread Adam Hardy
That's because your ipAddress objects don't exist in your formbeans arraylist when you submit. In your formbean you are only instantiating one ipAddress object. Sridhar Kotagiri wrote: Hi, I have a Action form which contains an arraylist the array list adds beans which are called

Re: struts problem(Unable to populate the form in the jsp to ActionFormbean)

2003-08-09 Thread Nicholas L Mohler
]To: struts-user [EMAIL PROTECTED] co.uk cc: Subject: Re: struts problem(Unable to populate

RE: Struts Problem!!!!Urgent

2003-08-08 Thread Andrew Hill
http://www.catb.org/~esr/faqs/smart-questions.html -Original Message- From: Sridhar Kotagiri [mailto:[EMAIL PROTECTED] Sent: Friday, 8 August 2003 00:16 To: Struts Users Mailing List Subject: Struts ProblemUrgent Hi, I have a HashMap in my ActionForm bean.I am able

struts problem(Unable to populate the form in the jsp to ActionForm bean)

2003-08-07 Thread Sridhar Kotagiri
Hi, I have a Action form which contains an arraylist the array list adds beans which are called IpAddress(two String properties).I am able to display in the jsp page but when I submit this form it is unable to populate to the action form. b class=txtMedium

Struts problem with Tomcat virtual host

2003-03-25 Thread Jamesey
I've configured a virtual host in tomcat server.xml the welcome page displays fine, but it appears that the action forward is failing somehow.. i get a 'this page can not be found' error.. i've tried my struts-config.xml to see if it was a problem with leading / but no difference.. any ideas?

My IE, Tomcat, or Struts problem?

2003-01-22 Thread joni santoso
Hi, I created a folder in my webapps for playing with struts. I have put a Context entry in my Tomcat's server.xml stating that that folder is reloadable = true. Now, I sometimes add new entry/edit an entry to the application resources file. When I refresh my IE, it doesn't show the new

Resin 2.1.3 and struts: Problem

2002-07-26 Thread Will Jaynes
FYI. The latest Resin 2.1.3 does not work with Struts. It has a bug that prevents the ActionServlet from locating the web.xml and struts-config.xml files. So don't bother to upgrade until 2.1.4 comes out. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail:

Struts problem

2002-07-18 Thread olivier . fousse
Hi , I am using Struts framework to fecilitate MVC architecture for my application. After runing my tomcat server it is not finding ApplicationResources.properties file. its in tomcat\jakarta-tomcat-3.2.3\webapps\struts-blank\WEB-INF\classes dir where index.title is defined in

iPlanet + Struts Problem

2002-06-12 Thread Greg Ritter
I'm having a problem getting a very simple Struts application to work on iPlanet Web Server 6.0 SP1 + iPlanet Application Server 6.0 SP4. JSPs using the struts taglibs seem to work properly, but whenever I try to request a page that matches the *.do url pattern, I get the following in my browser:

Re: iPlanet + Struts Problem

2002-06-12 Thread Greg Ritter
Well, I managed to find two other resources, a combination of which solved my problem: http://www.icsynergy.com/downloads/struts/strutsHowTo.html http://softwareforum.sun.com/servlet/ProcessRequest?RHIVEID=181RPAGEID=135; HOID=50B50008002E03UCATEGORY_0=_29_%24_6_24_UCATEGORY_S=0USEA

Re: RES: JRun and struts problem worked out?

2002-04-04 Thread Rick Reumann
Reumann [SMTP:[EMAIL PROTECTED]] Enviada em: quarta-feira, 3 de abril de 2002 21:00 Para: [EMAIL PROTECTED] Assunto: JRun and struts problem worked out? gilson, Hi, did you ever get that JRun/Struts problem worked out? I'm getting the same error with JRun

RE: RES: JRun and struts problem worked out?

2002-04-04 Thread Thinh Doan
you should only need struts.jar in app/WEB-INF/lib. Thinh -Original Message- From: Rick Reumann [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 04, 2002 8:30 AM To: Gilson Nascimento D Elrei Cc: Struts Users Mailing List Subject: Re: RES: JRun and struts problem worked out? Thanks

RE: Struts problem whith Xalan (xml-apis.jar)

2002-03-21 Thread Javier Campoamor
List Asunto: Struts problem whith Xalan (xml-apis.jar) Hi, I'm having problems while trying to use Xalan with Struts. I have found that the problem is that when I include the xml-apis.jar file into the WEB-INF/lib directory I got an exception when I then re-start the application

Struts problem whith Xalan (xml-apis.jar)

2002-03-20 Thread Javier Campoamor
Hi, I'm having problems while trying to use Xalan with Struts. I have found that the problem is that when I include the xml-apis.jar file into the WEB-INF/lib directory I got an exception when I then re-start the application. It doesn't matter if I use Crimson or Xerces; I always have the same

i18n and struts problem

2002-03-11 Thread Haider Kazmi
I will really appreciate if someone would give me a nudge in the correct direction. I have japanese multibyte characters in Strings that I put in my jsps with %=japanString% This data is corrupted when I view it in a japanese (SJIS) browser. I can fix this if instead of using japaneString I do

RE: i18n and struts problem

2002-03-11 Thread Maris Orbidans
2:47 PM To: [EMAIL PROTECTED] Subject: i18n and struts problem I will really appreciate if someone would give me a nudge in the correct direction. I have japanese multibyte characters in Strings that I put in my jsps with %=japanString% This data is corrupted when I view it in a japanese (SJIS

WAS 3.5.3 and Struts problem (Jasper)

2002-01-03 Thread Alexei Chirokikh
Hi, I am trying to run Struts application on WAS3.5.3 and facing following problem. stdout.txt does not show any errors during the startup; all action mapping are OK. However, when I am trying to load JSP page with form on it, it gives this error. Did anybody face with this problem before?

RE: Re[2]: SAX / Struts problem SAXNotRecognizedException

2001-12-14 Thread Rob Parker
List Subject: Re[2]: SAX / Struts problem SAXNotRecognizedException Thanks! I did it, but now I have this exception: [01.12.04 12:58:40:817 GMT-02:00] fecb3fc4 WebGroup X Root Cause java.lang.ClassFormatError: org/apache/xerces/framework/XMLErrorReporter (Bad

RE: SAX / Struts problem SAXNotRecognizedException

2001-12-04 Thread Esterkin, Alex
Alex Esterkin = -Original Message- From: jpablo [mailto:[EMAIL PROTECTED]] Sent: Monday, December 03, 2001 14:40 To: Struts Users Mailing List Subject: Re: SAX / Struts problem SAXNotRecognizedException I still

SAX / Struts problem SAXNotRecognizedException

2001-12-03 Thread jpablo
When WebSphere tries to start the Action servlet it throws the following exception: [01.12.03 16:04:20:128 GMT-02:00] fec2bfc4 WebGroup X Root Cause org.xml.sax.SAXNotRecognizedException: http://xml.org/sax/features/raw-names

Re: SAX / Struts problem SAXNotRecognizedException

2001-12-03 Thread jpablo
I still triyng to make it work, But I still getting the same exception, Under what condicion this exception is thrown? Any help will be really appreciated. Thanks in advance. j When WebSphere tries to start the Action servlet it throws the j following exception: j [01.12.03 16:04:20:128

SAX / Struts problem SAXNotRecognizedException II

2001-12-03 Thread jpablo
I replaced the jaxp.jar for other, Now I get the following exception: javax.xml.parsers.FactoryConfigurationError: org.apache.xerces.jaxp.SAXParserFactoryImpl What can be wrong? TIA j When WebSphere tries to start the Action servlet it throws the j following exception: j [01.12.03

Re: VAJ 3.5.3 and framework Struts -- PROBLEM

2001-11-23 Thread Danny Collins
: VAS 3.5.3 and framework Struts -- PROBLEM Hi, I have a pb with VAS 3.5.3 and Struts... I try to do all the modifications found in the web site of IBM but it wasn't work... I don't understand the use of the file web.xml It seems that we only use the .webapp and not the web.xml is it right

Re: VAS 3.5.3 and framework Struts -- PROBLEM

2001-11-23 Thread Francois-Xavier Bonnet
What you need to do to have Struts work with VAJ 3.5.3 : 1) Get a parser that corresponds to the JAXP API and works with Struts, but does not conflict with the IBM XML4Java parser that the WTE requires. In order to do that : - Download JAXP 1.01 at http://java.sun.com/xml/archive.html - Unzip

VAS 3.5.3 and framework Struts -- PROBLEM

2001-11-23 Thread nicolas muller
Hi, I have a pb with VAS 3.5.3 and Struts... I try to do all the modifications found in the web site of IBM but it wasn't work... I don't understand the use of the file web.xml It seems that we only use the .webapp and not the web.xml is it right with the norm of VAS ? web.xml is only for

tomcat 4.0 and struts problem

2001-10-04 Thread Viet Kevin
Hello all : I try to run struts with tomcat 4.0 and get this exception at the startup : java.lang.NullPointerException at org.apache.struts.digester.Digester.parse(Digester.java:755) at org.apache.struts.action.ActionServlet.initMapping(ActionServlet.java:1331) at

RE: tomcat 4.0 and struts problem

2001-10-04 Thread Arnaud Héritier
:tomcat 4.0 and struts problem Hello all : I try to run struts with tomcat 4.0 and get this exception at the startup : java.lang.NullPointerException at org.apache.struts.digester.Digester.parse(Digester.java:755) at org.apache.struts.action.ActionServlet.initMapping

Re: weblogic 6.0 and STRUTS problem

2001-10-04 Thread Luis Olivares
'copy the struts-upload.war to webLogic6.0sp1.'? How you deploy the war file? Are you using the Default Console? - Original Message - From: BinhMinh Nguyen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 03, 2001 6:55 PM Subject: weblogic 6.0 and STRUTS problem Hi I

RE: tomcat 4.0 and struts problem

2001-10-04 Thread Brett Porter
Title: RE: tomcat 4.0 and struts problem Hi, There was a similar problem discussed last week. My solution at the time was similar, and a bit dodgy :) I've just read the Tomcat 4 Class Loader HOWTO today and that explains the problems - as you've said its all to do with XML parsers. I think

weblogic 6.0 and STRUTS problem

2001-10-03 Thread BinhMinh Nguyen
Hi I have the below error when I copy the struts-upload.war to webLogic6.0sp1. It just cannot load the app. Can you tell me why? Thanks Binh t: 'action' java.lang.NoSuchMethodError at org.apache.commons.digester.Digester.parse(Digester.java:859) at

RE: TILES template with STRUTS problem

2001-08-09 Thread Craig R. McClanahan
/builds/jakarta-struts/nightly/ Thanks Shipra Jain Craig -Original Message- From: Cedric Dumoulin [mailto:[EMAIL PROTECTED]] Sent: Monday, August 06, 2001 4:17 PM To: [EMAIL PROTECTED] Subject: Re: TILES template with STRUTS problem Which xml parser do you use

Re: TILES template with STRUTS problem

2001-08-06 Thread Cedric Dumoulin
Which xml parser do you use ? Tiles, like Struts1.1-dev use commons.Digester package, which requires Jaxp1.1 to run. Cedric BinhMinh Nguyen wrote: Hi, When copied the titles-doc.WAR into Tomcat 's webapps and run. The following error-message display. Can you spot out the error

Tomcat+Apache+Struts Problem

2001-04-20 Thread Jim Bruno Goldberg
I people. I am still with my struts problem. I try to copy the struts-test on webapps tomcat's dir but it does not work. My set variables: TOMCAT_HOME=/usr/local/tomcat PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:/usr/local/jdk1.1.8

Re: Tomcat+Apache+Struts Problem

2001-04-20 Thread Jean-Noel Ribette
The problem is in your Java version. Struts needs Java 1.2 or later to run. Jean-Noel - Original Message - From: Jim Bruno Goldberg [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 20, 2001 6:16 PM Subject: Tomcat+Apache+Struts Problem I people. I am still with my

Re: Tomcat+Apache+Struts Problem

2001-04-20 Thread Jim Bruno Goldberg
At 18:32 20/04/01 +0200, you wrote: The problem is in your Java version. Struts needs Java 1.2 or later to run. Jean-Noel Thanks. I will install the new JDK. CUL8R,[]s Jim Bruno Goldberg [EMAIL PROTECTED]