[JBoss JIRA] (JBWS-3914) Arquillian is unable to start server during testsuite when running with 32-bit JDK
by Jan Blizňák (JIRA)
[ https://issues.jboss.org/browse/JBWS-3914?page=com.atlassian.jira.plugin.... ]
Jan Blizňák updated JBWS-3914:
------------------------------
Summary: Arquillian is unable to start server during testsuite when running with 32-bit JDK (was: Arquillian is unable to start during testsuite when running with 32-bit JDK)
> Arquillian is unable to start server during testsuite when running with 32-bit JDK
> ----------------------------------------------------------------------------------
>
> Key: JBWS-3914
> URL: https://issues.jboss.org/browse/JBWS-3914
> Project: JBoss Web Services
> Issue Type: Bug
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-5.0.0.Final
> Reporter: Jan Blizňák
>
> export JAVA_HOME=/path/to/32bit/jdk
> export PATH=$JAVA_HOME/bin:$PATH
> mvn -Pwildfly900 integration-test
> will eventually fail on container startup by arquillian:
> {code}
> May 12, 2015 4:55:44 AM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal
> INFO: Starting container with: [/qa/tools/opt/jdk1.8.0.unlimited.BC/bin/java, -D[Standalone], -Xms64m, -Xmx512m, -XX:MaxPermSize=256m, -Djava.net.preferIPv4Stack=true, -server, -XX:+UseCompressedOops, -Djboss.socket.binding.port-offset=0, -ea, ....(trimmed)]
> Java HotSpot(TM) Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0
> Unrecognized VM option 'UseCompressedOops'
> Did you mean '(+/-)CheckCompressedOops'?
> Error: Could not create the Java Virtual Machine.
> Error: A fatal exception has occurred. Program will exit.
> {code}
> According to this http://docs.oracle.com/javase/8/docs/technotes/tools/unix/java.html the default for UseCompressedOops is true for 64-bit JDK, so we should be safe to remove the setting from arquillian.xml and pom.xml files in testsuite module
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
9 years, 7 months
[JBoss JIRA] (JBWS-3914) Arquillian is unable to start during testsuite when running with 32-bit JDK
by Jan Blizňák (JIRA)
[ https://issues.jboss.org/browse/JBWS-3914?page=com.atlassian.jira.plugin.... ]
Jan Blizňák commented on JBWS-3914:
-----------------------------------
One can verify that by running
{{java -XX:+PrintFlagsFinal -version|grep UseCompressedOops}}
> Arquillian is unable to start during testsuite when running with 32-bit JDK
> ---------------------------------------------------------------------------
>
> Key: JBWS-3914
> URL: https://issues.jboss.org/browse/JBWS-3914
> Project: JBoss Web Services
> Issue Type: Bug
> Components: jbossws-cxf
> Affects Versions: jbossws-cxf-5.0.0.Final
> Reporter: Jan Blizňák
>
> export JAVA_HOME=/path/to/32bit/jdk
> export PATH=$JAVA_HOME/bin:$PATH
> mvn -Pwildfly900 integration-test
> will eventually fail on container startup by arquillian:
> {code}
> May 12, 2015 4:55:44 AM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal
> INFO: Starting container with: [/qa/tools/opt/jdk1.8.0.unlimited.BC/bin/java, -D[Standalone], -Xms64m, -Xmx512m, -XX:MaxPermSize=256m, -Djava.net.preferIPv4Stack=true, -server, -XX:+UseCompressedOops, -Djboss.socket.binding.port-offset=0, -ea, ....(trimmed)]
> Java HotSpot(TM) Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0
> Unrecognized VM option 'UseCompressedOops'
> Did you mean '(+/-)CheckCompressedOops'?
> Error: Could not create the Java Virtual Machine.
> Error: A fatal exception has occurred. Program will exit.
> {code}
> According to this http://docs.oracle.com/javase/8/docs/technotes/tools/unix/java.html the default for UseCompressedOops is true for 64-bit JDK, so we should be safe to remove the setting from arquillian.xml and pom.xml files in testsuite module
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
9 years, 7 months
[JBoss JIRA] (JBWS-3914) Arquillian is unable to start during testsuite when running with 32-bit JDK
by Jan Blizňák (JIRA)
Jan Blizňák created JBWS-3914:
---------------------------------
Summary: Arquillian is unable to start during testsuite when running with 32-bit JDK
Key: JBWS-3914
URL: https://issues.jboss.org/browse/JBWS-3914
Project: JBoss Web Services
Issue Type: Bug
Components: jbossws-cxf
Affects Versions: jbossws-cxf-5.0.0.Final
Reporter: Jan Blizňák
export JAVA_HOME=/path/to/32bit/jdk
export PATH=$JAVA_HOME/bin:$PATH
mvn -Pwildfly900 integration-test
will eventually fail on container startup by arquillian:
{code}
May 12, 2015 4:55:44 AM org.jboss.as.arquillian.container.managed.ManagedDeployableContainer startInternal
INFO: Starting container with: [/qa/tools/opt/jdk1.8.0.unlimited.BC/bin/java, -D[Standalone], -Xms64m, -Xmx512m, -XX:MaxPermSize=256m, -Djava.net.preferIPv4Stack=true, -server, -XX:+UseCompressedOops, -Djboss.socket.binding.port-offset=0, -ea, ....(trimmed)]
Java HotSpot(TM) Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0
Unrecognized VM option 'UseCompressedOops'
Did you mean '(+/-)CheckCompressedOops'?
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.
{code}
According to this http://docs.oracle.com/javase/8/docs/technotes/tools/unix/java.html the default for UseCompressedOops is true for 64-bit JDK, so we should be safe to remove the setting from arquillian.xml and pom.xml files in testsuite module
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
9 years, 7 months
[JBoss JIRA] (JBWS-3913) Create WildFly 9.0 ASIL
by Alessio Soldano (JIRA)
Alessio Soldano created JBWS-3913:
-------------------------------------
Summary: Create WildFly 9.0 ASIL
Key: JBWS-3913
URL: https://issues.jboss.org/browse/JBWS-3913
Project: JBoss Web Services
Issue Type: Task
Components: jbossws-cxf, jbossws-integration
Reporter: Alessio Soldano
Fix For: jbossws-cxf-5.1
With current WildFly master development moving to version 10, we'll eventually need an integration layer for 9.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
9 years, 7 months
[JBoss JIRA] (JBWS-3912) Provide a test case for throttling features
by Jim Ma (JIRA)
Jim Ma created JBWS-3912:
----------------------------
Summary: Provide a test case for throttling features
Key: JBWS-3912
URL: https://issues.jboss.org/browse/JBWS-3912
Project: JBoss Web Services
Issue Type: Task
Components: jbossws-cxf
Affects Versions: jbossws-cxf-5.0.0.Final
Reporter: Jim Ma
Assignee: Jim Ma
Throttling features is one of the new features in cxf 3.1.0. Evaluate this feature and create test case or sample for this new feature after cxf 3.1.0 is shipped in jbossws-cxf.
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)
9 years, 7 months