I'm trying to add NancyFX to an existing asp.net website. I've written a small test assembly and put it in my asp.net site's "Bin" folder then registered NancyFX in my web.config as follows:
<handlers>
<add name="Nancy" verb="*" type="Nancy.Hosting.Aspnet.NancyHttpRequestHandler" path="API/*"/>
</handlers>
When I hit http://localhost/API it behaves as expected. If I hit http://localhost/API/UserInfo/ it also behaves as expected. But if I hit http://localhost/API/UserInfo/Commissions/ it does NOT. While debugging the httphandler itself, I see that it's calling IHTTPHandler.ProcessRequest() as expected. But the request object's paths only go one level deep-- they'll show "/API/UserInfo/" for every request, no matter how deep my URL actually is. The RawURL is correct, but the Path variables are always no deeper than "/API/UserInfo".
Does this have something to do with how I'm registering the handler, or am I missing something else?