I have designed an app that transfers an image over to a server by connecting through the GPRS/WAP connection.
When I try the app in the emulator, the image is sent correctly and the server sends...
Type: Posts; User: girish3110; Keyword(s):
I have designed an app that transfers an image over to a server by connecting through the GPRS/WAP connection.
When I try the app in the emulator, the image is sent correctly and the server sends...
Hi! I'm trying to lookup for nearby BT devices from J2ME. I'm using the Bluecove BT Stack.
When I try the following piece of code (which is not J2ME), it works.
import java.io.IOException;...
I've made it work... The picture and text data is sent together... Here is the edited part:
String message1 = "";
message1 +=...
Yes, I want to send several data...in addition to the picture...
What I want to do is used here:
http://wiki.forum.nokia.com/index.php/HTTP_Post_multipart_file_upload_with_J2ME
In the above,...
I've been able to make a version I got from SE's site work successfully. :)
...
private final String FILE = "/image.png";
private final String URL = "http://localhost:80/post.php";...
Ok... Thanks! In case there are other problems, I'll return to you...
Hello! I've implemented a small MIDlet that takes a picture. I would like to send it over a server by using HTTP POST. Obviously, the raw data is as byte[]. But I would like to know how do I set the...
I have checked these, but to no avail. And I am using PHP for the server part, not Tomcat/ Servlet. Well, has anyone been able to use the code given in the Wiki? :S Can you try using the code I've...
Hi! I am trying the sample code found here. The HttpMultipartRequest class is the same, while the MIDlet being used for testing is as follows:
import javax.microedition.midlet.*;
import...