I'm new with IIS & having a problem testing a sample XML web service.
When I go to http://localhost/Calculator/Calculator.asmx
The asmx file loads in VisualStudio.NET & I don't see the web service
run. Suggestions?
Probably your IIS isn't configured to server asp.net pages. Could you check
in the IIS management console the ISAPI-filters settings for the Websites
node? It should list ASP.NET_xxxxx (depending on the version of the .NET
Framework).
Otherwise you could use the aspnet_regiis tool:
The following command installs the ASP.NET version associated with the tool
and updates the scriptmaps of all existing ASP.NET applications. Note that
only applications that are currently scriptmapped to an earlier version of
ASP.NET are affected.
Aspnet_regiis -iMore information:
http://tinyurl.com/2cv74

Signature
Greetz,
Jan
__________________________________
Read my weblog: http://weblogs.asp.net/jan
>
> I'm new with IIS & having a problem testing a sample XML web service.
> When I go to http://localhost/Calculator/Calculator.asmx
> The asmx file loads in VisualStudio.NET & I don't see the web service
> run. Suggestions?
Greg Freeman - 20 Jan 2004 19:00 GMT
Thanks!
That fixed it
-Greg