Im migrating my code to a core application.
So far so good. i got it all running, but there is one problem.
I had a ui (with razor) and using the CatchAllHandlers
. And for the api i used HandlerFactoryPath
to prefix the urls.
Now i have 2 problems:
- It seems
CatchAllHandlers
isn't used? - Route is only processed if route starts with HandlerFactoryPath?
The second issue is fixable but how would i go around the first one?
Do i make my own middle-ware or does servicestack support other ways of doing this?