[EJB 3.0] - Problems with ejb3 EntityManager, find method
by marianokm
Hi, i got the following exception when i run my code
| Hibernate: select rol0_.ROL_ID as ROL1_6_0_, rol0_.ADMINISTRADOR as ADMINIST2_6_0_, rol0_.DESCRIPCION as DESCRIPC3_6_0_, rol0_.HABIL
| ITADO as HABILITADO6_0_, rol0_.NOTAS as NOTAS6_0_ from ROL rol0_ where rol0_.ROL_ID=?
| 17:21:47,640 ERROR [STDERR] java.lang.ClassCastException: ar.com.ebizlink.server.models.Rol
| 17:21:47,640 ERROR [STDERR] at $Proxy97.getRol(Unknown Source)
| 17:21:47,640 ERROR [STDERR] at ar.com.ebizlink.console.controllers.RolController.edit(Unknown Source)
|
My enviroment is:
jboss-4.0.5.GA, jems installer (ejb3 instalation)
j2sdk1.5.0_09
jboss-eclipse 1.5
and the files are listed next ...
Rol.java
| package ar.com.ebizlink.server.models;
|
| import javax.persistence.Column;
| import javax.persistence.Entity;
| import javax.persistence.GeneratedValue;
| import javax.persistence.Id;
| import javax.persistence.Table;
|
| @Entity
| @Table(name = "ROL")
| public class Rol implements java.io.Serializable {
|
| private static final long serialVersionUID = 1L;
|
| // Fields
| private Long rolId;
|
| private String descripcion;
|
| private Boolean habilitado;
|
| private Boolean administrador;
|
| private String notas;
|
| // Constructors
|
| /** default constructor */
| public Rol() {
| }
|
| /** minimal constructor */
| public Rol(Long rolId) {
| this.rolId = rolId;
| }
|
| /** full constructor */
| public Rol(Long rolId, String descripcion, Boolean habilitado,
| Boolean administrador, String notas) {
| this.rolId = rolId;
| this.descripcion = descripcion;
| this.habilitado = habilitado;
| this.administrador = administrador;
| this.notas = notas;
| }
|
| // Property accessors
| @Id
| @GeneratedValue
| @Column(name = "ROL_ID", unique = true, nullable = false, insertable = true, updatable = true)
| public Long getRolId() {
| return this.rolId;
| }
|
| public void setRolId(Long rolId) {
| this.rolId = rolId;
| }
|
| @Column(name = "DESCRIPCION", unique = false, nullable = true, insertable = true, updatable = true, length = 50)
| public String getDescripcion() {
| return this.descripcion;
| }
|
| public void setDescripcion(String descripcion) {
| this.descripcion = descripcion;
| }
|
| @Column(name = "HABILITADO", unique = false, nullable = true, insertable = true, updatable = true)
| public Boolean getHabilitado() {
| return this.habilitado;
| }
|
| public void setHabilitado(Boolean habilitado) {
| this.habilitado = habilitado;
| }
|
| @Column(name = "ADMINISTRADOR", unique = false, nullable = true, insertable = true, updatable = true)
| public Boolean getAdministrador() {
| return this.administrador;
| }
|
| public void setAdministrador(Boolean administrador) {
| this.administrador = administrador;
| }
|
| @Column(name = "NOTAS", unique = false, nullable = true, insertable = true, updatable = true, length = 100)
| public String getNotas() {
| return this.notas;
| }
|
| public void setNotas(String notas) {
| this.notas = notas;
| }
|
| }
|
RolManager.java
| package ar.com.ebizlink.server.interfaces;
|
| import java.util.List;
|
| import javax.ejb.Local;
|
| import ar.com.ebizlink.server.models.Rol;
|
| @Local
| public interface RolManager {
|
| public Rol getRol(Long rolId);
|
| public List<Rol> getRoles();
|
| public void save(Rol detached);
|
| public void delete(Long rolId);
| }
|
The bean instance
| package ar.com.ebizlink.server.beans;
|
| import java.util.List;
|
| import javax.ejb.Stateless;
| import javax.ejb.TransactionAttribute;
| import javax.ejb.TransactionAttributeType;
| import javax.persistence.EntityManager;
| import javax.persistence.PersistenceContext;
|
| import ar.com.ebizlink.server.interfaces.RolManager;
| import ar.com.ebizlink.server.models.Rol;
|
| @Stateless
| public class RolManagerBean implements RolManager {
|
| @PersistenceContext
| private EntityManager em;
|
| public Rol getRol(Long rolId) {
| return em.find(Rol.class, rolId);
| // Query query = em.createQuery("select r from Rol r where r.rolId =
| // :rolId");
| // query.setParameter("rolId", rolId);
| // return (Rol)query.getSingleResult();
| }
|
| @SuppressWarnings("unchecked")
| public List<Rol> getRoles() {
| return em.createQuery("from Rol").getResultList();
| }
|
| @TransactionAttribute(TransactionAttributeType.REQUIRED)
| public void save(Rol detached) {
| Rol rol = getCurrent(detached.getRolId());
| rol.setAdministrador(detached.getAdministrador());
| rol.setDescripcion(detached.getDescripcion());
| rol.setHabilitado(detached.getHabilitado());
| rol.setNotas(detached.getNotas());
| em.persist(rol);
| }
|
| @TransactionAttribute(TransactionAttributeType.MANDATORY)
| private Rol getCurrent(Long rolId) {
| Rol rol = getRol(rolId);
| if (rol == null) {
| rol = new Rol();
| em.persist(rol);
| }
| return rol;
| }
|
| @TransactionAttribute(TransactionAttributeType.REQUIRED)
| public void delete(Long rolId) {
| Rol rol = getRol(rolId);
| em.remove(rol);
| }
|
| }
|
JSF CODE - RolController.java
| package ar.com.ebizlink.console.controllers;
|
| import java.util.List;
|
| import ar.com.ebizlink.console.forms.RolForm;
| import ar.com.ebizlink.server.interfaces.RolManager;
| import ar.com.ebizlink.server.models.Rol;
| import ar.com.ulink.framework.commons.tokens.CommonsTokens;
| import ar.com.ulink.framework.ejb3.EJB3ServiceLocator;
| import ar.com.ulink.framework.mvc.jsf.JsfUtility;
|
| public class RolController {
|
| private RolForm rolForm;
|
| public final RolForm getRolForm() {
| return rolForm;
| }
|
| public final void setRolForm(RolForm rolForm) {
| this.rolForm = rolForm;
| }
|
| // THIS METHOD WORKS FINE !!
|
| public final List<Rol> getRoles() {
| List<Rol> roles = null;
| try {
| RolManager rolManager = (RolManager) EJB3ServiceLocator
| .getEjbInterface("ebizlink/RolManagerBean/local");
| roles = rolManager.getRoles();
| } catch (Exception e) {
| e.printStackTrace();
| }
| return roles;
| }
|
| // HOWEVER, THIS ONE CRASH !!
| // when execute : Rol rol = rolManager.getRol(rolId);
|
| public final String edit() {
|
| // Status a devolver.
| String actionForward = CommonsTokens.EDIT_SUCCESS;
|
| // Tomo el parametro del rol a modificar.
| Long rolId = Long.valueOf(JsfUtility.getObjectFromContext("rolId")
| .toString());
|
| System.out.println("************* RolId: " + rolId);
|
| try {
| // Obtengo el rol a modificar.
| RolManager rolManager = (RolManager) EJB3ServiceLocator
| .getEjbInterface("ebizlink/RolManagerBean/local");
|
| System.out.println("************* paso 2, RolId: " + rolId);
|
| // Here's the exception
| Rol rol = rolManager.getRol(rolId);
|
| System.out.println("************* paso 3, RolId: " + rolId);
|
| // Asigno los datos al form.
| rolForm.setAdministrador(rol.getAdministrador());
| rolForm.setDescripcion(rol.getDescripcion());
| rolForm.setHabilitado(rol.getHabilitado());
| rolForm.setNotas(rol.getNotas());
| rolForm.setRolId(rol.getRolId());
|
| } catch (Exception e) {
| actionForward = CommonsTokens.EDIT_FAILURE;
| e.printStackTrace();
| }
|
| // Forward del formulario.
| return actionForward;
| }
|
| }
|
i have the exception mentioned earlier and i dont have any clue where the probles is ...
any ideas ??
Regards
Mariano
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992346#3992346
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992346
19 years, 7 months
[Messaging, JMS & JBossMQ] - namenotfound exception in JMS Client
by nsv
I need help very urgent
I have configured the connection factory in jms-ds.xml as below
<tx-connection-factory>
| <jndi-name>AlarmMgrConnectionFactory</jndi-name>
| <xa-transaction/>
| <rar-name>jms-ra.rar</rar-name>
| <connection-definition>org.jboss.resource.adapter.jms.JmsConnectionFactory</connection-definition>
| <config-property name="SessionDefaultType" type="java.lang.String">javax.jms.Queue</config-property>
| <config-property name="JmsProviderAdapterJNDI" type="java.lang.String">java:/DefaultJMSProvider</config-property>
| <max-pool-size>20</max-pool-size>
| </tx-connection-factory>
|
|
|
| <tx-connection-factory>
| <jndi-name>EventConnectionFactory</jndi-name>
| <xa-transaction/>
| <rar-name>jms-ra.rar</rar-name>
| <connection-definition>org.jboss.resource.adapter.jms.JmsConnectionFactory</connection-definition>
| <config-property name="SessionDefaultType" type="java.lang.String">javax.jms.Topic</config-property>
| <config-property name="JmsProviderAdapterJNDI" type="java.lang.String">java:/DefaultJMSProvider</config-property>
| <max-pool-size>20</max-pool-size>
| <security-domain-and-application>JmsXARealm</security-domain-and-application>
| </tx-connection-factory>
|
When i try to lookup for the conection factory from the lookup i get the Namenotbound exception, Below is the lines from JMS Client program
Properties properties = new Properties();
| properties.put(Context.INITIAL_CONTEXT_FACTORY, "org.jnp.interfaces.NamingContextFactory");
| properties.put(Context.URL_PKG_PREFIXES, "org.jnp.interfaces");
| properties.put(Context.PROVIDER_URL, "localhost:3099");
| InitialContext ctx = new InitialContext(properties);
| Object obj = ctx.lookup("java:AlarmMgrConnectionFactory");
Please please help
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992342#3992342
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992342
19 years, 7 months
[Persistence, JBoss/CMP, Hibernate, Database] - Configure JBoss/Hibernate to use JBossCache-TreeCache
by CarstenRudat
Hi all,
I've read some articles about configuring Hibernate to use JBossCache as 2nd level cache (e.g. http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossCacheHibernate).
I use now a JBoss 4.0.5.GA and "I think", I have a TreeCache now deployed as an MBean:
| <server>
| <mbean
| code="org.jboss.invocation.jrmp.server.JRMPProxyFactory"
| name="mydomain:service=proxyFactory,type=jrmp,target=factory">
| <attribute name="InvokerName">jboss:service=invoker,type=jrmp</attribute>
| <attribute name="TargetName">jboss.cache:service=TreeCache</attribute>
| <attribute name="JndiName">SystemCache</attribute>
| <attribute name="InvokeTargetMethod">true</attribute>
| <attribute name="ExportedInterface">org.jboss.cache.TreeCacheMBean</attribute>
| <attribute name="ClientInterceptors">
| <iterceptors>
| <interceptor>org.jboss.proxy.ClientMethodInterceptor</interceptor>
| <interceptor>org.jboss.proxy.SecurityInterceptor</interceptor>
| <interceptor>org.jboss.invocation.InvokerInterceptor</interceptor>
| </iterceptors>
| </attribute>
| <depends>jboss:service=invoker,type=jrmp</depends>
| <depends>jboss.cache:service=TreeCache</depends>
| </mbean>
| </server>
|
and a configuration like
http://labs.jboss.com/file-access/default/members/jbosscache/freezone/doc...
After all, I tried to set the
hibernate.cache.provider_class=org.jboss.hibernate.cache.DeployedTreeCacheProvider
configuration in persistence.properties file, but this doesn't work?!
Is there any deeper configuraiotn tutorial or a preconfigurated xml-example?
Thanks,
Carsten[/url]
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992340#3992340
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992340
19 years, 7 months
[Management, JMX/JBoss] - LOOKING FOR - Top Notch JBOSS Administrator/Infrastructure A
by delluser
Email directly to hiring manager
javadevelopers(a)yahoo.com
We are a startup (www.nbbc.com ) within a fortune 5 corp - pioneering in digitial video syndication.
Responsibilities:
· Install, configure and administer Apache, Tomcat / Jboss in a mixed Linux/Windows environment.
· Architect & Design the Infrastructure architecture for NBBC.
· Manage 15 plus servers - Win2k and Linux.
· Provide the infrastructure for product management & Software Development teams to develop front end as well as backend software products / services.
· Procure, Configure and deploy new servers.
· Capacity monitoring as well as proactive planning.
· Drive defect resolution for critical technical issues.
Experience:
· Expert in optimizing configuration of clustered web farm utilizing Tomcat, JBOSS and Apache servers.
· Must have 2+ Years JBOSS Application Server Administration experience.
· This position requires 3-5 years of Infrastructure Architecture design and Integration Engineering experience
· Must have 2+ Years of Linux and/or UNIX operating systems.
· Must have experience with Storage solutions ? SAN, NAS.
Skills:
· Candidates must have knowledge of varhious components of technology Infrastructure including Network, Storage, operating systems and Web Servers.
· End-to-End Performance tuning and trouble shooting.
We Offer -
- Great fun and informal environment.
- Exposure to cutting edge technologies.
- Flexible work hours.
- Excellent benefits
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992339#3992339
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992339
19 years, 7 months
[Performance Tuning] - JOBS - JBOSS Administrator/Architect
by delluser
JOBS - JBOSS Administrator/Architect
We are a startup (www.nbbc.com) within a fortune 5 corp - pioneering in digitial video syndication.
Responsibilities:
· Install, configure and administer Apache, Tomcat / Jboss in a mixed Linux/Windows environment.
· Architect & Design the Infrastructure architecture for NBBC.
· Manage 15 plus servers - Win2k and Linux.
· Provide the infrastructure for product management & Software Development teams to develop front end as well as backend software products / services.
· Procure, Configure and deploy new servers.
· Capacity monitoring as well as proactive planning.
· Drive defect resolution for critical technical issues.
Experience:
· Expert in optimizing configuration of clustered web farm utilizing Tomcat, JBOSS and Apache servers.
· Must have 2+ Years JBOSS Application Server Administration experience.
· This position requires 3-5 years of Infrastructure Architecture design and Integration Engineering experience
· Must have 2+ Years of Linux and/or UNIX operating systems.
· Must have experience with Storage solutions ? SAN, NAS.
Skills:
· Candidates must have knowledge of varhious components of technology Infrastructure including Network, Storage, operating systems and Web Servers.
· End-to-End Performance tuning and trouble shooting.
We Offer -
- Great fun and informal environment.
- Exposure to cutting edge technologies.
- Flexible work hours.
- Excellent benefits
Email directly to hiring manager
javadevelopers(a)yahoo.com
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992338#3992338
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992338
19 years, 7 months
[JBoss Portal] - Re: Can't use MySQL with Portal 2.4
by shawdav1
Hi Nicolas:
This is a working example of the truncation configuration in portal-mysql-ds.xml:
<?xml version="1.0" encoding="UTF-8"?>
<local-tx-datasource>
<jndi-name>PortalDS</jndi-name>
<connection-url>jdbc:mysql://localhost:3306/your_database_name?useServerPrepStmts=false&jdbcCompliantTruncation=false</connection-url>
<driver-class>org.gjt.mm.mysql.Driver</driver-class>
<user-name>your_portal_database_user_name</user-name>
your_portal_database_user_password
</local-tx-datasource>
Also, have you granted permissions to your_portal_database_user_name on the portal database you created in MySQL?
Sorry if this seems simplistic but this configuration works very well so I'm wondering if you have typographic errors somewhere.
David
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992333#3992333
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992333
19 years, 7 months
[Installation, Configuration & Deployment] - Starting failed jboss:database=localDB, service=Hypersonic
by western541
I am receiving the following error when starting JBoss4:
Starting failed jboss:database=localDB,service=Hypersonic
java.sql.SQLException: General error: java.lang.NullPointerException
I am running the application under Eclipse, using the JBoss4 server.
The applications continue to run fine, however.
I had this problem once before, and I found a search entry which described fixing the problem by deleting an apparently corrupted file and then restarting the Application, which recreated the file correctly: this fixed the problem.
As I remember, it was somehow related to ColdFusion (I have both ColdFusion and Java apps running under the same JBoss4 server), but I could be wrong. No rap on ColdFusion, which is a nice product, just that I think it may be related.
However, I can't find the search entry anymore.
Can anybody help, please?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992328#3992328
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992328
19 years, 7 months
[JBoss jBPM] - Advice about JBPM
by pjmcosta
Dear fellows, i realy need some advice from you.
We have a big ERP, like HR, Accounting etc. , developed on Oracle Forms, and we goind to develop a new aplication in j2ee.
The think is , in the implementation phaze on costumers, sometimes we need to change the software. I have read about JBPL and Rules and that makes a lot of sense.
Should we develop each module using the rules, and when connecting those modules using jBPL, or using allways jBPL or event none of both, just java code ?.
Id we use jBPL will i have performance problems ?, ou Rules ?
Thanks a lot .
PauloC
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992326#3992326
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992326
19 years, 7 months
[Installation, Configuration & Deployment] - Exploded archives vs packages
by lightbulb432
What's the difference between putting the same archive in exploded form versus packaged form in a deploy directory? What are the advantages and disadvantages? (I imagine it's more than a simple choice of personal preference, though it may be...)
Also, is the only requirement (apart from having the appropriate files within the exploded archive) for an exploded archive to have the appropriate suffix on the folder name for it to be automatically deployed? (e.g. explodedfolder.ear, explodedfolder.war, explodedfolder.sar) That's it?
Though I bet it would cause a lot of conflict when you accidentally have a folder and file of the same name...does JBoss have preferences in terms of which it loads first, or is this configurable, or will it cause trouble that'd be hard to detect until you realize your mistake?
Thanks.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992325#3992325
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992325
19 years, 7 months
[JBoss Seam] - Best component library to work with Seam?
by atzbert
Since I read a couple times in Gavin's posts not to use Tomahawk, I am not going to bring it up again. Instead my question is thus, which is the best additional component library to use with Seam1.1/MyFaces1.5. I would really like to have some more components which would simplify my life by adding e.g. a calendar component.
I tried to configure Icefaces by following the example in the CR2 with no luck. My long running conversation was not started anymore. For no obvious reason...No error log nothing, just not started (no cid is being added).
I tried to add Trinidad following the example in the Wiki, with the same luck here. This time I get a "No RenderingContext" Seam error when requesting a page. The JBoss startup and Seam initialization went just fine.
I am kinda stuck here. Any suggestions? Are there less complicated component libraries i could easily just _use_?
Thank you,
Tino
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992323#3992323
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992323
19 years, 7 months
[EJB/JBoss] - Session bean problem :)
by sumit.malik@redalkemi.com
Hi Everyone,
I m running the sample's which are provided for Jboss EJB3Trail Demo application..
I have these configuration
Linux Fedora Core 4
Jboss 4.0.4 CA
Well, whenever i have deployed Session bean then try to get stub locally i get this exception after
|
| 00:32:05,174 ERROR [[/test]] Session attribute event listener threw exception
| java.lang.RuntimeException: Could not resolve beanClass method from proxy call: public abstract void javax.ejb.EJBLocalObject.remove() throws javax.ejb.RemoveException,javax.ejb.EJBException
| at org.jboss.ejb3.stateful.StatefulContainer.localInvoke(StatefulContainer.java:169)
| at org.jboss.ejb3.stateful.StatefulLocalProxy.invoke(StatefulLocalProxy.java:98)
| at $Proxy98.remove(Unknown Source)
| at net.java.dev.strutsejb.web.SessionRemover.attributeRemoved(SessionRemover.java:39)
| at org.apache.catalina.session.StandardSession.removeAttributeInternal(StandardSession.java:1623)
| at org.apache.catalina.session.StandardSession.expire(StandardSession.java:732)
| at org.apache.catalina.session.StandardSession.isValid(StandardSession.java:572)
| at org.apache.catalina.session.ManagerBase.processExpires(ManagerBase.java:678)
| at org.apache.catalina.session.ManagerBase.backgroundProcess(ManagerBase.java:663)
| at org.apache.catalina.core.ContainerBase.backgroundProcess(ContainerBase.java:1284)
| at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1569)
| at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1578)
| at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1578)
| at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.run(ContainerBase.java:1558)
| at java.lang.Thread.run(Thread.java:595)
|
|
Here my session bean is working fine and i think ejb session time out is not working in smooth way. I have googled this problem and find few solution but none of them helped me out yet like i have changed and increased session bean passivate time but no result
| <max-bean-life>300<max-bean-life> to <max-bean-life>300<max-bean-life>
|
and even i have changed
| <domain name="Stateful Bean" extends="Base Stateful Bean" inheritBindings="true">
| ...
| <annotation expr="!class((a)org.jboss.annotation.ejb.cache.simple.CacheConfig) AND !class((a)org.jboss.annotation.ejb.Clus
| tered)">
| @org.jboss.annotation.ejb.cache.simple.CacheConfig (maxSize=100000, idleTimeoutSeconds=3600
| )
| </annotation>
| ...
| </domain>
| [/code ]
| but not yet i have gain any result and problem is still there....
| So here i m just getting blocked
|
| Looking forward for the help !!!
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992321#3992321
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992321
19 years, 7 months
[Persistence, JBoss/CMP, Hibernate, Database] - [b] Changes for session time out are not taking place.... Ur
by sumit.malik@redalkemi.com
Hi Everyone,
I m running the sample's which are provided for Jboss EJB3Trail Demo application..
I have these configuration
Linux Fedora Core 4
Jboss 4.0.4 CA
Well, whenever i have deployed Session bean then try to get stub locally i get this exception after
|
| 00:32:05,174 ERROR [[/test]] Session attribute event listener threw exception
| java.lang.RuntimeException: Could not resolve beanClass method from proxy call: public abstract void javax.ejb.EJBLocalObject.remove() throws javax.ejb.RemoveException,javax.ejb.EJBException
| at org.jboss.ejb3.stateful.StatefulContainer.localInvoke(StatefulContainer.java:169)
| at org.jboss.ejb3.stateful.StatefulLocalProxy.invoke(StatefulLocalProxy.java:98)
| at $Proxy98.remove(Unknown Source)
| at net.java.dev.strutsejb.web.SessionRemover.attributeRemoved(SessionRemover.java:39)
| at org.apache.catalina.session.StandardSession.removeAttributeInternal(StandardSession.java:1623)
| at org.apache.catalina.session.StandardSession.expire(StandardSession.java:732)
| at org.apache.catalina.session.StandardSession.isValid(StandardSession.java:572)
| at org.apache.catalina.session.ManagerBase.processExpires(ManagerBase.java:678)
| at org.apache.catalina.session.ManagerBase.backgroundProcess(ManagerBase.java:663)
| at org.apache.catalina.core.ContainerBase.backgroundProcess(ContainerBase.java:1284)
| at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1569)
| at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1578)
| at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.processChildren(ContainerBase.java:1578)
| at org.apache.catalina.core.ContainerBase$ContainerBackgroundProcessor.run(ContainerBase.java:1558)
| at java.lang.Thread.run(Thread.java:595)
|
|
Here my session bean is working fine and i think ejb session time out is not working in smooth way. I have googled this problem and find few solution but none of them helped me out yet like i have changed and increased session bean passivate time but no result
| <max-bean-life>300<max-bean-life> to <max-bean-life>300<max-bean-life>
|
and even i have changed
| <domain name="Stateful Bean" extends="Base Stateful Bean" inheritBindings="true">
| ...
| <annotation expr="!class((a)org.jboss.annotation.ejb.cache.simple.CacheConfig) AND !class((a)org.jboss.annotation.ejb.Clus
| tered)">
| @org.jboss.annotation.ejb.cache.simple.CacheConfig (maxSize=100000, idleTimeoutSeconds=3600
| )
| </annotation>
| ...
| </domain>
| [/code ]
| but not yet i have gain any result and problem is still there....
| So here i m just getting blocked
|
|
|
| Looking forward for the help !!!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992319#3992319
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992319
19 years, 7 months
[JBoss Seam] - Overall seam question - component timeouts
by chris.morrisette
I am using Seam heavily on my latest project, especially the remoting.
One question I am having trouble finding a concrete answer to is the best practices regarding 'timeout's of various components.
Please correct me if I am wrong, but I understand there to be three components whose timeouts need to be configured correctlly:
1) Session timeout (tomcat/jboss configuration)
2) Conversation timeout (Seam configuration)
3) Stateful Session Bean timeout/CacheConfig (jboss configuration)
In my mind, these 'timeouts' need to be configured to be identical (or at least the session timeout less than the other two), otherwise the user experience becomes unpredictable (state is lost in SFSBs, etc.).
Is this understanding correct? By default, it doesn't appear the 'timeout' settings are configured like this, which I noticed bcause I was losing state in my SFSBs after a certain amount of time.
Thanks for your help and hardwork, I really enjoy using Seam.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992318#3992318
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992318
19 years, 7 months
[Messaging, JMS & JBossMQ] - Need help deploying a simple MDB in JBoss 4.0.5
by rbrewster
I am trying to package and deploy an EAR to JBoss 4.0.5. The application already runs in Weblogic and in JRun. I have a simple MDB that listens on a Queue. The senders are within stateless EJB's in the same VM. I need the simplest authorization and no transactional support. I have spent at least an entire day browsing forums here trying to get the MDB to deploy. The goal is simply to bind one queue and a connection factory into JNDI and deploy the MDB. I used Xdoclet to generate the deployment descriptors:
| ejb-jar.xml:
| <!-- Message Driven Beans -->
| <message-driven >
| <description><![CDATA[EmailSendingBean]]></description>
|
| <ejb-name>EmailSending</ejb-name>
|
| <ejb-class>edu.darden.alumni.session.message.EmailSendingBean</ejb-class>
|
| <transaction-type>Bean</transaction-type>
| <message-driven-destination>
| <destination-type>javax.jms.Queue</destination-type>
| </message-driven-destination>
|
| </message-driven>
|
| jrun.xml:
| <message-driven>
| <ejb-name>EmailSending</ejb-name>
| <destination-jndi-name>queue/emailqueue</destination-jndi-name>
| </message-driven>
|
| jbossmq-destinations-service.xml:
| <mbean code="org.jboss.mq.server.jmx.Queue"
| name="jboss.mq.destination:service=Queue,name=emailqueue">
| <depends optional-attribute-name="DestinationManager">jboss.mq:service=DestinationManager</depends>
| <depends optional-attribute-name="SecurityManager">jboss.mq:service=SecurityManager</depends>
| <attribute name="MessageCounterHistoryDayLimit">-1</attribute>
| <attribute name="SecurityConf">
| <security>
| <role name="guest" read="true" write="true"/>
| <role name="publisher" read="true" write="true" create="false"/>
| <role name="noacc" read="false" write="false" create="false"/>
| </security>
| </attribute>
| </mbean>
|
| <mbean code="org.jboss.naming.NamingAlias"
| name="jboss.mq:service=NamingAlias,fromName=ConnectionFactory">
| <attribute name="ToName">MDBQueueConnectionFactory</attribute>
| <attribute name="FromName">ConnectionFactory</attribute>
| </mbean>
|
| login-config.xml:
| <application-policy name = "jbossmq">
| <authentication>
| <login-module code = "org.jboss.mq.sm.file.DynamicLoginModule"
| flag = "required">
| <module-option name = "unauthenticatedIdentity">guest</module-option>
| <module-option name = "sm.objectname">jboss.mq:service=StateManager</module-option>
| </login-module>
| </authentication>
| </application-policy>
|
| <application-policy name = "JmsXARealm">
| <authentication>
| <login-module code = "org.jboss.resource.security.ConfiguredIdentityLoginModule"
| flag = "required">
| <module-option name = "principal">guest</module-option>
| <module-option name = "userName">guest</module-option>
| <module-option name = "password">guest</module-option>
| <module-option name = "managedConnectionFactoryName">jboss.jca:service=TxCM,name=JmsXA</module-option>
| </login-module>
| </authentication>
| </application-policy>
|
|
|
The application looks up the connection factory by the JNDI name:
"jms/MDBQueueConnectionFactory"
It looks up the queue by the JNDI name:
"jms/queue/emailqueue"
I need to bind these names to JNDI.
Some things tried so far:
In the deploy/jms directory I renamed the file hsqldb-jdbc-state-service.xml. This got rid of a ClassCastException.
I am presently getting:
2006-12-08 12:43:34,673 DEBUG [org.jboss.ejb.plugins.jms.DLQHandler] Initialization failed DLQHandler
javax.naming.NameNotFoundException: XAConnectionFactory not bound
What should I try next?
Thank you.
Richard Brewster
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992308#3992308
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992308
19 years, 7 months
[JBossWS] - wstools and Log4J
by martinconnolly
Hi,
I recently switched over from using Axis to wstools for my webservice. A C# client connects to the JBoss WS. The Web Service starts up fine but when I attempt to call any method from the C# GUI I get the following exception:
EJBException in method: public abstract boolean com.systemejb.MyManagementEndPoint.MyMethod(java.lang.String) throws java.rmi.RemoteException, causedBy:
java.lang.reflect.UndeclaredThrowableException
at org.jboss.ejb.plugins.AbstractInstancePool.get(AbstractInstancePool.java:204)
According to the logger this is caused by:
java.lang.StackOverflowError
at org.apache.log4j.CategoryKey.equals(CategoryKey.java:33)
at java.util.Hashtable.get(Hashtable.java:339)
at org.apache.log4j.Hierarchy.getLogger(Hierarchy.java:259)
at org.apache.log4j.Hierarchy.getLogger(Hierarchy.java:233)
at org.apache.log4j.LogManager.getLogger(LogManager.java:179)
at org.apache.log4j.Logger.getLogger(Logger.java:94)
When I run wstools in my ant script I also get the following warnings:
wstools:
[wstools] log4j:WARN No appenders could be found for logger (org.jboss.ws.tools.WSTools).
[wstools] log4j:WARN Please initialize the log4j system properly.
I have checked the log4j.xml file and the appenders are enabled. I am unsure whether the issues are related. If anyone could help shed some light on these issues I'd appreciate it.
Thanks
MC
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992306#3992306
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992306
19 years, 7 months
[Installation, Configuration & Deployment] - Re: JEMS Installer 1.2.0.CR1: Errors when starting JBoss
by fmi2
The rest got cut off, here it is:
2. java.sql.SQLException
| 2006-12-08 12:14:27,296 DEBUG [org.jboss.system.ServiceController] starting service jboss.mq:service=DestinationManager
| 2006-12-08 12:14:27,296 DEBUG [org.jboss.system.ServiceController] waiting in start jboss.mq:service=DestinationManager on jboss.mq:service=PersistenceManager
| 2006-12-08 12:14:27,296 DEBUG [org.jboss.system.ServiceController] starting service jboss.mq:service=PersistenceManager
| 2006-12-08 12:14:27,296 DEBUG [org.jboss.mq.pm.jdbc2.PersistenceManager] Starting jboss.mq:service=PersistenceManager
| 2006-12-08 12:14:27,312 DEBUG [org.jboss.mq.pm.jdbc2.PersistenceManager] Creating Schema
| 2006-12-08 12:14:27,312 DEBUG [org.jboss.mq.pm.jdbc2.PersistenceManager] Could not create table with SQL: CREATE CACHED TABLE JMS_MESSAGES ( MESSAGEID INTEGER NOT NULL, DESTINATION VARCHAR(255) NOT NULL, TXID INTEGER, TXOP CHAR(1), MESSAGEBLOB OBJECT, PRIMARY KEY (MESSAGEID, DESTINATION) )
| java.sql.SQLException: Table already exists: JMS_MESSAGES in statement [CREATE CACHED TABLE JMS_MESSAGES]
| at org.hsqldb.jdbc.Util.throwError(Unknown Source)
| at org.hsqldb.jdbc.jdbcPreparedStatement.executeUpdate(Unknown Source)
| at org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeUpdate(WrappedPreparedStatement.java:251)
| at org.jboss.mq.pm.jdbc2.PersistenceManager.createSchema(PersistenceManager.java:277)
| at org.jboss.mq.pm.jdbc2.PersistenceManager.startService(PersistenceManager.java:1796)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy42.start(Unknown Source)
| at org.jboss.deployment.XSLSubDeployer.start(XSLSubDeployer.java:197)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy6.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| at org.jboss.Main.boot(Main.java:200)
| at org.jboss.Main$1.run(Main.java:490)
| at java.lang.Thread.run(Thread.java:595)
| 2006-12-08 12:14:27,312 DEBUG [org.jboss.mq.pm.jdbc2.PersistenceManager] Could not create table with SQL: CREATE CACHED TABLE JMS_TRANSACTIONS ( TXID INTEGER, PRIMARY KEY (TXID) )
| java.sql.SQLException: Table already exists: JMS_TRANSACTIONS in statement [CREATE CACHED TABLE JMS_TRANSACTIONS]
| at org.hsqldb.jdbc.Util.throwError(Unknown Source)
| at org.hsqldb.jdbc.jdbcPreparedStatement.executeUpdate(Unknown Source)
| at org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeUpdate(WrappedPreparedStatement.java:251)
| at org.jboss.mq.pm.jdbc2.PersistenceManager.createSchema(PersistenceManager.java:352)
| at org.jboss.mq.pm.jdbc2.PersistenceManager.startService(PersistenceManager.java:1796)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy42.start(Unknown Source)
| at org.jboss.deployment.XSLSubDeployer.start(XSLSubDeployer.java:197)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy6.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| at org.jboss.Main.boot(Main.java:200)
| at org.jboss.Main$1.run(Main.java:490)
| at java.lang.Thread.run(Thread.java:595)
| 2006-12-08 12:14:27,328 DEBUG [org.jboss.mq.pm.jdbc2.PersistenceManager] Resolving uncommited TXS
| 2006-12-08 12:14:27,343 DEBUG [org.jboss.mq.pm.jdbc2.PersistenceManager] Started jboss.mq:service=PersistenceManager
| 2006-12-08 12:14:27,343 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.mq:service=PersistenceManager dependent components: [ObjectName: jboss.mq:service=DestinationManager
| State: CREATED
| I Depend On:
| jboss.mq:service=MessageCache
| jboss.mq:service=PersistenceManager
| jboss.mq:service=StateManager
| jboss.mq:service=ThreadPool
| jboss:service=Naming
| Depends On Me:
| jboss.mq.destination:service=Topic,name=testTopic
| jboss.mq.destination:service=Topic,name=securedTopic
| jboss.mq.destination:service=Topic,name=testDurableTopic
| jboss.mq.destination:service=Queue,name=testQueue
| jboss.mq.destination:service=Queue,name=A
| jboss.mq.destination:service=Queue,name=B
| jboss.mq.destination:service=Queue,name=C
| jboss.mq.destination:service=Queue,name=D
| jboss.mq.destination:service=Queue,name=ex
| jboss.mq:service=SecurityManager
| jboss.mq.destination:service=Queue,name=DLQ
| ]
| 2006-12-08 12:14:27,343 DEBUG [org.jboss.system.ServiceController] starting service jboss.mq:service=DestinationManager
| 2006-12-08 12:14:27,343 DEBUG [org.jboss.mq.server.jmx.DestinationManager] Starting jboss.mq:service=DestinationManager
| 2006-12-08 12:14:27,343 DEBUG [org.jboss.mq.server.jmx.DestinationManager] Started jboss.mq:service=DestinationManager
| 2006-12-08 12:14:27,359 DEBUG [org.jboss.system.ServiceController] Starting dependent components for: jboss.mq:service=DestinationManager dependent components: [ObjectName: jboss.mq.destination:service=Topic,name=testTopic
| State: CREATED
3. org.hibernate.JDBCException
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.impl.SessionFactoryImpl] instantiating session factory with properties: {java.vendor=Sun Microsystems Inc., catalina.base=C:\jboss-4.0.5.GA\server\default, sun.management.compiler=HotSpot Server Compiler, hibernate.ejb.discard_pc_on_close=false, catalina.useNaming=false, hibernate.transaction.flush_before_completion=false, os.name=Windows XP, sun.boot.class.path=c:\jboss-4.0.5.GA\bin\\..\lib\endorsed\resolver.jar;c:\jboss-4.0.5.GA\bin\\..\lib\endorsed\serializer.jar;c:\jboss-4.0.5.GA\bin\\..\lib\endorsed\xalan.jar;c:\jboss-4.0.5.GA\bin\\..\lib\endorsed\xercesImpl.jar;c:\jboss-4.0.5.GA\bin\\..\lib\endorsed\xml-apis.jar;C:\Java\jdk1.5.0_08\jre\lib\rt.jar;C:\Java\jdk1.5.0_08\jre\lib\i18n.jar;C:\Java\jdk1.5.0_08\jre\lib\sunrsasign.jar;C:\Java\jdk1.5.0_08\jre\lib\jsse.jar;C:\Java\jdk1.5.0_08\jre\lib\jce.jar;C:\Java\jdk1.5.0_08\jre\lib\charsets.jar;C:\Java\jdk1.5.0_08\jre\classes, sun.desktop=windows, java.vm.specification.vendor=Sun Microsystems Inc., java.runtime.version=1.5.0_08-b03, hibernate.connection.autocommit=true, hibernate.cache.provider_class=org.hibernate.cache.HashtableCacheProvider, user.name=fmi2, shared.loader=${catalina.base}/shared/classes,${catalina.base}/shared/lib/*.jar, jboss.bind.address=0.0.0.0, tomcat.util.buf.StringCache.byte.enabled=true, hibernate.connection.release_mode=auto, jboss.home.dir=C:\jboss-4.0.5.GA, user.language=en, java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, sun.boot.library.path=C:\Java\jdk1.5.0_08\jre\bin, hibernate.jndi.java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, jboss.home.url=file:/C:/jboss-4.0.5.GA/, jacorb.config.log.verbosity=0, java.version=1.5.0_08, user.timezone=America/New_York, jboss.server.home.dir=C:\jboss-4.0.5.GA\server\default, hibernate.bytecode.provider=javassist, sun.arch.data.model=32, java.endorsed.dirs=c:\jboss-4.0.5.GA\bin\\..\lib\endorsed, jboss.server.home.url=file:/C:/jboss-4.0.5.GA/server/default/, sun.cpu.isalist=, sun.jnu.encoding=Cp1252, file.encoding.pkg=sun.io, package.access=sun.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.,sun.beans., file.separator=\, java.specification.name=Java Platform API Specification, java.class.version=49.0, jboss.server.config.url=file:/C:/jboss-4.0.5.GA/server/default/conf/, user.country=US, java.home=C:\Java\jdk1.5.0_08\jre, java.vm.info=mixed mode, jboss.lib.url=file:/C:/jboss-4.0.5.GA/lib/, os.version=5.1, hibernate.jndi.java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces, hibernate.jacc.ctx.id=jboss-seam-booking.jar, hibernate.transaction.factory_class=org.hibernate.ejb.transaction.JoinableCMTTransactionFactory, org.omg.CORBA.ORBSingletonClass=org.jboss.system.ORBSingleton, hibernate.query.jpaql_strict_compliance=true, path.separator=;, java.vm.version=1.5.0_08-b03, user.variant=, java.protocol.handler.pkgs=org.jboss.net.protocol, java.awt.printerjob=sun.awt.windows.WPrinterJob, sun.io.unicode.encoding=UnicodeLittle, awt.toolkit=sun.awt.windows.WToolkit, package.definition=sun.,java.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper., jboss.server.temp.dir=C:\jboss-4.0.5.GA\server\default\tmp, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces, sun.rmi.dgc.client.gcInterval=3600000, user.home=C:\Documents and Settings\fmi2, java.rmi.server.RMIClassLoaderSpi=org.jboss.system.JBossRMIClassLoader, java.specification.vendor=Sun Microsystems Inc., hibernate.hbm2ddl.auto=create-drop, java.library.path=C:\Java\jdk1.5.0_08\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\Java\jdk1.5.0_08\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\db-derby-10.1.3.1-bin\frameworks\embedded\bin;C:/ant\bin;c:\Sun\AppServer\bin;c:\Sun\AppServer8\bin;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\ATI Technologies\ATI.ACE\;;C:\Sun\AppServer\bin;Pñ, java.vendor.url=http://java.sun.com/, program.name=run.bat, java.vm.vendor=Sun Microsystems Inc., sun.rmi.dgc.server.gcInterval=3600000, common.loader=${catalina.home}/common/classes,${catalina.home}/common/i18n/*.jar,${catalina.home}/common/endorsed/*.jar,${catalina.home}/common/lib/*.jar, java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition, java.class.path=C:\Java\jdk1.5.0_08\lib\tools.jar;c:\jboss-4.0.5.GA\bin\\run.jar, hibernate.bytecode.use_reflection_optimizer=false, jboss.server.log.dir=C:\jboss-4.0.5.GA\server\default\log, jbossmx.loader.repository.class=org.jboss.mx.loading.UnifiedLoaderRepository3, java.vm.specification.name=Java Virtual Machine Specification, catalina.home=C:\jboss-4.0.5.GA\server\default, java.vm.specification.version=1.0, jboss.server.lib.url=file:/C:/jboss-4.0.5.GA/server/default/lib/, sun.os.patch.level=Service Pack 2, sun.cpu.endian=little, hibernate.connection.provider_class=org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider, java.io.tmpdir=C:\DOCUME~1\fmi2\LOCALS~1\Temp\, java.rmi.server.codebase=http://arc-cd5e87d95c2:8083/, org.w3c.dom.DOMImplementationSourceList=org.apache.xerces.dom.DOMXSImplementationSourceImpl, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, server.loader=${catalina.home}/server/classes,${catalina.home}/server/lib/*.jar, jboss.server.data.dir=C:\jboss-4.0.5.GA\server\default\data, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, os.arch=x86, java.ext.dirs=C:\Java\jdk1.5.0_08\jre\lib\ext, user.dir=c:\jboss-4.0.5.GA\bin, line.separator=
| , java.vm.name=Java HotSpot(TM) Server VM, jboss.server.base.dir=C:\jboss-4.0.5.GA\server, org.jboss.ORBSingletonDelegate=org.jacorb.orb.ORBSingleton, jboss.server.base.url=file:/C:/jboss-4.0.5.GA/server/, javax.management.builder.initial=org.jboss.mx.server.MBeanServerBuilderImpl, file.encoding=Cp1252, org.omg.CORBA.ORBClass=org.jacorb.orb.ORB, hibernate.use_identifier_rollback=false, catalina.ext.dirs=C:\jboss-4.0.5.GA\server\default\lib, hibernate.transaction.manager_lookup_class=org.hibernate.transaction.JBossTransactionManagerLookup, java.specification.version=1.5, jboss.server.name=default, hibernate.show_sql=true}
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.impl.SessionFactoryObjectFactory] registered: 0d215f660f630f1d010f630f58af0002 (unnamed)
| 2006-12-08 12:14:47,343 INFO [org.hibernate.impl.SessionFactoryObjectFactory] Not binding factory to JNDI, no JNDI name configured
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.impl.SessionFactoryImpl] instantiated session factory
| 2006-12-08 12:14:47,343 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@e2e687, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@782dc6{ url=null ,addedOrder=0}
| 2006-12-08 12:14:47,343 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@e2e687, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@55ff4{ url=null ,addedOrder=0}
| 2006-12-08 12:14:47,343 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@e2e687, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@de9984{ url=null ,addedOrder=0}
| 2006-12-08 12:14:47,343 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@e2e687, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@30d5aa{ url=null ,addedOrder=0}
| 2006-12-08 12:14:47,343 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@e2e687, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@1ba49d{ url=null ,addedOrder=0}
| 2006-12-08 12:14:47,343 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.HeirarchicalLoaderRepository3@e2e687, cl=org.jboss.mx.loading.HeirarchicalLoaderRepository3$CacheClassLoader@d46b95{ url=null ,addedOrder=0}
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.AnnotationConfiguration] Execute first pass mapping processing
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.AnnotationConfiguration] Process hbm files
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.AnnotationConfiguration] Process annotated classes
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.AnnotationConfiguration] processing manytoone fk mappings
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.Configuration] processing extends queue
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.Configuration] processing collection mappings
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.Configuration] processing native query and ResultSetMapping mappings
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.Configuration] processing association property references
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.Configuration] processing foreign key constraints
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.AnnotationConfiguration] Execute first pass mapping processing
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.AnnotationConfiguration] Process hbm files
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.AnnotationConfiguration] Process annotated classes
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.AnnotationConfiguration] processing manytoone fk mappings
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.Configuration] processing extends queue
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.Configuration] processing collection mappings
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.Configuration] processing native query and ResultSetMapping mappings
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.Configuration] processing association property references
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.cfg.Configuration] processing foreign key constraints
| 2006-12-08 12:14:47,343 INFO [org.hibernate.tool.hbm2ddl.SchemaExport] Running hbm2ddl schema export
| 2006-12-08 12:14:47,343 INFO [org.hibernate.tool.hbm2ddl.SchemaExport] exporting generated schema to database
| 2006-12-08 12:14:47,343 INFO [org.hibernate.tool.hbm2ddl.SchemaExport] Executing import script: /import.sql
| 2006-12-08 12:14:47,343 DEBUG [org.hibernate.tool.hbm2ddl.SchemaExport] insert into Customer (username, password, name) values ('gavin', 'foobar', 'Gavin King')
| 2006-12-08 12:14:47,359 ERROR [org.hibernate.tool.hbm2ddl.SchemaExport] schema export unsuccessful
| org.hibernate.JDBCException: Error during import script execution
| at org.hibernate.tool.hbm2ddl.SchemaExport.importScript(SchemaExport.java:258)
| at org.hibernate.tool.hbm2ddl.SchemaExport.execute(SchemaExport.java:192)
| at org.hibernate.tool.hbm2ddl.SchemaExport.create(SchemaExport.java:133)
| at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:311)
| at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1218)
| at org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Configuration.java:691)
| at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:127)
| at org.jboss.ejb3.entity.PersistenceUnitDeployment.start(PersistenceUnitDeployment.java:264)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.ejb3.ServiceDelegateWrapper.startService(ServiceDelegateWrapper.java:102)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy138.start(Unknown Source)
| at org.jboss.ejb3.JmxKernelAbstraction.install(JmxKernelAbstraction.java:96)
| at org.jboss.ejb3.Ejb3Deployment.startPersistenceUnits(Ejb3Deployment.java:467)
| at org.jboss.ejb3.Ejb3Deployment.start(Ejb3Deployment.java:317)
| at org.jboss.ejb3.Ejb3Module.startService(Ejb3Module.java:91)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy35.start(Unknown Source)
| at org.jboss.ejb3.EJB3Deployer.start(EJB3Deployer.java:449)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor.java:97)
| at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(InterceptorServiceMBeanSupport.java:238)
| at org.jboss.ws.integration.jboss.DeployerInterceptor.start(DeployerInterceptor.java:92)
| at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
| at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy36.start(Unknown Source)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1015)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy6.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| at org.jboss.Main.boot(Main.java:200)
| at org.jboss.Main$1.run(Main.java:490)
| at java.lang.Thread.run(Thread.java:595)
| Caused by: java.sql.SQLException: Table not found in statement [insert into Customer]
| at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
| at org.hsqldb.jdbc.jdbcStatement.fetchResult(Unknown Source)
| at org.hsqldb.jdbc.jdbcStatement.execute(Unknown Source)
| at org.jboss.resource.adapter.jdbc.WrappedStatement.execute(WrappedStatement.java:84)
| at org.hibernate.tool.hbm2ddl.SchemaExport.importScript(SchemaExport.java:254)
| ... 152 more
|
The server still starts and the application loads. I'm having problems with my seam application and I'm not sure if these errors are the root.
Thanx
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992304#3992304
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992304
19 years, 7 months
[Installation, Configuration & Deployment] - Re: JEMS Installer 1.2.0.CR1: Errors when starting JBoss
by fmi2
Thanks for your response. I'm using the ejb-clustered profile. I did as you advised and still get the same error on startup. Here is my boot log:
| 12:13:36,468 INFO [Server] Starting JBoss (MX MicroKernel)...
| 12:13:36,484 INFO [Server] Release ID: JBoss [Zion] 4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339)
| 12:13:36,484 DEBUG [Server] Using config: org.jboss.system.server.ServerConfigImpl@8fce95
| 12:13:36,484 DEBUG [Server] Server type: class org.jboss.system.server.ServerImpl
| 12:13:36,484 DEBUG [Server] Server loaded through: org.jboss.system.server.NoAnnotationURLClassLoader
| 12:13:36,484 DEBUG [Server] Boot URLs:
| 12:13:36,484 DEBUG [Server] file:/C:/jboss-4.0.5.GA/lib/endorsed/resolver.jar
| 12:13:36,484 DEBUG [Server] file:/C:/jboss-4.0.5.GA/lib/endorsed/serializer.jar
| 12:13:36,484 DEBUG [Server] file:/C:/jboss-4.0.5.GA/lib/endorsed/xalan.jar
| 12:13:36,484 DEBUG [Server] file:/C:/jboss-4.0.5.GA/lib/endorsed/xercesImpl.jar
| 12:13:36,484 DEBUG [Server] file:/C:/jboss-4.0.5.GA/lib/endorsed/xml-apis.jar
| 12:13:36,484 DEBUG [Server] file:/C:/jboss-4.0.5.GA/lib/jboss-jmx.jar
| 12:13:36,484 DEBUG [Server] file:/C:/jboss-4.0.5.GA/lib/concurrent.jar
| 12:13:36,484 DEBUG [Server] file:/C:/jboss-4.0.5.GA/lib/log4j-boot.jar
| 12:13:36,484 DEBUG [Server] file:/C:/jboss-4.0.5.GA/lib/jboss-common.jar
| 12:13:36,484 DEBUG [Server] file:/C:/jboss-4.0.5.GA/lib/jboss-system.jar
| 12:13:36,484 DEBUG [Server] file:/C:/jboss-4.0.5.GA/lib/jboss-xml-binding.jar
| 12:13:36,484 DEBUG [Server] file:/C:/jboss-4.0.5.GA/lib/namespace.jar
| 12:13:36,484 INFO [Server] Home Dir: C:\jboss-4.0.5.GA
| 12:13:36,484 INFO [Server] Home URL: file:/C:/jboss-4.0.5.GA/
| 12:13:36,484 DEBUG [Server] Library URL: file:/C:/jboss-4.0.5.GA/lib/
| 12:13:36,484 INFO [Server] Patch URL: null
| 12:13:36,484 INFO [Server] Server Name: default
| 12:13:36,484 INFO [Server] Server Home Dir: C:\jboss-4.0.5.GA\server\default
| 12:13:36,484 INFO [Server] Server Home URL: file:/C:/jboss-4.0.5.GA/server/default/
| 12:13:36,484 INFO [Server] Server Log Dir: C:\jboss-4.0.5.GA\server\default\log
| 12:13:36,484 DEBUG [Server] Server Data Dir: C:\jboss-4.0.5.GA\server\default\data
| 12:13:36,484 INFO [Server] Server Temp Dir: C:\jboss-4.0.5.GA\server\default\tmp
| 12:13:36,484 DEBUG [Server] Server Config URL: file:/C:/jboss-4.0.5.GA/server/default/conf/
| 12:13:36,484 DEBUG [Server] Server Library URL: file:/C:/jboss-4.0.5.GA/server/default/lib/
| 12:13:36,484 INFO [Server] Root Deployment Filename: jboss-service.xml
| 12:13:36,500 DEBUG [Server] Starting General Purpose Architecture (GPA)...
| 12:13:36,937 DEBUG [Server] Created MBeanServer: org.jboss.mx.server.MBeanServerImpl@80fa6f[ defaultDomain='jboss' ]
| 12:13:37,000 DEBUG [Server] Boot url list: [file:/C:/jboss-4.0.5.GA/server/default/conf/]
| 12:13:37,000 DEBUG [Server] Creating loader for URL: file:/C:/jboss-4.0.5.GA/server/default/conf/
| 12:13:37,015 DEBUG [RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.UnifiedLoaderRepository3@1d85f79, cl=org.jboss.mx.loading.UnifiedClassLoader3@641e9a{ url=file:/C:/jboss-4.0.5.GA/server/default/conf/ ,addedOrder=0}
| 12:13:37,015 DEBUG [RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.UnifiedLoaderRepository3@1d85f79, cl=org.jboss.mx.loading.UnifiedClassLoader3@641e9a{ url=file:/C:/jboss-4.0.5.GA/server/default/conf/ ,addedOrder=0}
| 12:13:37,015 DEBUG [UnifiedLoaderRepository3] Adding org.jboss.mx.loading.UnifiedClassLoader3@641e9a{ url=file:/C:/jboss-4.0.5.GA/server/default/conf/ ,addedOrder=0}
| 12:13:37,421 DEBUG [Server] Failed to create xmbean for: org.jboss.system.server.ServerInfo
| 12:13:37,437 INFO [ServerInfo] Java version: 1.5.0_08,Sun Microsystems Inc.
| 12:13:37,437 INFO [ServerInfo] Java VM: Java HotSpot(TM) Server VM 1.5.0_08-b03,Sun Microsystems Inc.
| 12:13:37,437 INFO [ServerInfo] OS-System: Windows XP 5.1,x86
| 12:13:37,437 DEBUG [ServerInfo] Full System Properties Dump
| 12:13:37,437 DEBUG [ServerInfo] java.runtime.name: Java(TM) 2 Runtime Environment, Standard Edition
| 12:13:37,437 DEBUG [ServerInfo] jboss.server.base.dir: C:\jboss-4.0.5.GA\server
| 12:13:37,437 DEBUG [ServerInfo] java.protocol.handler.pkgs: org.jboss.net.protocol
| 12:13:37,437 DEBUG [ServerInfo] sun.boot.library.path: C:\Java\jdk1.5.0_08\jre\bin
| 12:13:37,437 DEBUG [ServerInfo] jboss.server.lib.url: file:/C:/jboss-4.0.5.GA/server/default/lib/
| 12:13:37,437 DEBUG [ServerInfo] java.vm.version: 1.5.0_08-b03
| 12:13:37,437 DEBUG [ServerInfo] javax.management.builder.initial: org.jboss.mx.server.MBeanServerBuilderImpl
| 12:13:37,437 DEBUG [ServerInfo] java.vm.vendor: Sun Microsystems Inc.
| 12:13:37,437 DEBUG [ServerInfo] java.vendor.url: http://java.sun.com/
| 12:13:37,437 DEBUG [ServerInfo] path.separator: ;
| 12:13:37,437 DEBUG [ServerInfo] java.vm.name: Java HotSpot(TM) Server VM
| 12:13:37,437 DEBUG [ServerInfo] file.encoding.pkg: sun.io
| 12:13:37,437 DEBUG [ServerInfo] user.country: US
| 12:13:37,437 DEBUG [ServerInfo] sun.os.patch.level: Service Pack 2
| 12:13:37,437 DEBUG [ServerInfo] program.name: run.bat
| 12:13:37,437 DEBUG [ServerInfo] java.vm.specification.name: Java Virtual Machine Specification
| 12:13:37,437 DEBUG [ServerInfo] user.dir: c:\jboss-4.0.5.GA\bin
| 12:13:37,437 DEBUG [ServerInfo] jboss.server.base.url: file:/C:/jboss-4.0.5.GA/server/
| 12:13:37,437 DEBUG [ServerInfo] java.runtime.version: 1.5.0_08-b03
| 12:13:37,437 DEBUG [ServerInfo] java.awt.graphicsenv: sun.awt.Win32GraphicsEnvironment
| 12:13:37,437 DEBUG [ServerInfo] java.endorsed.dirs: c:\jboss-4.0.5.GA\bin\\..\lib\endorsed
| 12:13:37,437 DEBUG [ServerInfo] os.arch: x86
| 12:13:37,437 DEBUG [ServerInfo] sun.rmi.dgc.server.gcInterval: 3600000
| 12:13:37,437 DEBUG [ServerInfo] java.io.tmpdir: C:\DOCUME~1\fmi2\LOCALS~1\Temp\
| 12:13:37,437 DEBUG [ServerInfo] line.separator:
|
| 12:13:37,437 DEBUG [ServerInfo] jbossmx.loader.repository.class: org.jboss.mx.loading.UnifiedLoaderRepository3
| 12:13:37,437 DEBUG [ServerInfo] java.vm.specification.vendor: Sun Microsystems Inc.
| 12:13:37,437 DEBUG [ServerInfo] user.variant:
| 12:13:37,437 DEBUG [ServerInfo] os.name: Windows XP
| 12:13:37,437 DEBUG [ServerInfo] jboss.bind.address: 0.0.0.0
| 12:13:37,437 DEBUG [ServerInfo] jboss.server.temp.dir: C:\jboss-4.0.5.GA\server\default\tmp
| 12:13:37,437 DEBUG [ServerInfo] jboss.home.dir: C:\jboss-4.0.5.GA
| 12:13:37,437 DEBUG [ServerInfo] sun.jnu.encoding: Cp1252
| 12:13:37,437 DEBUG [ServerInfo] java.library.path: C:\Java\jdk1.5.0_08\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\Java\jdk1.5.0_08\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\db-derby-10.1.3.1-bin\frameworks\embedded\bin;C:/ant\bin;c:\Sun\AppServer\bin;c:\Sun\AppServer8\bin;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\ATI Technologies\ATI.ACE\;;C:\Sun\AppServer\bin;Pñ
| 12:13:37,437 DEBUG [ServerInfo] jboss.server.home.dir: C:\jboss-4.0.5.GA\server\default
| 12:13:37,437 DEBUG [ServerInfo] java.class.version: 49.0
| 12:13:37,437 DEBUG [ServerInfo] java.specification.name: Java Platform API Specification
| 12:13:37,437 DEBUG [ServerInfo] sun.management.compiler: HotSpot Server Compiler
| 12:13:37,437 DEBUG [ServerInfo] jboss.server.config.url: file:/C:/jboss-4.0.5.GA/server/default/conf/
| 12:13:37,437 DEBUG [ServerInfo] os.version: 5.1
| 12:13:37,437 DEBUG [ServerInfo] jboss.home.url: file:/C:/jboss-4.0.5.GA/
| 12:13:37,437 DEBUG [ServerInfo] user.home: C:\Documents and Settings\fmi2
| 12:13:37,437 DEBUG [ServerInfo] user.timezone: America/New_York
| 12:13:37,437 DEBUG [ServerInfo] java.awt.printerjob: sun.awt.windows.WPrinterJob
| 12:13:37,437 DEBUG [ServerInfo] java.specification.version: 1.5
| 12:13:37,437 DEBUG [ServerInfo] file.encoding: Cp1252
| 12:13:37,437 DEBUG [ServerInfo] jboss.server.home.url: file:/C:/jboss-4.0.5.GA/server/default/
| 12:13:37,453 DEBUG [ServerInfo] jboss.server.log.dir: C:\jboss-4.0.5.GA\server\default\log
| 12:13:37,453 DEBUG [ServerInfo] user.name: fmi2
| 12:13:37,453 DEBUG [ServerInfo] java.class.path: C:\Java\jdk1.5.0_08\lib\tools.jar;c:\jboss-4.0.5.GA\bin\\run.jar
| 12:13:37,453 DEBUG [ServerInfo] jboss.lib.url: file:/C:/jboss-4.0.5.GA/lib/
| 12:13:37,453 DEBUG [ServerInfo] jboss.server.name: default
| 12:13:37,453 DEBUG [ServerInfo] java.vm.specification.version: 1.0
| 12:13:37,453 DEBUG [ServerInfo] sun.arch.data.model: 32
| 12:13:37,453 DEBUG [ServerInfo] java.home: C:\Java\jdk1.5.0_08\jre
| 12:13:37,453 DEBUG [ServerInfo] java.specification.vendor: Sun Microsystems Inc.
| 12:13:37,453 DEBUG [ServerInfo] user.language: en
| 12:13:37,453 DEBUG [ServerInfo] awt.toolkit: sun.awt.windows.WToolkit
| 12:13:37,453 DEBUG [ServerInfo] java.vm.info: mixed mode
| 12:13:37,453 DEBUG [ServerInfo] java.version: 1.5.0_08
| 12:13:37,453 DEBUG [ServerInfo] java.ext.dirs: C:\Java\jdk1.5.0_08\jre\lib\ext
| 12:13:37,453 DEBUG [ServerInfo] jboss.server.data.dir: C:\jboss-4.0.5.GA\server\default\data
| 12:13:37,453 DEBUG [ServerInfo] sun.boot.class.path: c:\jboss-4.0.5.GA\bin\\..\lib\endorsed\resolver.jar;c:\jboss-4.0.5.GA\bin\\..\lib\endorsed\serializer.jar;c:\jboss-4.0.5.GA\bin\\..\lib\endorsed\xalan.jar;c:\jboss-4.0.5.GA\bin\\..\lib\endorsed\xercesImpl.jar;c:\jboss-4.0.5.GA\bin\\..\lib\endorsed\xml-apis.jar;C:\Java\jdk1.5.0_08\jre\lib\rt.jar;C:\Java\jdk1.5.0_08\jre\lib\i18n.jar;C:\Java\jdk1.5.0_08\jre\lib\sunrsasign.jar;C:\Java\jdk1.5.0_08\jre\lib\jsse.jar;C:\Java\jdk1.5.0_08\jre\lib\jce.jar;C:\Java\jdk1.5.0_08\jre\lib\charsets.jar;C:\Java\jdk1.5.0_08\jre\classes
| 12:13:37,453 DEBUG [ServerInfo] java.vendor: Sun Microsystems Inc.
| 12:13:37,453 DEBUG [ServerInfo] file.separator: \
| 12:13:37,453 DEBUG [ServerInfo] java.vendor.url.bug: http://java.sun.com/cgi-bin/bugreport.cgi
| 12:13:37,453 DEBUG [ServerInfo] sun.rmi.dgc.client.gcInterval: 3600000
| 12:13:37,453 DEBUG [ServerInfo] sun.cpu.endian: little
| 12:13:37,453 DEBUG [ServerInfo] sun.io.unicode.encoding: UnicodeLittle
| 12:13:37,453 DEBUG [ServerInfo] sun.desktop: windows
| 12:13:37,453 DEBUG [ServerInfo] sun.cpu.isalist:
| 12:13:37,515 DEBUG [Server] Created system MBean: jboss.system:type=ServerInfo
| 12:13:37,546 DEBUG [Server] Failed to create xmbean for: org.jboss.system.ServiceController
| 12:13:37,687 DEBUG [ServiceController] Controller MBean online
| 12:13:37,687 DEBUG [Server] Created system MBean: jboss.system:service=ServiceController
| 12:13:38,046 DEBUG [Server] Created system XMBean: jboss.system:service=MainDeployer
| 12:13:38,046 DEBUG [ServiceController] Creating service jboss.system:service=MainDeployer
| 12:13:38,093 DEBUG [MainDeployer] Creating jboss.system:service=MainDeployer
| 12:13:38,859 DEBUG [MainDeployer] Created jboss.system:service=MainDeployer
| 12:13:38,859 DEBUG [ServiceController] Creating dependent components for: jboss.system:service=MainDeployer dependents are: []
| 12:13:38,859 DEBUG [ServiceController] starting service jboss.system:service=MainDeployer
| 12:13:38,859 DEBUG [MainDeployer] Starting jboss.system:service=MainDeployer
| 12:13:38,859 DEBUG [MainDeployer] Started jboss.system:service=MainDeployer
| 12:13:38,859 DEBUG [ServiceController] Starting dependent components for: jboss.system:service=MainDeployer dependent components: []
| 12:13:38,875 DEBUG [Server] Shutdown hook added
| 12:13:39,109 DEBUG [Server] Created system XMBean: jboss.system:service=JARDeployer
| 12:13:39,109 DEBUG [ServiceController] Creating service jboss.system:service=JARDeployer
| 12:13:39,109 DEBUG [JARDeployer] Creating jboss.system:service=JARDeployer
| 12:13:39,171 DEBUG [JARDeployer] Created jboss.system:service=JARDeployer
| 12:13:39,171 DEBUG [ServiceController] Creating dependent components for: jboss.system:service=JARDeployer dependents are: []
| 12:13:39,171 DEBUG [ServiceController] starting service jboss.system:service=JARDeployer
| 12:13:39,171 DEBUG [JARDeployer] Starting jboss.system:service=JARDeployer
| 12:13:39,171 DEBUG [MainDeployer] Adding deployer: org.jboss.deployment.JARDeployer@5dcec6
| 12:13:39,171 DEBUG [SuffixOrderHelper] Static suffix exists; ignoring request for adding enhanced suffix: 700:.jar
| 12:13:39,171 DEBUG [JARDeployer] Started jboss.system:service=JARDeployer
| 12:13:39,171 DEBUG [ServiceController] Starting dependent components for: jboss.system:service=JARDeployer dependent components: []
| 12:13:39,296 DEBUG [Server] Created system XMBean: jboss.system:service=ServiceDeployer
| 12:13:39,296 DEBUG [ServiceController] Creating service jboss.system:service=ServiceDeployer
| 12:13:39,296 DEBUG [SARDeployer] Creating jboss.system:service=ServiceDeployer
| 12:13:39,328 DEBUG [SARDeployer] Created jboss.system:service=ServiceDeployer
| 12:13:39,328 DEBUG [ServiceController] Creating dependent components for: jboss.system:service=ServiceDeployer dependents are: []
| 12:13:39,328 DEBUG [ServiceController] starting service jboss.system:service=ServiceDeployer
| 12:13:39,328 DEBUG [SARDeployer] Starting jboss.system:service=ServiceDeployer
| 12:13:39,328 DEBUG [MainDeployer] Adding deployer: org.jboss.deployment.SARDeployer@9be79a
| 12:13:39,328 DEBUG [SARDeployer] Started jboss.system:service=ServiceDeployer
| 12:13:39,328 DEBUG [ServiceController] Starting dependent components for: jboss.system:service=ServiceDeployer dependent components: []
| 12:13:39,328 INFO [Server] Core system initialized
| 12:13:39,375 DEBUG [MainDeployer] Starting deployment of package: file:/C:/jboss-4.0.5.GA/server/default/conf/jboss-service.xml
| 12:13:39,375 DEBUG [MainDeployer] Starting deployment (init step) of package at: file:/C:/jboss-4.0.5.GA/server/default/conf/jboss-service.xml
| 12:13:39,375 DEBUG [MainDeployer] Copying file:/C:/jboss-4.0.5.GA/server/default/conf/jboss-service.xml -> C:\jboss-4.0.5.GA\server\default\tmp\deploy\tmp16892jboss-service.xml
| 12:13:39,390 DEBUG [MainDeployer] using deployer org.jboss.deployment.SARDeployer@9be79a
| 12:13:39,453 DEBUG [SARDeployer] Found classpath element: [classpath: null]
| 12:13:39,453 DEBUG [SARDeployer] codebase URL is file:/C:/jboss-4.0.5.GA/server/default/lib/
| 12:13:39,453 DEBUG [SARDeployer] listing codebase for archives matching *
| 12:13:39,468 DEBUG [SARDeployer] URLLister class is org.jboss.net.protocol.file.FileURLLister
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/activation.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/antlr-2.7.6.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/avalon-framework.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/bcel.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/bindingservice-plugin.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/bsh-1.3.0.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/bsh-deployer.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/cglib.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/commons-httpclient.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/commons-logging.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/dom4j.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/ejb3-persistence.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/hibernate-annotations.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/hibernate-entitymanager.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/hibernate3.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/hsqldb-plugin.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/hsqldb.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jacorb.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/javassist.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/javax.servlet.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/javax.servlet.jsp.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jaxen.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-backport-concurrent.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-cache.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-common-jdbc-wrapper.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-hibernate.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-iiop.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-j2ee.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-jaxrpc.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-jca.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-jsr77.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-jsr88.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-management.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-monitoring.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-remoting-int.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-remoting.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-saaj.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-serialization.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-srp.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-transaction.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jboss.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jbossha.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jbossmq.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jbossretro-rt.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jbosssx.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jgroups.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jmx-adaptor-plugin.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jnpserver.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/joesnmp.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jpl-pattern.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/jpl-util.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/log4j-snmp-appender.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/log4j.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/mail-plugin.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/mail.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/properties-plugin.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/quartz-all-1.5.2.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/scheduler-plugin-example.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/scheduler-plugin.jar
| 12:13:39,578 DEBUG [SARDeployer] deployed classes for file:/C:/jboss-4.0.5.GA/server/default/lib/xmlentitymgr.jar
| 12:13:39,578 DEBUG [SARDeployer] about to copy 0 local directories
| 12:13:39,578 DEBUG [SARDeployer] looking for nested deployments in : file:/C:/jboss-4.0.5.GA/server/default/conf/jboss-service.xml
| 12:13:39,578 DEBUG [DeploymentInfo] createLoaderRepository from config: LoaderRepositoryConfig(repositoryName: JMImplementation:service=LoaderRepository,name=Default, repositoryClassName: null, configParserClassName: null, repositoryConfig: null)
| 12:13:39,578 DEBUG [RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.UnifiedLoaderRepository3@1d85f79, cl=org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=0}
| 12:13:39,578 DEBUG [RepositoryClassLoader] setRepository, repository=org.jboss.mx.loading.UnifiedLoaderRepository3@1d85f79, cl=org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=0}
| 12:13:39,578 DEBUG [UnifiedLoaderRepository3] Adding org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=0}
| 12:13:39,656 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/activation.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:39,875 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/antlr-2.7.6.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:39,968 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/avalon-framework.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:40,156 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/bcel.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:40,218 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/bindingservice-plugin.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:40,421 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/bsh-1.3.0.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:40,500 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/bsh-deployer.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:40,578 DEBUG [ClassLoaderUtils] Multiple class loaders found for pkg:
| 12:13:40,671 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/cglib.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:40,937 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/commons-httpclient.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:41,015 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/commons-logging.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:41,390 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/dom4j.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:41,468 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/ejb3-persistence.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:41,640 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/hibernate-annotations.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:41,765 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/hibernate-entitymanager.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:42,062 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/hibernate3.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:42,078 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/hsqldb-plugin.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:42,250 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/hsqldb.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:43,187 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jacorb.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:43,359 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/javassist.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:43,437 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/javax.servlet.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:43,500 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/javax.servlet.jsp.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:43,640 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jaxen.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:43,750 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-backport-concurrent.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:43,906 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-cache.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,000 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-common-jdbc-wrapper.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,031 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-hibernate.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,187 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-iiop.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,343 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-j2ee.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,390 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-jaxrpc.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,453 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-jca.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,484 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-jsr77.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,531 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-jsr88.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,609 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-management.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,687 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-monitoring.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,718 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-remoting-int.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,890 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-remoting.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:44,921 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-saaj.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:45,031 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-serialization.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:45,078 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-srp.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:45,125 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss-transaction.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:45,531 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jboss.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:45,671 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jbossha.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:45,812 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jbossmq.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:45,875 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jbossretro-rt.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:46,031 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jbosssx.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:46,468 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jgroups.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:46,718 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jmx-adaptor-plugin.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:46,812 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jnpserver.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:46,984 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/joesnmp.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:46,984 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jpl-pattern.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:47,046 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/jpl-util.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:47,078 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/log4j-snmp-appender.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:47,234 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/log4j.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:47,250 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/mail-plugin.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:47,390 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/mail.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:47,421 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/properties-plugin.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:47,593 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/quartz-all-1.5.2.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:47,640 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/scheduler-plugin-example.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:47,671 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/scheduler-plugin.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:47,687 DEBUG [RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/lib/xmlentitymgr.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@e020c9{ url=null ,addedOrder=2}
| 12:13:47,687 DEBUG [MainDeployer] found 0 subpackages of file:/C:/jboss-4.0.5.GA/server/default/conf/jboss-service.xml
| 12:13:47,687 DEBUG [MainDeployer] Watching new file: file:/C:/jboss-4.0.5.GA/server/default/conf/jboss-service.xml
| 12:13:47,703 DEBUG [MainDeployer] create step for deployment file:/C:/jboss-4.0.5.GA/server/default/conf/jboss-service.xml
| 12:13:47,703 DEBUG [SARDeployer] Deploying SAR, create step: url file:/C:/jboss-4.0.5.GA/server/default/conf/jboss-service.xml
| 12:13:47,703 DEBUG [SARDeployer] Registering service UCL=jmx.loading:UCL=e020c9
| 12:13:47,703 DEBUG [ServiceCreator] About to create bean: jboss.system:service=ThreadPool with code: org.jboss.util.threadpool.BasicThreadPool
| 12:13:47,734 DEBUG [ServiceCreator] Created bean: jboss.system:service=ThreadPool
| 12:13:47,750 DEBUG [ServiceConfigurator] Name set to JBoss System Threads in jboss.system:service=ThreadPool
| 12:13:47,750 DEBUG [ServiceConfigurator] ThreadGroupName set to System Threads in jboss.system:service=ThreadPool
| 12:13:47,750 DEBUG [ServiceConfigurator] KeepAliveTime set to 60000 in jboss.system:service=ThreadPool
| 12:13:47,750 DEBUG [ServiceConfigurator] MaximumPoolSize set to 10 in jboss.system:service=ThreadPool
| 12:13:47,750 DEBUG [ServiceConfigurator] MaximumQueueSize set to 1000 in jboss.system:service=ThreadPool
| 12:13:47,750 DEBUG [ServiceConfigurator] BlockingMode set to run in jboss.system:service=ThreadPool
| 12:13:47,750 DEBUG [ServiceCreator] About to create xmbean object: jboss.system:type=Log4jService,service=Logging with code: org.jboss.logging.Log4jService with descriptor: resource:xmdesc/Log4jService-xmbean.xml
| 12:13:48,125 DEBUG [ServiceCreator] Created bean: jboss.system:type=Log4jService,service=Logging
| 12:13:48,125 DEBUG [ServiceConfigurator] ConfigurationURL set to resource:log4j.xml in jboss.system:type=Log4jService,service=Logging
| 12:13:48,125 DEBUG [ServiceConfigurator] Log4jQuietMode set to true in jboss.system:type=Log4jService,service=Logging
| 12:13:48,125 DEBUG [ServiceConfigurator] RefreshPeriod set to 60 in jboss.system:type=Log4jService,service=Logging
| 12:13:48,125 DEBUG [ServiceCreator] About to create bean: jboss:service=XidFactory with code: org.jboss.tm.XidFactory
| 12:13:48,171 DEBUG [ServiceCreator] Created bean: jboss:service=XidFactory
| 12:13:48,171 DEBUG [ServiceCreator] About to create xmbean object: jboss:service=TransactionManager with code: org.jboss.tm.TransactionManagerService with descriptor: resource:xmdesc/TransactionManagerService-xmbean.xml
| 12:13:48,265 DEBUG [ServiceCreator] Created bean: jboss:service=TransactionManager
| 12:13:48,265 DEBUG [ServiceConfigurator] TransactionTimeout set to 300 in jboss:service=TransactionManager
| 12:13:48,265 DEBUG [ServiceConfigurator] GlobalIdsEnabled set to true in jboss:service=TransactionManager
| 12:13:48,265 DEBUG [ServiceController] recording that jboss:service=TransactionManager depends on jboss:service=XidFactory
| 12:13:48,265 DEBUG [ServiceConfigurator] considering XidFactory with object name jboss:service=XidFactory
| 12:13:48,265 DEBUG [ServiceController] recording that jboss:service=TransactionManager depends on jboss:service=Naming
| 12:13:48,265 DEBUG [ServiceConfigurator] considering <anonymous> with object name jboss:service=Naming
| 12:13:48,265 DEBUG [ServiceCreator] About to create bean: jboss.deployment:type=DeploymentScanner,flavor=URL with code: org.jboss.deployment.scanner.URLDeploymentScanner
| 12:13:48,328 DEBUG [ServiceCreator] Created bean: jboss.deployment:type=DeploymentScanner,flavor=URL
| 12:13:48,328 DEBUG [ServiceController] recording that jboss.deployment:type=DeploymentScanner,flavor=URL depends on jboss.system:service=MainDeployer
| 12:13:48,328 DEBUG [ServiceConfigurator] considering Deployer with object name jboss.system:service=MainDeployer
| 12:13:48,328 DEBUG [ServiceConfigurator] URLComparator set to org.jboss.deployment.DeploymentSorter in jboss.deployment:type=DeploymentScanner,flavor=URL
| 12:13:48,343 DEBUG [ServiceConfigurator] FilterInstance set to org.jboss.deployment.scanner.DeploymentFilter@8530b8 in jboss.deployment:type=DeploymentScanner,flavor=URL
| 12:13:48,343 DEBUG [ServiceConfigurator] ScanPeriod set to 5000 in jboss.deployment:type=DeploymentScanner,flavor=URL
| 12:13:48,343 DEBUG [ServiceConfigurator] ScanEnabled set to true in jboss.deployment:type=DeploymentScanner,flavor=URL
| 12:13:48,343 DEBUG [ServiceConfigurator] URLs set to deploy/ in jboss.deployment:type=DeploymentScanner,flavor=URL
| 12:13:48,343 DEBUG [URLDeploymentScanner] Adding URL from spec: deploy/
| 12:13:48,343 DEBUG [URLDeploymentScanner] URL: file:/C:/jboss-4.0.5.GA/server/default/deploy/
| 12:13:48,343 DEBUG [URLDeploymentScanner] Added url: file:/C:/jboss-4.0.5.GA/server/default/deploy/
| 12:13:48,343 DEBUG [URLDeploymentScanner] URL list: [file:/C:/jboss-4.0.5.GA/server/default/deploy/]
| 12:13:48,343 DEBUG [ServiceConfigurator] RecursiveSearch set to true in jboss.deployment:type=DeploymentScanner,flavor=URL
| 12:13:48,343 DEBUG [ServiceController] Creating service jboss.system:service=ThreadPool
| 12:13:48,343 DEBUG [ServiceController] Creating dependent components for: jboss.system:service=ThreadPool dependents are: []
| 12:13:48,343 DEBUG [ServiceController] Creating service jboss.system:type=Log4jService,service=Logging
| 12:13:48,343 DEBUG [Log4jService] Creating jboss.system:type=Log4jService,service=Logging
| 12:13:48,343 INFO [Log4jService$URLWatchTimerTask] Configuring from URL: resource:log4j.xml
|
The server log is quite long, but here are all the errors I found in the server log:
1.org.jboss.deployment.DeploymentException
| 2006-12-08 12:13:59,828 DEBUG [org.jboss.deployment.JARDeployer] No xml files found
| 2006-12-08 12:13:59,828 DEBUG [org.jboss.deployment.MainDeployer] using deployer org.jboss.deployment.JARDeployer@5dcec6
| 2006-12-08 12:13:59,828 DEBUG [org.jboss.deployment.JARDeployer] looking for nested deployments in : file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/jaxb-impl.jar
| 2006-12-08 12:13:59,968 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] Added url: file:/C:/jboss-4.0.5.GA/server/default/tmp/deploy/tmp16935jaxb-impl.jar, to ucl: org.jboss.mx.loading.UnifiedClassLoader3@1474ea{ url=file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/ ,addedOrder=12}
| 2006-12-08 12:13:59,968 DEBUG [org.jboss.deployment.MainDeployer] resolveLibraries: jaxb-api.jar activation.jar jsr173_1.0_api.jar jaxb1-impl.jar
| 2006-12-08 12:13:59,968 DEBUG [org.jboss.deployment.MainDeployer] new manifest entry for sdi at jaxb-impl.jar entry is jaxb-api.jar
| 2006-12-08 12:13:59,968 DEBUG [org.jboss.deployment.MainDeployer] new manifest entry for sdi at jaxb-impl.jar entry is activation.jar
| 2006-12-08 12:13:59,968 DEBUG [org.jboss.deployment.MainDeployer] The manifest entry in file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/jaxb-impl.jar references URL file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/activation.jar which could not be opened, entry ignored
| 2006-12-08 12:13:59,984 DEBUG [org.jboss.util.NestedThrowable] org.jboss.util.NestedThrowable.parentTraceEnabled=true
| 2006-12-08 12:13:59,984 DEBUG [org.jboss.util.NestedThrowable] org.jboss.util.NestedThrowable.nestedTraceEnabled=false
| 2006-12-08 12:13:59,984 DEBUG [org.jboss.util.NestedThrowable] org.jboss.util.NestedThrowable.detectDuplicateNesting=true
| org.jboss.deployment.DeploymentException: url file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/activation.jar could not be opened, does it exist?
| at org.jboss.deployment.DeploymentInfo.<init>(DeploymentInfo.java:214)
| at org.jboss.deployment.MainDeployer.parseManifestLibraries(MainDeployer.java:1137)
| at org.jboss.deployment.MainDeployer.init(MainDeployer.java:884)
| at org.jboss.deployment.MainDeployer.init(MainDeployer.java:895)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:809)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy6.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| at org.jboss.Main.boot(Main.java:200)
| at org.jboss.Main$1.run(Main.java:490)
| at java.lang.Thread.run(Thread.java:595)
| 2006-12-08 12:13:59,984 DEBUG [org.jboss.deployment.MainDeployer] new manifest entry for sdi at jaxb-impl.jar entry is jsr173_1.0_api.jar
| 2006-12-08 12:13:59,984 DEBUG [org.jboss.deployment.MainDeployer] The manifest entry in file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/jaxb-impl.jar references URL file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/jsr173_1.0_api.jar which could not be opened, entry ignored
| org.jboss.deployment.DeploymentException: url file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/jsr173_1.0_api.jar could not be opened, does it exist?
| at org.jboss.deployment.DeploymentInfo.<init>(DeploymentInfo.java:214)
| at org.jboss.deployment.MainDeployer.parseManifestLibraries(MainDeployer.java:1137)
| at org.jboss.deployment.MainDeployer.init(MainDeployer.java:884)
| at org.jboss.deployment.MainDeployer.init(MainDeployer.java:895)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:809)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy6.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| at org.jboss.Main.boot(Main.java:200)
| at org.jboss.Main$1.run(Main.java:490)
| at java.lang.Thread.run(Thread.java:595)
| 2006-12-08 12:13:59,984 DEBUG [org.jboss.deployment.MainDeployer] new manifest entry for sdi at jaxb-impl.jar entry is jaxb1-impl.jar
| 2006-12-08 12:13:59,984 DEBUG [org.jboss.deployment.MainDeployer] The manifest entry in file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/jaxb-impl.jar references URL file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/jaxb1-impl.jar which could not be opened, entry ignored
| org.jboss.deployment.DeploymentException: url file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/jaxb1-impl.jar could not be opened, does it exist?
| at org.jboss.deployment.DeploymentInfo.<init>(DeploymentInfo.java:214)
| at org.jboss.deployment.MainDeployer.parseManifestLibraries(MainDeployer.java:1137)
| at org.jboss.deployment.MainDeployer.init(MainDeployer.java:884)
| at org.jboss.deployment.MainDeployer.init(MainDeployer.java:895)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:809)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy6.deploy(Unknown Source)
| at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
| at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
| at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy5.deploy(Unknown Source)
| at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
| at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
| at org.jboss.Main.boot(Main.java:200)
| at org.jboss.Main$1.run(Main.java:490)
| at java.lang.Thread.run(Thread.java:595)
| 2006-12-08 12:13:59,984 DEBUG [org.jboss.deployment.MainDeployer] found 0 subpackages of file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/jaxb-impl.jar
| 2006-12-08 12:13:59,984 DEBUG [org.jboss.deployment.MainDeployer] Watching new file: file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/jaxb-impl.jar
| 2006-12-08 12:13:59,984 DEBUG [org.jboss.deployment.MainDeployer] Starting deployment (init step) of package at: file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/jboss-jaxws.jar
| 2006-12-08 12:13:59,984 DEBUG [org.jboss.deployment.MainDeployer] Copying file:/C:/jboss-4.0.5.GA/server/default/deploy/jbossws.sar/jboss-jaxws.jar -> C:\jboss-4.0.5.GA\server\default\tmp\deploy\tmp16936jboss-jaxws.jar
| 2006-12-08 12:14:00,062 DEBUG [org.jboss.deployment.JARDeployer] No xml files found
|
2. java.sql.SQLException
| 2006-12-08 12:14:27,296 DEBUG [org.jboss.system.ServiceController] starting service jboss.mq:service=DestinationManager
| 2006-12-08 12:14:27,296 DEBUG [org.jboss.system.ServiceController] waiting in start jboss.mq:service=DestinationManager on jboss.mq:service=PersistenceManager
| 2006-12-08 12:14:27,296 DEBUG [org.jboss.system.ServiceController] starting service jboss.mq:service=PersistenceManager
| 2006-12-08 12:14:27,296 DEBUG [org.jboss.mq.pm.jdbc2.PersistenceManager] Starting jboss.mq:service=PersistenceManager
| 2006-12-08 12:14:27,312 DEBUG [org.jboss.mq.pm.jdbc2.PersistenceManager] Creating Schema
| 2006-12-08 12:14:27,312 DEBUG [org.jboss.mq.pm.jdbc2.PersistenceManager] Could not create table with SQL: CREATE CACHED TABLE JMS_MESSAGES ( MESSAGEID INTEGER NOT NULL, DESTINATION VARCHAR(255) NOT NULL, TXID INTEGER, TXOP CHAR(1), MESSAGEBLOB OBJECT, PRIMARY KEY (MESSAGEID, DESTINATION) )
| java.sql.SQLException: Table already exists: JMS_MESSAGES in statement [CREATE CACHED TABLE JMS_MESSAGES]
| at org.hsqldb.jdbc.Util.throwError(Unknown Source)
| at org.hsqldb.jdbc.jdbcPreparedStatement.executeUpdate(Unknown Source)
| at org.jboss.resource.adapter.jdbc.WrappedPreparedStatement.executeUpdate(WrappedPreparedStatement.java:251)
| at org.jboss.mq.pm.jdbc2.PersistenceManager.createSchema(PersistenceManager.java:277)
| at org.jboss.mq.pm.jdbc2.PersistenceManager.startService(PersistenceManager.java:1796)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
| at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
| at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
| at $Proxy0.start(Unknown Source)
| at org.jboss.system.ServiceController.start(ServiceController.java:417)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at org.jboss.system.ServiceController.start(ServiceController.java:435)
| at sun.reflect.GeneratedMethodAccessor5.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy4.start(Unknown Source)
| at org.jboss.deployment.SARDeployer.start(SARDeployer.java:302)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy42.start(Unknown Source)
| at org.jboss.deployment.XSLSubDeployer.start(XSLSubDeployer.java:197)
| at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
| at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
| at sun.reflect.GeneratedMethodAccessor13.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
| at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
| at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
| at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
| at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
| at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
| at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
| at $Proxy6.deploy(Un
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992303#3992303
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992303
19 years, 7 months
[JBossWS] - Re: Missing Content-Length in response
by heiko.braun@jboss.com
Here, this is taken from our SOAPMessageImpl.java:
anonymous wrote :
| /*
| * We are lazily encoding our message, which means that currently
| * Content-Length is not being calculated. This should not be a problem
| * because HTTP/1.1 does not require that it be sent (WS Basic Profile 1.1
| * states that implementations SHOULD send HTTP 1.1). If it is determined
| * that it must be sent, this perhaps should be done by the transport
| * layer. However, there could be a space optimization where length is
| * precalulated per attachment, and that calculation would, of course,
| * belong here.
| */
|
|
I don't consider it to be a bug. What issue's do you have with it? What client consumes that service?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992290#3992290
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992290
19 years, 7 months
[JNDI/Naming/Network] - Re: EJB3 Remote client problem
by ahachmann
Hello,
I am having a similar problem. But the Class that seems to be invalid is a different one. I have also copied the jars from the Server to the Client.
I am working with 2 JBoss Servern Version 4.0.4 GA. The one server is looking up a remote bean on the other.
How can i fix this ClassMissMatch when even copying the Jars does not heltp?
I am quiet frustrated with this problem.
Happy about every Help,
Alexander
| 17:29:02,157 ERROR [STDERR] javax.naming.CommunicationException [Root exception is java.io.InvalidClassException: org.jboss.ejb3.remoting.IsLocalInterceptor; local class incompatible: stream classdesc serialVersionUID = -3758782076801249473, local class serialVersionUID = 595045557897063404]
| 17:29:02,158 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:722)
| 17:29:02,158 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
| 17:29:02,158 ERROR [STDERR] at javax.naming.InitialContext.lookup(InitialContext.java:351)
| 17:29:02,158 ERROR [STDERR] at com.epgdata.axis.handlers.AuthenticationHandler._onFault(AuthenticationHandler.java:108)
| 17:29:02,158 ERROR [STDERR] at com.epgdata.axis.handlers.SessionedHandler.onFault(SessionedHandler.java:80)
| 17:29:02,158 ERROR [STDERR] at org.apache.axis.SimpleChain.onFault(SimpleChain.java:154)
| 17:29:02,159 ERROR [STDERR] at org.apache.axis.SimpleChain.onFault(SimpleChain.java:154)
| 17:29:02,159 ERROR [STDERR] at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:135)
| 17:29:02,159 ERROR [STDERR] at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
| 17:29:02,159 ERROR [STDERR] at org.apache.axis.handlers.soap.SOAPService.invoke(SOAPService.java:454)
| 17:29:02,159 ERROR [STDERR] at org.apache.axis.server.AxisServer.invoke(AxisServer.java:281)
| 17:29:02,159 ERROR [STDERR] at org.apache.axis.transport.http.AxisServlet.doPost(AxisServlet.java:708)
| 17:29:02,159 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
| 17:29:02,159 ERROR [STDERR] at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBase.java:327)
| 17:29:02,160 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
| 17:29:02,160 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
| 17:29:02,160 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 17:29:02,160 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
| 17:29:02,160 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| 17:29:02,160 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
| 17:29:02,160 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
| 17:29:02,160 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
| 17:29:02,160 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
| 17:29:02,161 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
| 17:29:02,161 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
| 17:29:02,161 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| 17:29:02,161 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
| 17:29:02,161 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| 17:29:02,161 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| 17:29:02,161 ERROR [STDERR] at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| 17:29:02,161 ERROR [STDERR] at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| 17:29:02,162 ERROR [STDERR] at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
| 17:29:02,162 ERROR [STDERR] at java.lang.Thread.run(Thread.java:595)
| 17:29:02,163 ERROR [STDERR] Caused by: java.io.InvalidClassException: org.jboss.ejb3.remoting.IsLocalInterceptor; local class incompatible: stream classdesc serialVersionUID = -3758782076801249473, local class serialVersionUID = 595045557897063404
| 17:29:02,163 ERROR [STDERR] at java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:546)
| 17:29:02,163 ERROR [STDERR] at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1552)
| 17:29:02,163 ERROR [STDERR] at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1466)
| 17:29:02,163 ERROR [STDERR] at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1699)
| 17:29:02,163 ERROR [STDERR] at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
| 17:29:02,163 ERROR [STDERR] at java.io.ObjectInputStream.readArray(ObjectInputStream.java:1634)
| 17:29:02,164 ERROR [STDERR] at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1299)
| 17:29:02,164 ERROR [STDERR] at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1908)
| 17:29:02,164 ERROR [STDERR] at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1832)
| 17:29:02,164 ERROR [STDERR] at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1719)
| 17:29:02,164 ERROR [STDERR] at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
| 17:29:02,164 ERROR [STDERR] at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1908)
| 17:29:02,164 ERROR [STDERR] at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1832)
| 17:29:02,164 ERROR [STDERR] at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1719)
| 17:29:02,165 ERROR [STDERR] at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1305)
| 17:29:02,165 ERROR [STDERR] at java.io.ObjectInputStream.readObject(ObjectInputStream.java:348)
| 17:29:02,165 ERROR [STDERR] at java.rmi.MarshalledObject.get(MarshalledObject.java:135)
| 17:29:02,165 ERROR [STDERR] at org.jnp.interfaces.MarshalledValuePair.get(MarshalledValuePair.java:72)
| 17:29:02,165 ERROR [STDERR] at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:652)
| 17:29:02,165 ERROR [STDERR] ... 32 more
|
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992287#3992287
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992287
19 years, 7 months