You are not logged in.
Pages: 1
Is there any way to respond custom URL requests like "domain.com/one/two/three/four/" ?
Offline
For method-based services, you have access to the whole URI by using the supplied context parameter.
With your corresponding request:
- 'one' will be the root model
- 'two' will be the method name
- 'three/four' will be available from the supplied context parameter.
So the method would be able to handle this URI.
Offline
Pages: 1