jkanschik / node-eip

Implementation of the Enterprise Integration Patterns (EIP) for node.js
5 stars 1 forks source link

Rest Service #11

Open jkanschik opened 12 years ago

jkanschik commented 12 years ago

Configure a Rest event producer, i.e. the input of a route.

How to create a response? In camel, the response is always the event at the end of the route.

Use restify?

How to work with different routes which listen on the same server/port?

eip.rest.get("...").process(...); eip.rest.put("/rest/entity/[param]").log();