I have the following declaration for jboss:

            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>jboss-maven-plugin</artifactId>
                <configuration>
                    <jbossHome>${env.JBOSS_HOME}</jbossHome>
                    <port>8080</port>
                </configuration>
                <executions>
                    <execution>
                        <id>start-server</id>
                        <phase>compile</phase>
                        <goals>
                            <goal>start</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>deploy-to-server</id>
                        <phase>package</phase>
                        <goals>
                            <goal>deploy</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>



I seem to get a note saying it is starting:

[INFO] [jboss:start {execution: start-server}]
[INFO] Starting JBoss...
[INFO] [ear:ear]


but when I go to deploy after packaging, I still get a connection refused:


[INFO] Building jar: C:\opt\baselogic\yoursos\ear\target\ear-
1.0-SNAPSHOT.ear
[INFO] [jboss:deploy {execution: deploy-to-server}]
[INFO] Deploying C:\opt\baselogic\yoursos\ear\target/ear-1.0-SNAPSHOT.ear to
JBoss.
[INFO] No server specified for authentication - using defaults
[INFO]
------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO]
------------------------------------------------------------------------
[INFO] Mojo error occurred: Server returned HTTP response code: 500 for URL:
http://localhost:8080/jmx-console/HtmlAdaptor?action=invokeOpByName&name=
jboss.system:service%3DMainDeployer&methodName=deploy&argType=java.net.URL&arg0=file:C:\opt\baselogic\yoursos\ear\target/ear-1.0-SNAPSHOT.ear

[INFO]
------------------------------------------------------------------------
[INFO] Trace
org.apache.maven.lifecycle.LifecycleExecutionException: Mojo error occurred:
Server returned HTTP response code: 500 for URL: http://localhost:8080/jm
x-console/HtmlAdaptor?action=invokeOpByName&name=
jboss.system:service%3DMainDeployer&methodName=deploy&argType=java.net.URL&arg0=file:C:\opt\baselogic
\yoursos\ear\target/ear-1.0-SNAPSHOT.ear





is there something I am missing?






-- 

Thanks,
Mick Knutson

http://www.baselogic.com
http://www.blincmagazine.com
http://www.djmick.com
http://www.myspace.com/mickknutson
http://www.myspace.com/djmick_dot_com
http://www.myspace.com/sexybeotches
http://www.thumpradio.com
---

Reply via email to