Uploaded image for project: 'Application Server 3  4  5 and 6'
  1. Application Server 3 4 5 and 6
  2. JBAS-7824

Uncommenting both filter and filter-mapping elements in jmx-console.war\WEB-INF\web.xml results an xml parsing exception

    XMLWordPrintable

Details

    • Bug
    • Resolution: Obsolete
    • Minor
    • No Release
    • JBossAS-5.1.0.GA
    • Web Console
    • None
    • Workaround Exists
    • Hide

      description must be the first element of init-param element, so move it

      Show
      description must be the first element of init-param element, so move it

    Description

      I've tried to apply wiki document http://community.jboss.org/wiki/AccessControlForJMXConsole
      but it produces exception during startup because of order of elements in jmx-console.war\WEB-INF\web.xml:

      <filter>
      <filter-name>JmxOpsAccessControlFilter</filter-name>
      <filter-class>org.jboss.jmx.adaptor.html.JMXOpsAccessControlFilter</filter-class>
      <init-param>
      <param-name>updateAttributes</param-name>
      <param-value>UpdateAttributeRole</param-value>
      <description>Comma-delimited Roles that define the JMX Operation denoting updation of Attributes</description>
      </init-param>
      <init-param>
      <param-name>invokeOp</param-name>
      <param-value>InvokeOpRole</param-value>
      <description>Comma-delimited Roles that define the JMX Operation denoting updation of Attributes</description>
      </init-param>
      </filter>
      <filter-mapping>
      <filter-name>JmxOpsAccessControlFilter</filter-name>
      <servlet-name>HtmlAdaptor</servlet-name>
      </filter-mapping>

      but in accordance with javaee_5.xsd schema element description should be the first element of init-param:
      ...
      <init-param>
      <description>Comma-delimited Roles that define the JMX Operation denoting updation of Attributes</description>
      <param-name>updateAttributes</param-name>
      <param-value>UpdateAttributeRole</param-value>
      </init-param>
      <init-param>
      <description>Comma-delimited Roles that define the JMX Operation denoting updation of Attributes</description>
      <param-name>invokeOp</param-name>
      <param-value>InvokeOpRole</param-value>
      </init-param>
      ...

      org.jboss.xb.binding.JBossXBException: Failed to parse source: cvc-complex-type.2.4.d: Invalid content was found starting with element 'description'.

      Attachments

        Activity

          People

            Unassigned Unassigned
            rhanus Radim Hanus (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: