<!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>
    &nbsp;&nbsp;&nbsp; ("subsystem" =&gt; "web"),<br>
    &nbsp;&nbsp;&nbsp; ("virtual-server" =&gt; "localhost")<br>
    ]<br>
    <br>
    Apparently it is not liking this change I made to the web subsystem:<br>
    <br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;subsystem xmlns="urn:jboss:domain:web:1.0"&gt;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;connector name="http" protocol="HTTP/1.1"
    socket-binding="http" scheme="http"/&gt;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;virtual-server name="localhost"
    enable-welcome-root="false" /&gt;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/subsystem&gt;<br>
    <br>
    <br>
    from the default of:<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;subsystem xmlns="urn:jboss:domain:web:1.0"&gt;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;connector name="http" protocol="HTTP/1.1"
    socket-binding="http" scheme="http"/&gt;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;virtual-server name="localhost"
    enable-welcome-root="true"&gt;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;alias name="example.com" /&gt;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/virtual-server&gt;<br>
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/subsystem&gt;<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>