REST SDK Design As it is with networks, design is a very crucial part of programming. I won’t pretend to be an expert in that field and merely present the way I’ve built REST SDK. Fortunately, a lot of design will mimic the objects and their relationship on the server side. I’ll slightly enhance it to improve code re-use and portability. Here are the basic objects: RestServer - implements basic application-agnostic HTTP CRUD logic UnlServer - an extension of a RestServer with specific a...