App Engine <threadsafe> element missing error

rgweb

New Member
So I have this error that i've seen many people have:\[code\]appengine-web.xml does not contain a <threadsafe> element.\[/code\]But the solution always provided is to just add \[code\]<threadsafe>true</threadsafe>\[/code\]to the appengine-web.xml file. This is my appengine-web.xml file:\[code\]<?xml version="1.0" encoding="utf-8"?><appengine-web-app xmlns="http://appengine.google.com/ns/1.0"> <application>dummy</application> <version>1</version> <threadsafe>true</threadsafe> <!-- Configure java.util.logging --> <system-properties> <property name="java.util.logging.config.file" value="http://stackoverflow.com/questions/12563587/WEB-INF/logging.properties"/> </system-properties></appengine-web-app>\[/code\]And still I get the error that no threadsafe element is found?
 
Back
Top