<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body bgcolor="#ffffff" text="#000000">
    I'm seeing just this one line erorr msg after making a change to the
    standalone.xml in both the console and server.log:<br>
    12:44:31,346 ERROR [org.jboss.as.server] Boot update failed:
    "java.lang.IllegalArgumentException"<br>
    <br>
    Putting this in the debugger to see where this is coming from, it
    has something to do with the web subystem as the failure is
    dispatched from:<br>
    <ul>
      <li>doExecute():219, ServerControllerImpl {org.jboss.as.server}
      </li>
    </ul>
    with an address of:<br>
    [<br>
        ("subsystem" => "web"),<br>
        ("virtual-server" => "localhost")<br>
    ]<br>
    <br>
    Apparently it is not liking this change I made to the web subsystem:<br>
    <br>
            <subsystem xmlns="urn:jboss:domain:web:1.0"><br>
                <connector name="http" protocol="HTTP/1.1"
    socket-binding="http" scheme="http"/><br>
                <virtual-server name="localhost"
    enable-welcome-root="false" /><br>
            </subsystem><br>
    <br>
    <br>
    from the default of:<br>
            <subsystem xmlns="urn:jboss:domain:web:1.0"><br>
                <connector name="http" protocol="HTTP/1.1"
    socket-binding="http" scheme="http"/><br>
                <virtual-server name="localhost"
    enable-welcome-root="true"><br>
                  <alias name="example.com" /><br>
                </virtual-server><br>
            </subsystem><br>
    <br>
    I'm guessing it is because the alias is required, but that should
    not be true and is not indicated by the schema.<br>
    I'll look into that, but we need more context to know what is
    failing.<br>
    <br>
  </body>
</html>