I have a simple ASP.NET site making a call to a WCF service. The call works in Visual Studio 2010 (both sites running under Cassini using basic HTTP binding). Moving the same thing to XP , running the web site page (which makes a simple call to the WCF service) makes the web server throw a "500" error.
There is nothing in the Event Log. Tracing is activated for the WCF service and everything looks normal except for a Warning-level message "Configuration evaluation context was not found." at the Open ServiceHost activity.
On the XP machine, there is just a single web site running as low IIS-in process with ASP.NET 4.0 set, also each Virtual Directory is set for ASP.NET 4.0, only anonymous auth is set on both vdirs (no Windows).
The web.config on the web site is set with Authentication set to "None" and identity impersonate is set to "false" as well.
I want the WCF service to be completely wide-open for this exercise, I just need it to take any call and return a result.
What am I missing?
Thanks.