I\'m having a problem getting ServiceStack to work with HTTPS in IIS6 and I can\'t seem to find any documentation on setting this up. Currently I have an endpoint setup like so
The problem with IIS 6 is that the IIS 6.0 request pipeline doesn't recognize a path without an ASP.NET extension e.g .aspx doesn't get passed to the ASP.NET isapi hander. So there are generally 2 options for getting this to happen so you can get ServiceStack to run on IIS 6:
Change the servicestack path in Web.Config from '*' to 'servicestack.ashx'
Add a wildcard mapping for your virtual directory to pass all unhandled requests to ASP.NET: Follow these steps to create a wildcard script map with IIS 6.0: