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.

I am creating a Web Service to handle request from Android application using POST method. Here is my controller:

[AcceptVerbs(HttpVerbs.Post)]
public JsonResult Verify(String formCollection) {
...
}

By using this method, I didn't get any parameters in formCollection. Please help me!

Thanks!

share|improve this question
4  
Need to see your android code. – Joe Mar 6 '12 at 4:57
How are you posting from your android app? – gideon Mar 6 '12 at 4:57
Does the code posted work with anything else (such as a test harness)? – M.Babcock Mar 6 '12 at 5:02
Actually, android now is net yet implement, but i'm testing with POSTER (add on tool on Firefox) to do POST method. – Leap Bun Mar 6 '12 at 5:03
@M.Babcock It works with posted by html form. – Leap Bun Mar 6 '12 at 5:10
show 2 more comments

1 Answer

I assume this is what you are looking for

stackoverflow.com/questions/564289/read-post-data-submitted-to-asp-net-form

share|improve this answer
It's still null. – Leap Bun Mar 6 '12 at 6:38
Then you must be posting the data incorrectly. I've used it before to catch data posted from a java applet . – sjums Mar 6 '12 at 6:40
So, What is the parameter of this action? – Leap Bun Mar 6 '12 at 6:54

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.