0
votes

I have a layer above the servlet layer. It lets me use output/input streams quite easily without the HTTP hassle.

In that layer, I don't have a reference to HttpServlet Request/Response. GAE blobstore requires a reference to the response/request classes.

Can I somehow work with GAE blobstore without providing the http servlet response/request classes? I couldn't find a way :(

API: https://developers.google.com/appengine/docs/java/javadoc/com/google/appengine/api/blobstore/BlobstoreService

1
I don't know anything about Java on appengine, but why would the datastore require request/response I would have thought thats only required to interact with the web client. Certainly the python datastore api doesn't require it in any way, or are you confusing terms here and you don't really mean the datastore.Tim Hoffman
I meant blobstore. Fixed the question, tags and also added link to the API. It's the middle of the night here. Sorry.AlikElzin-kilaka

1 Answers

0
votes

You could create a paid app that uses the Socket Java API.