Skip to content Skip to sidebar Skip to footer

How To Send Data To Server Using Android By Http Post Method?

I am trying to send data from android phone to my server using post method server: written in JSP database : JDO the code for http post,jsp file and java code is as shown publi

Solution 1:

Does the form by itself work fine? The form is using GET, not POST, and I imagine your java code for JDO is looking at GET data, not POST. So either modify the form and the java code for JDO to use POST or modify the Android code to use GET.


Post a Comment for "How To Send Data To Server Using Android By Http Post Method?"