I am trying to develop ASP.NET web application and also Android UI for the same application. I am new to android. I developed a simple screen that has a text box and button. Type something and clicking the button, saves the text in the database.
Now I am moving to complex functions. I need to implement a registration form. I will put more text boxes on the mobile screen. So I am planning to pass them to web-service in an object.
I created a web-service in C#, the method register takes an object Customer as parameter. Customer class has several fields like name, email, phone etc.
Please guide/ suggest an example to implement the functionality of passing object from androind to C# webservice and access the returned object values.
I am using KSoap2 for Android webservices. Thanks