Take A Load Off: Use RESTful Web Services in uniPaaS
What are RESTful web services?
- the URL address for the web service (you may call it a URI if you want, it is basically the same thing). The URL is the equivalent of a noun.
 - the supported Internet media data type of the web service.
 - the set of HTTP operations supported by the web service. Think of this as the verb.
 
HTTPCall runs an HTTP request and returns the results. You   can consume REST services by using HTTPCall with any and all verbs. This   function can be used instead of  the HTTPGet and HTTPPost functions, thereby simplifying implementation   of RESTful Web Services in uniPaaS. The syntax within uniPaaS for the use of HTTPCall is as   follows:  |   ||
HTTPCall   (verb, service URL, message, [header1], [header2], …)  |    ||
The “verb” is   a string indicating the method. The options include GET, POST, PUT, DELETE,   and HEAD. You can GET a list or a specific member of a collection. POST is   like an append operation in that it adds a member to a collection. PUT   replaces an entire collection or a specified member of the collection. DELETE   erases the entire collection or a specific member of the collection. HEAD is   a header that provides additional header information.  The “service URL” is the string that represents the HTTP address where you will   retrieve the HTTP request. The HTTPCall function can easily pass a user name   and password to the service URL for a secure, rights-based approach to Web   Services. For example, when a uniPaaS client is accessing a web server that   requires a user name and password, the URL should be   HTTP://User:Password@[URL]. uniPaaS   will also support secret names by following this approach:  HTTP://%user_secretname%:%pass_secretname%@[URL] Obviously, the “message” is a string with the text of the message. There is   no limitation on the message content. Messages are self-descriptive and   stateless.  The use of “headers” is strictly optional and you may include as many as needed. Each   header may contain a string that provides additional header information as   requested.   |    ||
As   one might expect, the HTTPCall returns a BLOB containing whatever information   results from the HTTP request. If the function fails to make the connection,   a blank value is returned. You can get the response headers using the   HTTPLastHeader function.  Magic   Software provides both Online and Rich Client sample programs that detail the   use of the HTTPCall function.  Look for   sample programs  EL23 and REL23 to get   an idea of how this function can be implemented.  One   of the traditional disadvantages of REST is that it doesn’t do well with   complex data architectures such as those of relational databases. In this   regard, using uniPaaS allows you to bridge the gap between REST and traditional   databases. With uniPaaS, information is exchanged and represented using   RESTful Web Services while at the same time you can store enterprise data in   industry standard databases. REST advocates will simply say databases are too   complex and should change to conform to the way the Web works. With uniPaaS,   you avoid that argument altogether. It just works.   |    ||
