I am working on Google App Engine to store data.My application is a android application and I want to receive datas from GAE datastore side.However when I want to receive ArrayList as a JSON text , I am getting "Error : 500 Internal Server Error" message and I could not find any solution about that I put my client and server side codes here ;
Server Side
@SuppressWarnings("serial")
public class ReceiveLoc extends HttpServlet{
public static final String USER_ID = "userId";
public static final String USER_LATITUDE = "latitude";
public static final String USER_LONGITUDE = "longitude";
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
// TODO Auto-generated method stub
String user_id = req.getParameter(USER_ID);
resp.setContentType("application/json");
PrintWriter out = resp.getWriter();
out.println(receiveLoc(user_id));
out.flush();
}
private String receiveLoc(String user_id) {
// TODO Auto-generated method stub
ArrayList<Location> locations = new ArrayList<ReceiveLoc.Location>();
DatastoreService datastore = DatastoreServiceFactory.getDatastoreService();
Filter filterId = new FilterPredicate(USER_ID, Query.FilterOperator.EQUAL,user_id);
Query q = new Query("UserLoc");
q.setFilter(filterId);
PreparedQuery pq = datastore.prepare(q);
for(Entity result: pq.asIterable()){
double latitude = (double) result.getProperty(USER_LATITUDE);
double longitude = (double) result.getProperty(USER_LONGITUDE);
locations.add(Location.newInstance(latitude, longitude));
}
Type type = new TypeToken<ArrayList<Location>>() {}.getType();
Gson gson = new Gson();
String json = gson.toJson(locations,type);
return json;
}static class Location {
double latitude;
double longitude;
public Location(double latitude,double longitude){
this.latitude = latitude;
this.longitude = longitude;
}
public double getLatitude() {
return latitude;
}
public double getLongitude() {
return longitude;
}
public static Location newInstance(double latitude,double longitude){
return new Location(latitude, longitude);
}
}
}
Client Side
class ClientAsyncReceiveLoc extends AsyncTask<String,Void,String> {
//This ASYNCTASK class created different from ClientAsync class because in that class,
//locations(double) values are processed.
Activity activity;
//constructor.
public ClientAsyncReceiveLoc(Activity activity) {
this.activity = activity;
}
@Override
protected String doInBackground(String... user_id) {
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost("https://application-id.appspot.com/" + MainActivity.OPERATION_RECEIVE_LOC);
List<NameValuePair> nameValuePairs = new ArrayList<>(1);
nameValuePairs.add(new BasicNameValuePair(User.USER_ID, user_id[0]));
try {
httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpClient.execute(httpPost);
Log.i("Connection Response Code",String.valueOf(response.getStatusLine().getStatusCode()));
if (response.getStatusLine().getStatusCode() == 200) {
HttpEntity entity = response.getEntity();
return EntityUtils.toString(entity);
}
return "Error : " + response
.getStatusLine()
.getStatusCode() + " " + response
.getStatusLine().getReasonPhrase();
} catch (MalformedURLException e) {
return e.getMessage();
} catch (UnsupportedEncodingException e) {
return e.getMessage();
} catch (IOException e) {
return e.getMessage();
}
}
@Override
protected void onPostExecute(String jsonResponse) {
//super.onPostExecute(s);
Log.i("RECEIVED",jsonResponse);
}
}
While I am adding to GSON external library to my project , I just did step which is RightClickProject>Build Path>Configure Build Path(Libraries Tab)->Add External JARs steps and I forgot these instructions place it in the war/WEB-INF/lib folder of your google web project that's why , when I want to receive datas thanks to gson from serverside project , I got the 500 Internal Server Error as a response message. According to this, I suggest everybody who got these problem , be careful while adding any external library to your project.
Link which is help to me to solve problem is LINK .