WCF Service support file jsdebug fails to load - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T19:28:19Z http://stackoverflow.com/feeds/question/59181 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/59181/wcf-service-support-file-jsdebug-fails-to-load 0 WCF Service support file jsdebug fails to load rams 2008-09-12T14:53:19Z 2009-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#59764 2 Answer by rams for WCF Service support file jsdebug fails to load rams 2008-09-12T19:01:57Z 2008-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>&lt;services&gt; &lt;service name="MyService"&gt; &lt;endpoint address="" behaviorConfiguration="MyServiceAspNetAjaxBehavior" binding="webHttpBinding" bindingConfiguration="webBinding" contract="Services.MyService" /&gt; &lt;/service&gt; &lt;/services&gt; &lt;bindings&gt; &lt;webHttpBinding&gt; &lt;binding name="webBinding"&gt; &lt;security mode="Transport"&gt; &lt;/security&gt; &lt;/binding&gt; &lt;/webHttpBinding&gt; &lt;/bindings&gt; </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#783356 0 Answer by pabben for WCF Service support file jsdebug fails to load pabben 2009-04-23T20:17:23Z 2009-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#1473590 0 Answer by unknown (google) for WCF Service support file jsdebug fails to load unknown (google) 2009-09-24T19:04:27Z 2009-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#1763987 0 Answer by Ed for WCF Service support file jsdebug fails to load Ed 2009-11-19T15:13:48Z 2009-11-19T15:13:48Z <p>Wow, thanks for that solution--it helped greatly!</p>