Configured according to a tutorial (or several) and when I test by visiting servername/sqlce/sqlcesa35.dll on a browser, it won't load (it gives me a time out message). I'm working on a Windows 7 computer. This is what I've done so far:
- had SQL Server Compact tools SP1 without IIS, so uninstalled it
-installed IIS, with the following checked:
- ISAPI Extensions,
- IIS Management Console,
- IIS Metabase and IIS 6 configuration compatibility
- IIS 6 WMI compatibility
- IIS 6 management console
- installed SQL Server Compact 3.5 SP2
- ran Web Synchronization Wizard (does not require SSL, anonymous client authentication, user account is IUSR, no UNC snapshot)
What am I doing wrong?
EDIT: If it helps, these are the results to the following commands:
Windows\system32\inetsrv\appcmd.exe list config -section:system.webServer/handlers
<system.webServer>
<handlers accessPolicy="Read, Script">
<add name="ISAPI-dll" path="*.dll" verb="*" modules="IsapiModule" resourceTy
pe="File" requireAccess="Execute" allowPathInfo="true" />
<add name="TRACEVerbHandler" path="*" verb="TRACE" modules="ProtocolSupportM
odule" requireAccess="None" />
<add name="OPTIONSVerbHandler" path="*" verb="OPTIONS" modules="ProtocolSupp
ortModule" requireAccess="None" />
<add name="StaticFile" path="*" verb="*" modules="StaticFileModule,DefaultDo
cumentModule,DirectoryListingModule" resourceType="Either" requireAccess="Read"
/>
</handlers>
</system.webServer>
Windows\system32\inetsrv\appcmd.exe list config "Default web site/sqlce" -section:system.webServer/handlers
<system.webServer>
<handlers accessPolicy="Read, Execute, Script">
<add name="ISAPI-dll" path="*.dll" verb="*" modules="IsapiModule" resourceTy
pe="File" requireAccess="Execute" allowPathInfo="true" />
<add name="TRACEVerbHandler" path="*" verb="TRACE" modules="ProtocolSupportM
odule" requireAccess="None" />
<add name="OPTIONSVerbHandler" path="*" verb="OPTIONS" modules="ProtocolSupp
ortModule" requireAccess="None" />
<add name="StaticFile" path="*" verb="*" modules="StaticFileModule,DefaultDo
cumentModule,DirectoryListingModule" resourceType="Either" requireAccess="Read"
/>
</handlers>
</system.webServer>