search
top

JBoss 3.2 connection problem

I am developing an application using JBoss as a deployment server. After a redeploy the JBoss throws an error on me: org.jboss.deployment.DeploymentException: Connection refused: connect

The problem was in jboss.xml file:

<!DOCTYPE jboss PUBLIC
"-//JBoss//DTD JBOSS3.2//EN"
"http://localhost/jbossdtd/jboss_3_2.dtd">

After I have changed this to:


<!DOCTYPE jboss PUBLIC
"-//JBoss//DTD JBOSS 3.2//EN"

"http://www.jboss.org/j2ee/dtd/jboss_3_2.dtd">

everything has gone smoothly.

Leave a Reply

top