When I try to deploy to GAE I get the error:XML error validating appengine-web.xml against appengine-web.xsdMy appengine-web.xml looks like this:\[code\]<?xml version="1.0" encoding="utf-8"?><appengine-web-app xmlns="http://appengine.google.com/ns/1.0"><application>whatever</application><version>0-8-4</version><!-- Configure serving/caching of GWT files --><static-files> <include path="**" /> <!-- The following line requires App Engine 1.3.2 SDK --> <include path="**.nocache.*" expiration="0s" /> <include path="**.cache.*" expiration="365d" /> <exclude path="**.gwt.rpc" /> <!-- To use Font Awesome in Firefox --> <include path="/../**" > <http-header name="Access-Control-Allow-Origin" value="http://stackoverflow.com/questions/15599335/*" /> </include></static-files><!-- Configure java.util.logging --><system-properties> <property name="java.util.logging.config.file" value="http://stackoverflow.com/questions/15599335/WEB-INF/logging.properties"/></system-properties><threadsafe>true</threadsafe></appengine-web-app>\[/code\]The lines that are causing the error are:\[code\] <!-- To use Font Awesome in Firefox --> <include path="/../**" > <http-header name="Access-Control-Allow-Origin" value="http://stackoverflow.com/questions/15599335/*" /> </include>\[/code\]Before they were like this but that also gives the same error:\[code\]<include path="/../font" > <http-header name="Access-Control-Allow-Origin" value="http://stackoverflow.com/questions/15599335/*" /></include><include path="/../css" > <http-header name="Access-Control-Allow-Origin" value="http://stackoverflow.com/questions/15599335/*" /></include>\[/code\]Can anyone see what's the problem?edit This is what my war file structure looks like: