views:

674

answers:

2
A: 

In the global file (where global routing is configured) be sure to add a specific ignore for the svc file.

Tom Anderson
I have added: routes.IgnoreRoute("Development/SoftwareRequests.svc"); to my global.asax file, but it doesn't help.
jessicah
@Tom Anderson: Logically, your recommendation should work; but I tried the same thing as @jessicah, and it didn't seem to work. It seems like I need to do something else.
Jim G.
+1  A: 

Two problems:

  1. Anonymous Authentication needed to be enabled
  2. WCF modules weren't registered with my IIS7 installation

From this site, had to run ServiceModelReg -i from the location "C:\Windows\Microsoft.NET\Framework\v3.0\Windows Communication Foundation".

jessicah