Note that there are some explanatory texts on larger screens.

plurals
  1. POGWT Internal error while validating appengine-web.xml
    primarykey
    data
    text
    <p>When I try to deploy to GAE I get the error:</p> <p><em>XML error validating appengine-web.xml against appengine-web.xsd</em></p> <p>My <em>appengine-web.xml</em> looks like this:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;appengine-web-app xmlns="http://appengine.google.com/ns/1.0"&gt; &lt;application&gt;whatever&lt;/application&gt; &lt;version&gt;0-8-4&lt;/version&gt; &lt;!-- Configure serving/caching of GWT files --&gt; &lt;static-files&gt; &lt;include path="**" /&gt; &lt;!-- The following line requires App Engine 1.3.2 SDK --&gt; &lt;include path="**.nocache.*" expiration="0s" /&gt; &lt;include path="**.cache.*" expiration="365d" /&gt; &lt;exclude path="**.gwt.rpc" /&gt; &lt;!-- To use Font Awesome in Firefox --&gt; &lt;include path="/../**" &gt; &lt;http-header name="Access-Control-Allow-Origin" value="*" /&gt; &lt;/include&gt; &lt;/static-files&gt; &lt;!-- Configure java.util.logging --&gt; &lt;system-properties&gt; &lt;property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/&gt; &lt;/system-properties&gt; &lt;threadsafe&gt;true&lt;/threadsafe&gt; &lt;/appengine-web-app&gt; </code></pre> <p>The lines that are causing the error are:</p> <pre><code> &lt;!-- To use Font Awesome in Firefox --&gt; &lt;include path="/../**" &gt; &lt;http-header name="Access-Control-Allow-Origin" value="*" /&gt; &lt;/include&gt; </code></pre> <p>Before they were like this but that also gives the same error:</p> <pre><code>&lt;include path="/../font" &gt; &lt;http-header name="Access-Control-Allow-Origin" value="*" /&gt; &lt;/include&gt; &lt;include path="/../css" &gt; &lt;http-header name="Access-Control-Allow-Origin" value="*" /&gt; &lt;/include&gt; </code></pre> <p>Can anyone see what's the problem?</p> <p><strong>edit</strong> This is what my war file structure looks like: <img src="https://i.stack.imgur.com/iszVP.png" alt="enter image description here"></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload