I'm currently working on an mvc project meant to keep scores for students on certain sporting events, we are using a context class to create database tables code first into an existing database, the writing and reading in mvc works completely, we have a certain actionresult that returns a list of results that a student got, working with a studentId.
For this project we are also building an android app in which a student can logg on and view a list of his results (which the actionresult in mvc returns)
In our database we also have tables that work with mvc4's simple membership provider.
I was wondering what the best way was to connect our android application with our mvc project to acces the actionresult that returns the list.
I've been reading about an asp.net services project which could act as a link between our mc project and our android project, but I was wondering if there was an easier way to do this
also I was wondering if it was possible to log in using the credentials from mvc4's simple membership provider on our android app