Quantcast
Channel: Apache Timeline
Viewing all articles
Browse latest Browse all 5648

REST DSL Hello World Not working

$
0
0
Hi,

The following hello word example provided in the documentation does not
seem to work well:

<rest path="/say">
<get uri="/hello">
<to uri="direct:hello"/>
</get>
<get uri="/bye" consumes="application/json">
<to uri="direct:bye"/>
</get>
<post uri="/bye">
<to uri="mock:update"/>
</post>
</rest>

Calling GET /say/bye returns "Error 405 Method Not Allowed". My guess is
that the REST implementation does not allow methods with the exact same
path, even if the verb is different. This was already the case with the
RESTLET implementation.

Would anybody be able to confirm?

Thanks a lot.
Max

Viewing all articles
Browse latest Browse all 5648

Trending Articles