[
https://issues.jboss.org/browse/ARQ-1777?page=com.atlassian.jira.plugin.s...
]
Aslak Knutsen commented on ARQ-1777:
------------------------------------
Not sure I understand quite what's wrong / how its wrong here..
Could you provide a complete project that shows the error?
I see from your configuration that you're using the Servlet 3.0 protocol on a Tomcat 6
server. Tomcat 6 only support Servlet 2.5. This would result in Tests not begin executed,
but I would expect you see a error about not getting a response from the TestRunnerServlet
or similar.. ?
Test hangs on remote Tomcat 6
-----------------------------
Key: ARQ-1777
URL:
https://issues.jboss.org/browse/ARQ-1777
Project: Arquillian
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: Tomcat Containers
Reporter: Pramod Kankure
I have observed that test hangs when executing on tomcat 6 remote container.
My arquillian.xml looks like below. ( I don't use authentication for jmx)
<?xml version="1.0" encoding="UTF-8"?>
<arquillian
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://jboss.org/schema/arquillian"
xsi:schemaLocation="http://jboss.org/schema/arquillian
http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
<group qualifier="Grid" default="true">
<defaultProtocol type="Servlet 3.0" />
<container qualifier="remote-tomcat1" default="true">
<configuration>
<property name="httpPort">1776</property>
<property name="host">localhost</property>
<property name="jmxPort">8090</property>
</configuration>
</container>
</group>
</arquillian>
The test do stops with an error when the server is down or wrong HTTP port is specified.
It does execute @deployment method of the test but never comes to execute the test method
annoted with [~test.todd]
--
This message was sent by Atlassian JIRA
(v6.2.6#6264)