0
votes
1answer
17 views

Write HTTPServletRequest stream to Datastore of Google App Engine

I am pretty new to App Engine and Java Development and try to receive a InputStream via Http Post and store it into Datastore. To test this I use the uptime from another computer and send 10 uptime ...
0
votes
1answer
27 views

How to create a servlet on the fly

For below URL's I receive a 404 error, this is fine since the URL's do not exist. Is it possible to create these servlets while the server is running before the error page is returned ? ...
1
vote
0answers
42 views

JDO - java.lang.NoClassDefFoundError in Google Web Application

Im trying to make a Google Web Application in Java. I got a servlet named Get.java, a EMF.java that is taking care of the storage and a javabean, Person.java. Get.java: package no.nordnes; import ...
0
votes
1answer
45 views

How to use a sub-folder as web.xml welcome directory

I want to configure my web.xml for Google App Engine, but my configuration doesn't work. I want to change the default index.html with WebApp/index.html. Here is the web.xml: <servlet> ...
1
vote
1answer
52 views

set httpOnly and secure flags on session cookie in Google App Engine

I need to set httpOnly and secure flags on session cookie in Google App Engine. I tried the following in web.xml: <session-config> <cookie-config> ...
1
vote
1answer
21 views

full path of Blobstore callback url

Does anyone know the full path of the callback url that the blobstore uses? Say I specify upload in blobstoreService.createUploadUrl("/upload") as the callback. Does the blobstore call ...
0
votes
1answer
72 views

500 server error, while deploying a google app

this is my first google app engine servlet which i wanted to make it crawling a website so i created threads using backgroundThread in app engine, my problem is when i run this application on the ...
4
votes
0answers
55 views

combining blob servlet with endpoint api

Here is my web.xml <?xml version="1.0" encoding="utf-8" standalone="no"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" ...
5
votes
1answer
86 views

convert servlet schema to app-engine endpoint schema

Would the following conversion hold for converting from Java servlet to google app-engine cloud endpoint? FROM public void doPost(HttpServletRequest req, HttpServletResponse res) throws ...
-5
votes
1answer
47 views

Simple Google App Engine JSP

I am new to Google App Engine I know the development of JSP Servlet, but i need to know, how to create JSP Servlet in Google App Engine, Please give simple login demo or equivalent as example. [Please ...
0
votes
0answers
31 views

Google app engine, internal error 500 for very simple servlet

after deploying my application for the first time, I decided to check if its working a simple Servlet. The code is the following: protected void doGet(HttpServletRequest req, HttpServletResponse ...
0
votes
0answers
118 views

How to redirect in web.xml

I'm working on a GAE/J app and I have the following structure: - war | - mobile | | | - assets | | | | | + a.jpg | | + b.gif | ...
0
votes
0answers
51 views

What is the cause for an HTTP 405 Error in GAE application?

I'm using eclipse to develop a Google App Engine application. I am on a login page, but I click login, then it shows "Error 405 HTTP method POST is not supported by this URL"? Here is my servlet ...
2
votes
1answer
79 views

Servlet interface is not a javax.servlet.Servlet

hi this bug not able to trace - help required . I am using google app engine and writing rpc servlet as below <!-- Servlets --> <servlet> ...
1
vote
2answers
55 views

GAE how to serve an html file dynamically from the server

I'm working with GAE (Java) in my GWT application. When my users enter a certain URL I'd like to dynamically create an html page on the server side and serve it to the client. How can I do this? ...
0
votes
1answer
146 views

Jsp serverlet mapping url-pattern /* overrides the welcome-file

I'm building a site on Google app engine with Java. There I'm trying to map jsp pages with servlet mapping as follows: http://localhost:8080/<any text> should map to r.jsp ...
0
votes
1answer
61 views

Redirect Servlet to the a div container

I have a sevlet which is handled by Spring and also uses Google App Engine as a cloud plattform. I want to redirect this servlet to another page: @Controller public class CustomerController { ...
1
vote
1answer
43 views

URLStreamHandler is a restricted class

I'm getting this error: java.lang.NoClassDefFoundError: java.net.URLStreamHandler is a restricted class. Please see the Google App Engine developer's guide for more details. at ...
0
votes
3answers
149 views

Using Spring with App Engine

I am struggeling using the basic crud methods with app engine: My code looks like that: My CustomerController: @Controller public class CustomerController { @RequestMapping(value = "/add", method ...
0
votes
1answer
68 views

How to get HttpServletResponse object in restlet for GAE BlobStore serve

I'm using Restlet with GAE, and the GAE Blobstore API requires a HttpServletRequest object for uploading blobs and a HttpServletResponse object for serving them. Is there any way to get the ...
0
votes
1answer
165 views

Java servlet request javax.xml.stream.XMLStreamException - Premature end of file

I am trying to read and parse an rss feed from a 2 jetty servers (Eclipse - Google Plugin): one with App engine SDK enabled and one without it. 1. When i test on the jetty run with app engine enabled ...
-1
votes
1answer
87 views

Form processing getting Null Pointer Exception?

I want to process this forms field with jsp: <div class="control-group"> <!-- Text input--> ...
0
votes
2answers
78 views

Google app engine - Submiting a Form

I have created this servlet method: /** * Create the entity and persist it. */ protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { ...
0
votes
0answers
59 views

Could not able to retrieve data from android client to servlet page, Showing NULL

I have created a project in which, android main activity sends a string value using HttpPost method to servlet on button click. On other hand requested servlet gets the string value, stores in ...
0
votes
1answer
108 views

POST call to HttpServlet within server method, generate iText document from byte array and redirect client to download it

Basically, I have a web application that must generate large *.pdf reports. It's being hosted on Google App Engine, and I'm using Google Web Toolkit to deploy it. The client calls getReport() method ...
0
votes
1answer
65 views

given BlobstoreService served HttpServletResponse, how to fetch the served blob?

Here is my Serve.java, which is my Serve servlet. public class Serve extends HttpServlet { private BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService(); public void ...
0
votes
0answers
94 views

Picture upload java code works in local GAE development server, but not on live instance

Here is server side that works in local GAE development server (which means that getBodyFrom() method successfully reads request body): /** * Class to manage upload and serving of Doctor image. * ...
0
votes
1answer
117 views

Unable to deploy app on google app engine using jetty:“HTTP ERROR 404 Pblm accessing /.Reason: not found”

Ive bee trying to set up a sample 'todo' google app engine example that uses Java, using an article I found here . However, when I try to run the application locally, and check the localhost:8888 ...
0
votes
0answers
113 views

How can I upload a Bitmap in android to my google app engine servlet for blobstore?

I have been using the following documentation to build most of a blobstore upload: https://developers.google.com/appengine/docs/java/blobstore/overview#Complete_Sample_App Instead of a jsp, I am ...
0
votes
2answers
206 views

How to send array values to servlet using NameValuePair?

I am trying to send array of boolean values to servlet. This is what I have done so far, and I am so stuck: HttpClient client = new DefaultHttpClient(); String postURL = ...
0
votes
0answers
91 views

servlet request.getRequestURL wrong

I typed http://localhost:8888/img/favicon.jpg on my browser, and the servlet output is: Feb 27, 2013 3:40:04 AM ui.controller.filter.VisitorFilter doFilter INFO: GET: From:[127.0.0.1] ...
0
votes
1answer
38 views

GWT - RPC Failure with GAE - Working in local on Greetings sample

I'm encountering a probem with my GWT app. Everything is working great in local but I got Error 500 when the application is deployed on Google App Engine. To understand the problem, I tried to deploy ...
0
votes
2answers
111 views

Google App Engine to MongoLab security

I am sending HTTP requests from GAE to MongoLab in the form of: https://api.mongolab.com/api/1/databases/rival_testdb/collections/testCollection?apiKey=someKey If this request was coming directly ...
1
vote
1answer
81 views

Array.toString(boolean) values

In java servlet, boolean[] arrBool = new boolean[6]; I am showing resp.getWriter.println(Arrays.toString(arrBool)). So output is like [false, true, true, false, false, true]. I am generating ...
2
votes
1answer
186 views

File listing from google cloud storage

For a project I'm doing, I will have files stored in Google's Cloud Storage and am building a web app to interface to those files. I would like my app to show a list of the files (or objects may be ...
9
votes
3answers
411 views

Multithread GAE servlets to handle concurrent users

I'd like to multithread my GAE servlets so that the same servlet on the same instance can handle up to 10 (on frontend instance I believe the max # threads is 10) concurrent requests from different ...
2
votes
1answer
212 views

Reading in a file from google cloud storage using java

I am new to google cloud storage api, as well as using servers. I'm trying to write a web application in Java using Eclipse's IDE to read in a file that is stored in google's cloud storage. I have ...
0
votes
1answer
62 views

AppEngine processing my POST requests as GET

I encountered a weird stuff and I've been struggling with it for a while now. Google AppEngine is processing my POST requests as GET. I've tried 3 different REST clients and they produced the same ...
1
vote
1answer
113 views

Camel and Google App Engine without Spring?

So I'm brushing up on the Camel-GAE component, and all the tutorials/code samples I've found seem to indicate that you must use the Spring DSL (XML) in order to get Camel running on GAE. This is ...
2
votes
1answer
101 views

how to get the file size in google app engine java using apache file uploader

Am uploading a mutlipart file to Google app engine using the below shown code. With the help of apache commons file uploader am uploading the file to Google app engine successfully. I want to validate ...
1
vote
1answer
65 views

Action on user adding GAE XMPP bot

Is it possible to do some action when a chat request is sent by the user to the bot? I know it gets authorized to communicate with the bot, but I want to store the JID of the user as soon as he adds ...
1
vote
2answers
131 views

Simple way of sending data from appengine servlet to client asynchronously

I created a Web Application who provides a service as a website. I am planning to create a WebServlet API to allow other softwares (web or desktop) to easily integrate my service, calling simple ...
0
votes
1answer
121 views

how to connect java servlet from c# windows form?

I already have an existing application implemented using java in app engine....now i want to connect this servlet from c# forms program ?,...this is the tried out code for request HttpWebRequest ...
0
votes
1answer
84 views

GAE, GWT and HTTP Session

I am building a web application based on Google Application Engine (GAE) and Google Web Toolkit (GWT). The client (GWT) interacts with the server in the following way: asks via RPC (servlet) the ...
1
vote
0answers
165 views

How do I authenticate/validate an Android app on an App Engine Server with OAuth 2?

I have a simple application that lets a user draw pictures. There are Android, IOS, and web-based versions. I also let users store their pictures on our App-engine servers and I want them to be able ...
0
votes
1answer
141 views

Appengine LocalResourceFileServlet no file found for:

I'm using some in-house tool to upload a config file. But I get the following error: Jan 10, 2013 11:18:58 AM com.google.appengine.tools.development.LocalResourceFileServlet doGet WARNING: No file ...
0
votes
2answers
41 views

GAE Session does not behave the same offline or online

I have this code : private String delete(HttpServletRequest req, HttpServletResponse res, Seller seller) throws Exception { //check data if(req.getParameter("equipmentId") == null) { ...
4
votes
1answer
638 views

Cache-related HTTP headers are overridden in Servlet response on App Engine

I have a servlet on App engine which serves images. The servlet sets HTTP header values properly to indicate that the images should be cached. But App Engine overrides these headers which results in ...
0
votes
2answers
95 views

Use GAE servlet to serve dynamic JNLP and jar for JavaWS

I encourtered several problems when I try to distribute jar/jnlp dynamically. All my files are dynamically served using http://www.mywebsite.com/ServeFile?name=xxx for file xxx. I can download files ...
0
votes
2answers
56 views

Why did app engine perform writer operation when I “read” HttpSession Attribute

the write operation on the httpsession is consuming my resources I have a on UserSession attribute in the session which only store a userID and hash write operation should only perform while login ...

1 2 3 4 5 6