WCF Service support file jsdebug fails to load - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T19:28:19Zhttp://stackoverflow.com/feeds/question/59181http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/59181/wcf-service-support-file-jsdebug-fails-to-load0WCF Service support file jsdebug fails to loadrams2008-09-12T14:53:19Z2009-11-19T15:13:48Z
<p>I have a WCF service that gets called from client side JavaScript. The call fails with a Service is null JavaScript error. WebDevelopment helper trace shows that the calls to load the jsdebug support file results in a 404 (file not found) error. </p>
<p>Restarting IIS or clearing out the Temp ASP.Net files or setting batch="false" on the compilation tag in web.config does not resolve the problem</p>
<p>From the browser </p>
<p>https://Myserver/MyApp/Services/MyService.svc displays the service metadata</p>
<p>however </p>
<p>https://Myserver/MyApp/Services/MyService.svc/jsdebug results in a 404.</p>
<p>The issue seems to be with the https protocol. With http /jsdebug downloads the supporting JS file.</p>
<p>Any ideas?</p>
<p>TIA</p>
http://stackoverflow.com/questions/59181/wcf-service-support-file-jsdebug-fails-to-load/59764#597642Answer by rams for WCF Service support file jsdebug fails to loadrams2008-09-12T19:01:57Z2008-09-16T17:48:44Z<p>Figured it out!</p>
<p>Here is the services configuration section from web.config</p>
<p>Look at the bindingConfiguration attribute on the endpoint. The value "webBinding" points to the binding name="webBinding" tag in the bindings and that is what tells the service to use Transport level security it HTTPS. In my case the attribute value was empty causing the webservice request to the /js or /jsdebug file over HTTPS to fail and throw a 404 error.</p>
<pre><code><services>
<service name="MyService">
<endpoint address="" behaviorConfiguration="MyServiceAspNetAjaxBehavior" binding="webHttpBinding" bindingConfiguration="webBinding" contract="Services.MyService" />
</service>
</services>
<bindings>
<webHttpBinding>
<binding name="webBinding">
<security mode="Transport">
</security>
</binding>
</webHttpBinding>
</bindings>
</code></pre>
<p>Note that the bindingConfiguration attribute should be empty ("") if the service is accessed via http instead of https (when testing on local machine with no certs)</p>
<p>Hope this helps someone.</p>
http://stackoverflow.com/questions/59181/wcf-service-support-file-jsdebug-fails-to-load/783356#7833560Answer by pabben for WCF Service support file jsdebug fails to loadpabben2009-04-23T20:17:23Z2009-04-23T20:17:23Z<p>I´m having this same issue but without the https (only http).
Any ideas?</p>
http://stackoverflow.com/questions/59181/wcf-service-support-file-jsdebug-fails-to-load/1473590#14735900Answer by unknown (google) for WCF Service support file jsdebug fails to loadunknown (google)2009-09-24T19:04:27Z2009-09-24T19:04:27Z<p>duno where my reply went. but</p>
<p>same boat., no bindingConfiguration defined. ,and not using https</p>
http://stackoverflow.com/questions/59181/wcf-service-support-file-jsdebug-fails-to-load/1763987#17639870Answer by Ed for WCF Service support file jsdebug fails to loadEd2009-11-19T15:13:48Z2009-11-19T15:13:48Z<p>Wow, thanks for that solution--it helped greatly!</p>