"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#4266930
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4266930
"kukeltje" wrote : Two things:
| - There is nothing about jBPM in the stacktraces
| - It is the wrong forum (should be the userforum)
|
| and a new project where you start using jBPM3.1.4?
Aside from the first two points that kukeltje makes:
- 3.1.4 is still being used, believe it or not, in enterprises. I see it running in production, but push to have them look at moving to the currently supported Red Hat product versions of jBPM 3.2.x.
- for those interested in the supported version, you need to work with the 3.2.x version as stated above, but early next year Red Hat will be stopping with individual framework support for jBPM (among others).
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4266908#4266908
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4266908
"ALRubinger" wrote : Giving more memory to Maven using MAVEN_OPTS shouldn't help you with tests which Surefire launches (in another process/VM). For that there's the Surefire config in build/pom.xml; see if bumping the Xmx there locally works for you.
|
Yeah, I saw the surefire plugin doc but I figured I'd try MAVEN_OPTS first.
anonymous wrote :
| So far as the "port in use" issue, I recommend using Sysinternals' PortMon (http://technet.microsoft.com/en-us/sysinternals/bb896644.aspx) to see what process is holding the port (my guess is something external to AS).
|
| S,
| ALR
Okay, the weird thing is that ServerTestCase-output.txt has the 'port in use' message in it, but ServerTestCase.txt has OOME.
I used currports... it says there's nothing listening on 8083.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4266901#4266901
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4266901