Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.svc handler for IIS Server

While configuring the SQL Server 2012 Master Data Services, I am having following problem

The required .svc handler mappings are not installed in IIS.

What I want to do is that, I want to query my database using a URL so that I can retrieve data directly using the URL it self just like we can store the querystring parameters into SQL Server

How do I deal with it, I followed several documents but not any ideas.

like image 654
SPandya Avatar asked Dec 25 '22 18:12

SPandya


1 Answers

To fix this issue, open a command prompt and go to the .NET directory

(for example %windir%\Microsoft.NET\Framework64\v4.0.30319).

Run the command: aspnet_regiis –i

For further details check:SVC Handler mapping error in MDS Configuration Manager

like image 69
Sumeet Avatar answered Dec 31 '22 02:12

Sumeet