Hello,
I have a main dispatcher (that extends%CSP.REST) that contains:
<Routes>
<Map Prefix="/v([0-9]{1,2})/news" Forward="API.Dispatch.news"/>
</Routes>
And I have the sub-dispatcher that contains:
<Routes>
<Route Url="/:id" Method="GET" Call="NewsGetItem"/>
</Routes>
If I try to access this route:
https://mydomain.com/mobile/api/v4/news/123
It doesn't work (404).
Does anybody know where the problem might come from ?