Introducing
Your new presentation assistant.
Refine, enhance, and tailor your content, source relevant images, and edit visuals quicker than ever before.
Trending searches
address
distributed hypermedia system
network-based application
Software architecture = {Elements, Constraints, Rationale}
style : architecture
patten : design
bring
Elements: data, process, connector
Constraints: configuring and organizing elements
Rationale: reasons behind the decisions
Christopher Alexander. The Timeless Way of Building. Oxford University Press, New York, 1979.
Dewayne E. Perry and Alexander L. Wolf. Foundations for the study of software architecture. SIGSOFT Softw. Eng. Notes, 17(4):40--52, 1992.
address
Common characteristics
of design problems
Element types and roles
Common constrains
Common Rationale
Dong Liu
FRIB, MSU
bring
Structure
Behavior
Implementation
Representational State Transfer
Architectural style
RPC
http://martinfowler.com/articles/richardsonMaturityModel.html
World Wide Web
Design-by-buzzword is a common occurrence. At least some of this behavior within the software industry is due to a lack of understanding of why a given set of architectural constraints is useful.
Roy Fielding
Architectural Styles and the Design
of Network-based Software Architectures
RESTful
R. Fielding
to slash or not to slash
HTTP
/requests/
/requests/:id
/requests
/request
/cablerequest
GET /requests/
Accept: application/json
GET /reqeusts/json
GET /reqeusts.json
HTTP content negotiation was one of those "nice in theory" protocol additions that, in practice, didn't work out.
...
Many people seem to use HTTP content negotiation as a motivation for adding 'version' parameters to MIME types or registering new MIME types, with the hopes that the MIME types or parameters would be useful in HTTP content negotiation, and we should warn them that it isn't really productive to do so. That's why it might be useful advice to add to the guidelines for registering MIME types, should those ever be updated.
See http://www.alvestrand.no/pipermail/ietf-types/2006-April/001707.html
It is also not clear how the agent-driven content negotiation will work with caching
GET /requests/
Request:
Accept: text/html, ...
/requests/
GET
POST
the list of requests
Create a new request
!==
Response:
200
request #1 link
request #2 link
...
more requests link
POST /resources/
representation of the new resource
201 Created
Location: http://host:port/reources/resource_id
202 Accepted
Check /resources/ later
PUT /resources/resource_id
representation of the new resource
201 Created
Location: http://host/reources/resource_id
409 Conflict
/reources/resource_id was already there and cannot be modified
204 No Content
301 Moved Permanently
Location: http://host/reources/other_resource_id
Test the resource with a popular browser
More in HTTP specification RFC 2616
request({
url: 'http://third/party/service',
timeout: 30 * 1000,
...
}, function (err, response, resBody) {
if (err) {
return res.json(503, ...);
}
...
});
http://www.w3.org/TR/2004/REC-webarch-20041215/