"ALRubinger" wrote : Cool.
|
| The WS tests require a couple things:
|
| 1) -Djava.endorsed.dirs set at start of the VM to $JBOSS_HOME/lib/endorsed
| 2) The $JBOSS_HOME/client/*native-client.jar on the ClassPath
Okay, I've changed it to:
| <plugin>
| <groupId>org.apache.maven.plugins</groupId>
| <artifactId>maven-surefire-plugin</artifactId>
| <configuration>
| <argLine>-Xms256m -Xmx1024m -XX:MaxPermSize=256m</argLine>
| <systemProperties>
| <property>
| <name>java.endorsed.dirs</name>
| <value>${env.JBOSS_HOME}/lib/endorsed</value>
| </property>
| </systemProperties>
| <additionalClasspathElements>
|
<additionalClasspathElement>${env.JBOSS_HOME}/client/jbossws-native-client.jar</additionalClasspathElement>
| </additionalClasspathElements>
| </configuration>
| </plugin>
|
It still blows up though.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4266930#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...