Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

there is a webmethod for insertion,I want to invoke it from the help of interface and button clickevent.How can I do this Please help me

share|improve this question
Please explain more... Cant understand what you are saying – sHaH.. Jul 28 '11 at 5:11

1 Answer

For that you have to make a webService. and you have to make a script that listen your request and give you a proper response.

If you have a webservice then you can use HTTPPOST method and you can upload data through NameValuePair and get response from webservice.

You can pass action to server like

nameValuePairs.add(new BasicNameValuePair("action", "INSERT"));

for information about HTTPPOST see the link below

http://stackoverflow.com/questions/6854243/httpresponse-to-string-android/6854288#6854288
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.