I am using this code to create an upload post request.
The only problem is that the session does not get attached to the request. How can I attach the session to this request so I can check session attributes when I process the request.
Code so far:
String urlStr = BlobstoreServiceFactory.getBlobstoreService().createUploadUrl("/upload");
URLFetchService urlFetch = URLFetchServiceFactory.getURLFetchService();
HTTPRequest req = new HTTPRequest(new URL(urlStr), HTTPMethod.POST);
String boundary = makeBoundary();
req.addHeader(new HTTPHeader("Content-Type","multipart/form-data; boundary=" + boundary));
ByteArrayOutputStream baos = new ByteArrayOutputStream();
write(baos, "--"+boundary+"\r\n");
writeParameter(baos, "id", id);
write(baos, "--"+boundary+"\r\n");
writeImage(baos, cmd, imageBytes);
write(baos, "--"+boundary+"--\r\n");
req.setPayload(baos.toByteArray());