Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Consuming WCF web service from Android application

I want to consume WCF web service from Android application. I have worked on .asmx web service but I don't know how to consume a SCF web service in Android application.

like image 495
Sujit Avatar asked Nov 18 '10 09:11

Sujit


People also ask

Can we use WCF in web application?

WCF is one of the new foundations in the Web Services world and was introduced by Microsoft. It can be hosted in a console application or in IIS and can be accessed using Console applications, WPF applications or even websites.

Is WCF service REST or SOAP?

Normally, a WCF service will use SOAP, but if you build a REST service, clients will be accessing your service with a different architectural style (calls, serialization like JSON, etc.). Exposing a WCF service with both SOAP and REST endpoints, requires just a few updates to the codebase and configuration.

Can we use WCF service in angular?

Yes you can use wcf service first I will suggest please upgrade with angular 4 as there are alots of bugs in angular 2 below are angular 4 service sample code.


1 Answers

Here is an article explaining how to consume web service with android in general

There are a couple of particulars when it comes to WCF and being interoperable with java you want to be careful about. This article series explains a great deal about it.

like image 149
Terrance Avatar answered Nov 03 '22 00:11

Terrance