views:

429

answers:

1

I need to deploy an old style .asmx asp.net web service (not WCF) on a windows 7 machine for test reasons. However it seems that just deploying it on a virtual directory or new web site on IIS won't cut like it used to back in xp.

What should I do? I need to test the service locally prior to deploying it, and so far it's giving me a hard time.

Any help will be greatly appreciated Thanks

+4  A: 

Deploying to a Virtual Directory should work just like it did in XP...with one minor change.

The default behavior in IIS7 is to use 'Integrated' Managed Pipeline Mode for your Application Pools. More than likely, you just need to change that to 'Classic' Managed Pipeline Mode (or switch your Web Service over to use the built-in 'Classic ASP.NET' App Pool).

Justin Niessner
+1 good catch!!
marc_s
Excellent! Thanks a lot! Wow got my answer in minutes!
Nikos Steiakakis
+1 thanks for the gotcha!
Ralph Willgoss