Uploaded image for project: 'Arquillian'
  1. Arquillian
  2. ARQ-1044

The properties of tomcat container configuration in arquillian.xml are not parsed properly

XMLWordPrintable

      It is impossible to use tabs or newlines in arquillian.xml when defining properties for tomcat configuration. Only space (" ") can be used as delimiter.

      For example, this configuration is OK:

      <container qualifier="tomcat" default="true">
        <configuration>
          <property name="catalinaHome">/home/tomcat6</property>
          <property name="javaVmArguments">-Xmx1024m -XX:MaxPermSize=512</property>
        </configuration>
      </container>
      

      While this one causes failure on startup:

      <container qualifier="tomcat" default="true">
        <configuration>
          <property name="catalinaHome">/home/tomcat6</property>
          <property name="javaVmArguments">
      -Xmx1024m
      -XX:MaxPermSize=512
          </property>
        </configuration>
      </container>
      

              trepel Tomas Repel
              trepel Tomas Repel
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

                Created:
                Updated:
                Resolved: