The following is my Multipart class which makes a request to the Servlet on the server which is goiing to save the image on the server:
public class ClientMultipartFormPost {
public static void main(String[] args) throws Exception {
HttpClient httpclient = new DefaultHttpClient();
try {
HttpPost httppost = new HttpPost("http://localhost:8080/M-Admin_1.0_Web_Module/ReceiveScreenShotServlet");
FileBody bin = new FileBody(new File("C:\\temp\\Ideas.txt"));
StringBody comment = new StringBody("A binary file of some kind");
MultipartEntity reqEntity = new MultipartEntity();
reqEntity.addPart("bin", bin);
reqEntity.addPart("comment", comment);
httppost.setEntity(reqEntity);
System.out.println("executing request " + httppost.getRequestLine());
HttpResponse response = httpclient.execute(httppost);
HttpEntity resEntity = response.getEntity();
System.out.println("----------------------------------------");
System.out.println(response.getStatusLine());
if (resEntity != null) {
System.out.println("Response content length: " + resEntity.getContentLength());
System.out.println(EntityUtils.toString(resEntity));
}
EntityUtils.consume(resEntity);
} finally {
try { httpclient.getConnectionManager().shutdown(); } catch (Exception ignore) {}
}
}
}
The following is my servlet that is going to handle the incoming request...I have made use of fileupload :
try {
boolean isMultipart = ServletFileUpload.isMultipartContent(request);
// Create a factory for disk-based file items
FileItemFactory factory = new DiskFileItemFactory();
// Create a new file upload handler
ServletFileUpload upload = new ServletFileUpload(factory);
// Parse the request
List<FileItem> items = null;
try {
items = upload.parseRequest(request);
}catch(Exception e){out.print("123");}
// Process the uploaded items
Iterator iter = items.iterator();
while (iter.hasNext()) {
FileItem item = (FileItem) iter.next();
if (item.isFormField()) {
//processFormField(item);
} else {
//processUploadedFile(item);
String fieldName = item.getFieldName();
String fileName = item.getName();
String contentType = item.getContentType();
boolean isInMemory = item.isInMemory();
long sizeInBytes = item.getSize();
//write to file
File uploadedFile = new File("C:\\temp\\image.txt");
item.write(uploadedFile);
out.println("Sucess!!!");
}
}
}
The following is the response i get from server:
executing request POST http://localhost:8080/M-Admin_1.0_Web_Module
/ReceiveScreenShotServlet HTTP/1.1
----------------------------------------
HTTP/1.1 200 OK
Response content length: 0
As far as i know the problem starts after the following line in the servlet:
items = upload.parseRequest(request);
Any Solutions????
out.print("123");from thecatchblock, which tells you nothing and replace it with ae.printStackTrace()so you can actually see what the problem is at that point! – no.good.at.coding Apr 14 '11 at 1:51