[JBoss-user] [Beginners Corner] - Re: jboss and MySql

2005-05-18 Thread oba
So...was there a solution found to configuring MySql for JBoss 4.0 (I'm on XP) 
?   

I've seen it here and other internet posts where in order to configure mysql 
for jboss 4.0,  config items are to be placed in non-existant folders...???

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

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


---
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: jboss and MySql

2005-05-05 Thread simonk
Slight problem with that theory mate...there is no Jboss jca directory in the 
deploy directory of JBoss 4.0.0 or 4.0.1


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

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


---
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r=20
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: jboss and MySql

2005-04-27 Thread cheermiaow
I hava encounted this problem before, its "get started" document do nothing 
with this issue.
Actually, you must place the mysql-ds.xml to correct directory. I placed it in 
/usr/local/jboss/server/all/deploy/jca and then it works!

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

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


---
SF.Net email is sponsored by: Tell us your software development plans!
Take this survey and enter to win a one-year sub to SourceForge.net
Plus IDC's 2005 look-ahead and a copy of this survey
Click here to start!  http://www.idcswdc.com/cgi-bin/survey?id=105hix
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: jboss and MySql

2005-04-26 Thread mbds
I had the same error and I finally realized I was using a wrong mysql-ds.xml 
(from a previous version).

Check that your file has the correct format as defined in 
jboss/docs/examples/jca/mysql-ds.xml (I was missing the metadata tag) :


  
MySqlDS
jdbc:mysql://mysql-hostname:3306/jbossdb
com.mysql.jdbc.Driver
x
y

org.jboss.resource.adapter.jdbc.vendor.MySQLExceptionSorter





   mySQL

  




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

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


---
SF.Net email is sponsored by: Tell us your software development plans!
Take this survey and enter to win a one-year sub to SourceForge.net
Plus IDC's 2005 look-ahead and a copy of this survey
Click here to start!  http://www.idcswdc.com/cgi-bin/survey?id=105hix
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: jboss and MySql

2005-04-21 Thread jonghun95
The following is the error message when I start server.

15:08:44,678 ERROR [DatabasePersistencePolicy] Starting failed jboss.ejb:service
=EJBTimerService,persistencePolicy=database
java.lang.IllegalStateException: Cannot find datasource meta data: jboss.jdbc:da
tasource=MySqlDS,service=metadata
at org.jboss.ejb.txtimer.GeneralPurposeDatabasePersistencePlugin.init(Ge
neralPurposeDatabasePersistencePlugin.java:81)
at org.jboss.ejb.txtimer.DatabasePersistencePolicy.startService(Database
PersistencePolicy.java:93)
at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanS
upport.java:272)
at org.jboss.system.ServiceMBeanSupport.start(ServiceMBeanSupport.java:1
73)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:144)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:249)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: jboss and MySql

2005-04-21 Thread jonghun95
I did what the document said. But jboss does not find MySql DB. Can you 
recommend some places I should check?

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

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


---
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: jboss and MySql

2005-04-18 Thread firasath
http://docs.jboss.org/jbossas/getting_started/startguide40/db.html


chapter 8 of the manual talks about this

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

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


---
This SF.Net email is sponsored by: New Crystal Reports XI.
Version 11 adds new functionality designed to reduce time involved in
creating, integrating, and deploying reporting solutions. Free runtime info,
new features, or free trial, at: http://www.businessobjects.com/devxi/728
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user