I've buy economy windows plan on GoDaddy, choose IIS7 with classic pipeline mode and host there a simple WCF service and a .aspx page. Page works fine, but when I call test.svc the error below occurs.
it is simple restful wcf service with code in test.svc : <%@ ServiceHost Language="C#" Service="testwcf.Service1" Factory="System.ServiceModel.Activation.WebScriptServiceHostFactory"%>
and testwcf.dll in Bin directory near the .svc.
Failed to Execute URL.
Description: An
unhandled exception occurred during the execution of the current web
request. Please review the stack trace for more information about the
error and where it originated in the code.
Exception Details: System.Web.HttpException: Failed to Execute URL.
Source Error:
An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of
the exception can be identified using the exception stack trace below.
|
Stack Trace:
[HttpException (0x80004005): Failed to Execute URL.] System.Web.Hosting.ISAPIWorkerRequestInProcForIIS6.BeginExecuteUrl(String url, String method, String childHeaders, Boolean sendHeaders, Boolean addUserIndo, IntPtr token, String name, String authType, Byte[] entity, AsyncCallback cb, Object state) +2488700 System.Web.HttpResponse.BeginExecuteUrlForEntireResponse(String pathOverride, NameValueCollection requestHeaders, AsyncCallback cb, Object state) +415 System.Web.DefaultHttpHandler.BeginProcessRequest(HttpContext context, AsyncCallback callback, Object state) +252 System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +3390860 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +161
|