2
votes
In which layer are you putting your REST api?
It really is relative to what you mean workflow.
Hypermedia as the engine of application state will give you a directed graph of states/resources. It is not necessary that these graphs form …
1
vote
What authentication to pick for the cross-platform WCF service?
Since you mention REST, i assume over HTTP, you could look at HTTP Digest Authentication.
However, keep in mind that XML-RPC is not RESTful. If you are going the way of WS/RPC, you …
0
votes
How do you implement resource “edit” forms in a RESTful way?
Obviously there are many different alternatives you can use. A good solution is provided at the microformats wiki and has also be …
0
votes
Isn’t resource-oriented really object-oriented?
Objects bundle state and function together. Resource-orientation is about explicitly modeling state(data), limiting function to predefined verbs with universal semantics (In the case of HTTP, GET/P …
