Hi all,
How can we submit a form via MIDlet?
like in Shopping cart, we submit form to PayPal with some hidden variables. How is this possible with Mobile application.
I am using Nokia 6131 SDK for NFC.
Hi all,
How can we submit a form via MIDlet?
like in Shopping cart, we submit form to PayPal with some hidden variables. How is this possible with Mobile application.
I am using Nokia 6131 SDK for NFC.
If the J2ME APIs do not allow for HTTP POST requests (I don't know if they do), you can look up the HTTP protocol specs and do your own HTTP over TCP/IP sockets.
The HTTP RFCs you can find through this index: http://www.ietf.org/iesg/1rfc_index.txt
Individual RFCs through this page: http://www.ietf.org/rfc.html
Relevant RFCs would/could be, for example, these: 1945, 2068, 2616, 2660, 3310, 4169.
E.g., RFC2616: http://www.ietf.org/rfc/rfc2616.txt?number=2616
Hi,
You can do this HTTP Connection , After opening the HTTP connection set the request method as "POST" and write your parameter in the output stream. It will Work