RE: Newbie to struts with a question on text fields

2003-12-01 Thread Witt, Mike (OH35)
Not sure if you are using a form bean or a dynaactionform. But, specify a String type field and then validate the string and convert to numeric. Mike -Original Message- From: Nandita Rajagopalan [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2003 1:47 PM To: [EMAIL PROTECTED]

RE: newbie about struts and databases

2003-01-07 Thread James Childers
Allow me. That's a pretty involved question. The best thing you can do for yourself as a beginner is pick up a copy of Struts in Action so you can have some background on the technology and how it should work. If you are new to Java and JSP, I can recommend the WROX Press book JSP Web

RE: newbie about struts and databases

2003-01-07 Thread Wendy Smoak
hi, i'm starting in Struts, and am reading the tutorials in the struts site about building applications with it, and i was thinking if there is any easy tutorial about database access using struts, so i can start more rapidly with it (and my boss doesn't get mad at me while convincing

RE: newbie about struts and databases

2003-01-07 Thread Phase Web and Multimedia
: Tuesday, January 07, 2003 3:16 PM To: 'Struts Users Mailing List' Subject: RE: newbie about struts and databases hi, i'm starting in Struts, and am reading the tutorials in the struts site about building applications with it, and i was thinking if there is any easy tutorial about database

thanks a lot (Re: newbie about struts and databases)

2003-01-07 Thread miguel angel rojas aquino
miguel angel rojas aquino wrote: hi, i'm starting in Struts, thanks a lot for your responses, it clears the path i need to follow to become a good struts user :) -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: Newbie to struts

2002-09-17 Thread Howard Miller
Hi, I've read this about 5 times now and still can't get my head aroud what you are doing. Can you draw us a picture of what directories hold what, what your classpath is, and what your javac command is. Personally I have always used the structure recommended in the tomcat documentation that

RE: Newbie to struts

2002-09-17 Thread Howard Miller
Hi again, I'm assuming you are using Tomcat, which may not be the case... this is still worth a look I think http://jakarta.apache.org/tomcat/tomcat-4.1-doc/appdev/source.html Howard -Original Message- From: angela mcgrenra [mailto:[EMAIL PROTECTED]] Sent: 17 September 2002 09:48

RE: Newbie to struts

2002-09-17 Thread angela mcgrenra
have saved locally in my classes directory... I have saved this path into my CLASSPATH variable but to no avail... From: Howard Miller [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: Newbie to struts Date

Re: Newbie to struts

2002-09-17 Thread Kalaiselvan
PROTECTED] Sent: Tuesday, September 17, 2002 3:40 PM Subject: RE: Newbie to struts OKAY I have a dir structure as follows C:\java\jakarta-tomcat-3.3.1\webapps\strutsShop\BookView.jsp C:\java\jakarta-tomcat-3.3.1\webapps\strutsShop\CreateBook.jsp C:\java\jakarta-tomcat-3.3.1\webapps\strutsShop\WEB

RE: Newbie to struts

2002-09-17 Thread Howard Miller
: RE: Newbie to struts OKAY I have a dir structure as follows C:\java\jakarta-tomcat-3.3.1\webapps\strutsShop\BookView.jsp C:\java\jakarta-tomcat-3.3.1\webapps\strutsShop\CreateBook.jsp C:\java\jakarta-tomcat-3.3.1\webapps\strutsShop\WEB-INF\classes\Book.java C:\java\jakarta-tomcat-3.3.1\webapps

Re: Newbie to struts

2002-09-17 Thread Jin Bal
, September 17, 2002 11:10 AM Subject: RE: Newbie to struts OKAY I have a dir structure as follows C:\java\jakarta-tomcat-3.3.1\webapps\strutsShop\BookView.jsp C:\java\jakarta-tomcat-3.3.1\webapps\strutsShop\CreateBook.jsp C:\java\jakarta-tomcat-3.3.1\webapps\strutsShop\WEB-INF\classes

RE: Newbie to struts

2002-09-17 Thread Miguel Angel Mulero Martinez
It's a silly answer, but, have you compiled Book before BookAction? -Mensaje original- De: angela mcgrenra [mailto:[EMAIL PROTECTED]] Enviado el: martes, 17 de septiembre de 2002 12:11 Para: [EMAIL PROTECTED] Asunto: RE: Newbie to struts OKAY I have a dir structure as follows C:\java

RE: Newbie to struts

2002-09-17 Thread angela mcgrenra
[EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: Newbie to struts Date: Tue, 17 Sep 2002 11:28:21 +0100 Correct me if I'm wrong, but it seems that the compiler is not finding class Book, which is (supposed to be) in the same default package as BookAction? Therefore

RE: Newbie to struts

2002-09-17 Thread angela mcgrenra
[EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: Newbie to struts Date: Tue, 17 Sep 2002 11:28:21 +0100 Correct me if I'm wrong, but it seems that the compiler is not finding class Book, which is (supposed to be) in the same default package as BookAction? Therefore

RE: Newbie to struts

2002-09-17 Thread angela mcgrenra
[EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: Newbie to struts Date: Tue, 17 Sep 2002 11:28:21 +0100 Correct me if I'm wrong, but it seems that the compiler is not finding class Book, which is (supposed to be) in the same default package as BookAction? Therefore

Re: newbie to struts - confirm hierachy( packages - webapps)!!

2001-06-05 Thread Jonathan Asbell
I decided to NOT use the Struts.jar, but instead use the Struts source files, and then add my own directories below the classes directory for that particular web app. That way I could tweak Struts and have a better way of replacing updates to the classes. My setup is like this: 1) Struts

Re: newbie to struts - confirm hierachy( packages - webapps)!!

2001-06-05 Thread Ted Husted
Some people like to keep the source Java files at a separate location, and then have Ant copy them over to the classes directory, but mixing the class and java files in the same folder works too. Personally, when using a package hierarchy for my classes, I tend to just name things

Re: newbie to struts - confirm hierachy( packages - webapps)!!

2001-06-05 Thread Jonathan Asbell
jeez. You are up early! - Original Message - From: Ted Husted [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 05, 2001 6:30 AM Subject: Re: newbie to struts - confirm hierachy( packages - webapps)!! Some people like to keep the source Java files at a separate location

Re: Newbie to struts - jdbc/dbtags

2001-06-05 Thread kuma.cra
Hi Ted , it did thanks. Ted Husted wrote: You can configure Postgresql in the struts-config.xml, and then use the same datasource with the Jakarta Taglibs JDBC. Works like a charm. Struts uses org.apache.struts.action.DATA_SOURCE as the datasource identifier (see Action.java).

Re: Newbie to struts - jdbc/dbtags

2001-06-04 Thread kuma.cra
Hi, im a newbie to struts basically applying the examples and reading the documentation (mvc). I am about to connect a psql datasource (Postgresql, luinx OS) database to a struts mvc utilizing a database URL . Thus is there a ActionForm example and what level if i have to create a ActionForm

Re: Newbie to struts - jdbc/dbtags

2001-06-04 Thread Ted Husted
You can configure Postgresql in the struts-config.xml, and then use the same datasource with the Jakarta Taglibs JDBC. Works like a charm. Struts uses org.apache.struts.action.DATA_SOURCE as the datasource identifier (see Action.java). kuma.cra wrote: Hi, im a newbie to struts basically

Re: Newbie to Struts

2001-02-26 Thread Martin Cooper
Standard JSP tags behave the same way in a Struts application as they do in any other web application. You might want to check a general JSP resource, such as the JSP-INTEREST archives at: http://archives.java.sun.com/archives/jsp-interest.html Hope this helps. -- Martin Cooper Tumbleweed