Hi all,
I've a RESP API service in a Business Service to server different methods
I've created the route with the name of the method, each one has been created in lowercase
XData UrlMap [ XMLNamespace = "http://www.intersystems.com/urlmap" ]
{
<Routes>
<Route Url="/user" Method="POST" Call="User"/>
<Route Url="/emailactivation" Method="POST" Call="EmailActivation" />
<Route Url="/login" Method="POST" Call="Login"/>
</Routes>
}
But only there is a response if the call is used in lowercase
