Hi Peers,What is REST architecture? How is it related to Interwoven?Thanking you in advance.
Hi,REST (representational state transfer): is an approach for getting information content from a Web site by reading a designated Web page that contains an XML file that describes and includes the desired content.Basically you can say REST-style architectures consist of clients and servers. Clients initiate requests to servers and servers process requests and return appropriate responses. you can get several documents if you google it.HTH.
http://www.google.com/search?q=Rest
robot -REST based queries are used when you have an application that needs data from the IDOL repository that LSCS relies on. From your brief, rather un educated question, it appears like you are more intrigued by the jargon than actually solving the problem. Yea, call me biased.What is the real problem you are trying to solve?
No Sir you are not biased, you are only 40 short of platinum mark and reply me and then it will only be 39.Thanks santosh,heman and crsb for your time.Thanks.
REST and SOAP are not "Architectures". You can not compare them directly.Both are, for the lack of better term "approaches" to WEB-based Client/Server communication.At it's core SOAP is a protocol for exchanging XML-based messages, nothing more. Togetherwith the collection of "WS" Tools like WSDL, WS-Security, WS-This and WS-that it providesscalable Transport framework that *may* support distributed environments, has someerror handling etc. As you can see, you will need some tools to develop, integrate and run it.REST is not even a protocol. It's a fancy name for a hodge-podge collection of HTTP 1 methods like get, post, delete and so on. Sure enough, all that is tied to HTTP transport. It is much simpler than SOAP, does not require that many development and run-time tools etc. The disadvantage of courseis that it is as good as your code. There is nothing built-in for scalability, security, error processing,you name it.