Roshana
Roshana

Reputation: 428

Accessing WCF webservice using browser

How to access WCF webservice using browser? Currently its just implemented as normal webservice. Please let me know how to set webConfig settings as well.

Upvotes: 2

Views: 1786

Answers (1)

Mohammed Swillam
Mohammed Swillam

Reputation: 9242

In order to access and test your WCF service from within your browser, you will need to make it RESTFUL webservice.

here are a couple of resources that will help:

http://msdn.microsoft.com/en-us/library/dd203052.aspx http://www.codeproject.com/Articles/344512/Building-and-Testing-WCF-RESTful-services

also checkout this nice article that sums the needs and various aspects of building RESTFUL web services http://predic8.com/rest-webservices.htm

Upvotes: 2

Related Questions