Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>On Windows 7 you will be using IIS7. </p> <p>In Internet Information Services Manager application (found in administrative tools) click the top most node in the left hand pane which will look something like MACHINENAME (MACHINENAME\yourUsername). In the list of features double click the ISAPI and CGI Restrictions and ensure that the ASP.NET versions shown are allowed and not denied.</p> <p>To prove that WCF has been registered with IIS check in the list of features for the Modules icon, double click it and look through the list for ServiceModel-4.0.</p> <p>The web.config of your web project that hosts your Silverlight XAP should look like this (plus extras like your DB connection strings etc):</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;configuration&gt; &lt;system.webServer&gt; &lt;modules runAllManagedModulesForAllRequests="true"&gt; &lt;add name="DomainServiceModule" preCondition="managedHandler" type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /&gt; &lt;/modules&gt; &lt;validation validateIntegratedModeConfiguration="false" /&gt; &lt;/system.webServer&gt; &lt;system.serviceModel&gt; &lt;serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" /&gt; &lt;/system.serviceModel&gt; &lt;system.web&gt; &lt;compilation debug="true" targetFramework="4.0" /&gt; &lt;httpModules&gt; &lt;add name="DomainServiceModule" type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /&gt; &lt;/httpModules&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload