[JBoss-user] [Beginners Corner] - Re: Looking for small mysql example app

2004-04-10 Thread frocco
I replaced the tomcat 4.1 server with the 5.0 version.
I get this error message now using the test.jsp file above

javax.servlet.ServletException: 
javax.servlet.jsp.tagext.TagAttributeInfo.(Ljava/lang/String;ZLjava/lang/String;ZZ)V
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:256)
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830051#3830051

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830051


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Looking for small mysql example app

2004-04-10 Thread frocco
Here is the message:
org.apache.jasper.JasperException: This absolute uri 
(http://java.sun.com/jsp/jstl/sql) cannot be resolved in either web.xml or the jar 
files deployed with this application

Here is the jsp file contents
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql"; prefix="sql" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core"; prefix="c" %>

  

  


Thanks for the help.
Frank

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830049#3830049

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830049


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Looking for small mysql example app

2004-04-10 Thread camel
What are you trying to do in JSP?  What is the error message you get from JBoss 3.2.3? 
 

JBoss 3.2.3 defaults to Tomcat 4.1, not 5.0.  You may need 5.0 to use parts of the 
JSTL.  You can install Tomcat 5.0 in Jboss 3.2.3 by running the ant script in the 
jboss\docs\examples\tomcat directory.  Also Jboss 3.2.4RC1 defaults to Tomcat 5 and 
I've used JSTL with it.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830044#3830044

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830044


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Looking for small mysql example app

2004-04-09 Thread frocco
I managed to get my jsp talking to mysql in jboss 4.0RC3

I cannot get jboss 3.2.3 working.

Does anyone know why the 4.0 works and not the 3.2.3?
Can I unse 4.0 in production?


Thanks

Frank

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3830027#3830027

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3830027


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Looking for small mysql example app

2004-04-09 Thread frocco
Thanks for teh help. I'll try it.

Will JSTL work in jboss, where do I put the jstl.jar file?

Regards,

Frank

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3829973#3829973

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3829973


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Looking for small mysql example app

2004-04-09 Thread camel
1.  Get the latest MySQL JDBC Connector/J driver from www.mysql.com - 3.0.11 works 
well.  Place the JAR driver file in your jboss/server/default/lib directory.

2.  Create a file called mysql-ds.xml (or anything-ds.xml) with the following 
contents, and drop it in the deploy directory:


  | 
  | 
  | 
  | MysqlDS
  | jdbc:mysql://localhost/test
  | com.mysql.jdbc.Driver
  | yourusername
  | yourpassword
  | 
  | 
  | 

Of course, replace 'yourusername' and 'yourpassword' with a username and password that 
can access the database.  

As for getting an app to talk to the DB, I recommend the jboss workbook that goes with 
o'reilly's EJB book, see http://www.oreilly.com/catalog/entjbeans3/workbooks/

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3829943#3829943

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3829943


---
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user