vote up 0 vote down star

I have deployed the WCF wervice on the IIS by creating a VirtualDirectory.

While accessing from firefox it is generating the following message:

XML Parsing Error: not well-formed
Location: http://localhost/Calculator/Service.svc
Line Number 9, Column 2:<%@ Service Class="Calculator.CalculatorService" %>
-^

What is wrong?

flag

158 questions and you've accepted just over half of them. Was there something wrong with the other answers? – Mitch Wheat Sep 23 at 12:23

1 Answer

vote up 2 vote down check

Looks like the WCF extensions aren't registered with IIS correctly and IIS is serving the raw .svc file instead of executing your service.

Make sure your Virtual Directory has ASP.NET v2.0 enabled, and then use ServiceModelReg.exe to register the WCF extensions on it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.