hi. i am trying to deploy this webservice on a local jboss server running windows xp.
http://code.google.com/p/transitdatafeeder/w/list
i have jboss-5.1.0.GA unpacked and able to run before i deploy the app with all the default configuration.
i have the postgreSQL version 8.3 installed with the JDBC driver and
the driver jar set in the CLASSPATH in the env variables and also the
postgresql-8.4-701.jdbc3.jar copied into the lib folders of jboss. i
have made a database called feedbase in postgreSQL which is needed for the project to deploy.
the database tables and everything else should be done by the app on the first run but it seems there is a problem creating the initial tables.
i wonder if it is any additional setup i need to do for postgreSQL driver to work with JBoss and also if there is something i need to do to configure hibernate.
there are a couple of errors in the log files that prevent the
successful startup of the service. this is where they start:
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
2010-10-28 17:50:04,656 INFO
[org.hibernate.impl.SessionFactoryObjectFactory] (main) Bound factory
to JNDI name: persistence.unit:unitName=#datafeeder
2010-10-28 17:50:04,656 WARN
[org.hibernate.impl.SessionFactoryObjectFactory] (main) InitialContext
did not implement EventContext
2010-10-28 17:50:04,671 INFO
[org.hibernate.tool.hbm2ddl.SchemaValidator] (main) Running schema
validator
2010-10-28 17:50:04,671 INFO
[org.hibernate.tool.hbm2ddl.SchemaValidator] (main) fetching database
metadata
2010-10-28 17:50:04,906 INFO
[org.hibernate.tool.hbm2ddl.DatabaseMetadata] (main) table not found:
address
2010-10-28 17:50:04,921 ERROR
[org.jboss.kernel.plugins.dependency.AbstractKernelController] (main)
Error installing to Start: name=persistence.unit:unitName=#datafeeder
state=Create
javax.persistence.PersistenceException: [PersistenceUnit: datafeeder]
Unable to build EntityManagerFactory
at
org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Configuration.java:
677)
at
org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:
132)
at
org.jboss.jpa.deployment.PersistenceUnitDeployment.start(PersistenceUnitDeployment.java:
301)
here are both of the logs
appreciate any help you can give me.
tnx.