ee-soa-transport-rest
v0.4.29
Published
Rest specific transport implementation.
Downloads
24
Readme
#EE-SOA-Transport-Rest
Rest specific transport implementation which converts a HTTP request to the internal request format (@see ee-soa-request)
##Behavioral Notes
The behavior of the transport has to be described a little better.
###URL Segments
###HTTP Methods
###Headers
##URL Handling - Update While path segments were only paired if the id was numeric, the new implementation supports non numerical ids. This implies some new rules for the url handling:
- Queries a resource if the amount of segments is even
- Queries a collection if the amount of segments is odd
- Segments of the path are paired together e.g.
/language/fr/event/10
results inlanguage: 'fr', event: 10
(the internal data structure is a flat list, not a dictionary).