MVC form application access from mobile device

151 views Asked by At

I have this MVC web application that generates and return XML file as a result. I also have mobile application that gets xml file from MVC web application. I have simplemembership as authentication for mvc web app and I want to use it with my mobile application without using web browser. How do I approach to implement such process?

1

There are 1 answers

0
Kevin Junghans On

One approach is to use basic authentication where you send the credentials in the header of the HTML request. You need to use SSL/HTTPS on the server to make this secure. Here is an article on how to use basic authentication with SimpleMembership.