i am trying this solution for my application: Sending images using Http Post .(first answer) At frist i had problem with eclipse not wanting to import external jars, bat when i solved that problem i got this error:
The type org.apache.james.mime4j.message.SingleBody cannot be resolved. It is indirectly referenced from required .class files
on lines:
entity.addPart(nameValuePairs.get(index).getName(), new FileBody(new File(nameValuePairs.get(index).getValue())));
and
entity.addPart(nameValuePairs.get(index).getName(), new StringBody(nameValuePairs.get(index).getValue()));
any help?