Calling .Net web service from Android Device

Norman Bentley

I am using Android Studio and Visual Studio (.NET MVC) to develop an application where an android device may store/retrieve/process (login /registration forms etc) data by calling methods in a .NET application.

I want to know the best way to achieve this.
Should I create a .NET Web service on my .NET side? (WCF)

This is my first time creating a web service layer so I would really appreciate it if someone could provide me an article on how to achieve this. I found a nice one below:

http://hintdesk.com/how-to-call-asp-net-web-api-service-from-android/

Thanks guys, just checking if I'm on the right track using web services for my application.

Udi Idan

If you want to use .NET, then I would go with Wcf/Web api, depends on what you need.

The basics of building an HTTP service using ASP.NET Web API

Configure your Service to be restful, and pass the data using JSON so it would be easy to consume using libraries such as Retrofit or Volley. You can then use a library like Gson to parse the response.

Another upside is that if you later want to consume the data from other platforms (iPhone or web/mobile web) it would be very easy.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Calling a web service from android - NullPointerException

From Dev

Calling a JSON based ASP.NET web-service from an Android phone

From Dev

Calling a JSON based ASP.NET web-service from an Android phone

From Dev

How to call asp.net Web API from android device

From Dev

Calling Javascript from service android

From Dev

Calling C# asp.net web service or web method from email without opening browser

From Dev

Calling C# asp.net web service or web method from email without opening browser

From Dev

Html5 app with web service calling works on emulator but not on device

From Dev

Html5 app with web service calling works on emulator but not on device

From Dev

Handle slow response in web service calling in android

From Dev

Calling web service using Async task in android?

From Dev

Send Image from .NET Web API 2 Service to Android Retrofit

From Dev

Accessing ASP.NET web service from android

From Dev

Calling SSRS 2008 web service from Java

From Dev

Calling Web Service from jQuery .ajax() issue

From Dev

Calling web service from Windows Form and jQuery

From Dev

Calling C# Web Service from JQuery

From Dev

Calling a method of the ASPX page from Web Service

From Dev

Calling web service from outlook add in

From Dev

Getting java.io.IoException while calling .net web service from my java code

From Dev

POST method calling from service Angular 6 to the REST using web api in asp.net mvc

From Dev

Calling a messenger bound service from android Library

From Dev

calling the wcf service POST from the android

From Dev

HTTP status 404 error while calling WCF service from ASP.NET client after web service migration from ASP.NET to WCF

From Dev

Ksoap2 : Calling DateTime datatype on .NET Web Service

From Dev

calling asp.net parameterized web service method form php

From Dev

calling asp.net parameterized web service method form php

From Dev

Asp.net MVC calling Login web service

From Dev

Error with the google map calling direction api from android device

Related Related

  1. 1

    Calling a web service from android - NullPointerException

  2. 2

    Calling a JSON based ASP.NET web-service from an Android phone

  3. 3

    Calling a JSON based ASP.NET web-service from an Android phone

  4. 4

    How to call asp.net Web API from android device

  5. 5

    Calling Javascript from service android

  6. 6

    Calling C# asp.net web service or web method from email without opening browser

  7. 7

    Calling C# asp.net web service or web method from email without opening browser

  8. 8

    Html5 app with web service calling works on emulator but not on device

  9. 9

    Html5 app with web service calling works on emulator but not on device

  10. 10

    Handle slow response in web service calling in android

  11. 11

    Calling web service using Async task in android?

  12. 12

    Send Image from .NET Web API 2 Service to Android Retrofit

  13. 13

    Accessing ASP.NET web service from android

  14. 14

    Calling SSRS 2008 web service from Java

  15. 15

    Calling Web Service from jQuery .ajax() issue

  16. 16

    Calling web service from Windows Form and jQuery

  17. 17

    Calling C# Web Service from JQuery

  18. 18

    Calling a method of the ASPX page from Web Service

  19. 19

    Calling web service from outlook add in

  20. 20

    Getting java.io.IoException while calling .net web service from my java code

  21. 21

    POST method calling from service Angular 6 to the REST using web api in asp.net mvc

  22. 22

    Calling a messenger bound service from android Library

  23. 23

    calling the wcf service POST from the android

  24. 24

    HTTP status 404 error while calling WCF service from ASP.NET client after web service migration from ASP.NET to WCF

  25. 25

    Ksoap2 : Calling DateTime datatype on .NET Web Service

  26. 26

    calling asp.net parameterized web service method form php

  27. 27

    calling asp.net parameterized web service method form php

  28. 28

    Asp.net MVC calling Login web service

  29. 29

    Error with the google map calling direction api from android device

HotTag

Archive