Hi Jake,
So I finally got the backends to apper in the Admin UI.
Here is my backends.xml
<backends>
<backend name="spider">
<class>B2</class>
<instances>5</instances>
<options>
<dynamic>true</dynamic>
</options>
</backend>
</backends>
But I don't know how to call them.
I read this blog:
http://pdjamez.com/2011/05/google-app-engine-backends/comment-page-1/
It looks like you just make servlert e.g. LongrunServlet.java and add an
entry to you web.xml like so:
<servlet>
<servlet-name>LongRun</
servlet-name>
<servlet-class>com.example.app.longrunServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>LongRun</servlet-name>
<url-pattern>/longrun</url-pattern>
</servlet-mapping>
But when I try to execute it like:
http://spider.myapp.appspot.com/longrun
Error: Forbidden
Your client does not have permission to get URL / from this server.
Any help?
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.