AndyUK
AndyUK

Reputation: 3993

HTTP Error 403.14 on trying out simple .NET web service

A possible duplicate of Deployment of .net Web-service on IIS7 error 403.14? perhaps?

A newbie to writing Web Services for .NET, I've had a go at the tutorial over at https://support.microsoft.com/en-gb/kb/308359 and added the class/methods to implement the Web Methods etc.

When I run this (the simple web service part, not the other bit to consume a web service), I get the error "The Web server is configured to not list the contents of this directory" as shown:

enter image description here

And it is IIS 8.0 Express that appears to be running:

enter image description here

Any suggestions on how to proceed from here much appreciated.

Upvotes: 1

Views: 1003

Answers (1)

JM.
JM.

Reputation: 688

If you run your web service project and are expecting the WCF Test Client to pop up but are getting the 403.14 error instead, do this ...

Try clicking on your (any) .svc.vb page in your project before running.

Upvotes: 2

Related Questions