Tutorial by Examples

Let's make a hello world web script. Web scripts have a descriptor, a controller, and, optionally, a view. These files must follow a naming convention. This descriptor is named helloworld.get.desc.xml. <webscript> <shortname>Hello World</shortname> <description>Hello ...
The Hello World Web Script handles GET HTTP methods. But what if you want to create data on the server? For that your web script should handle POST. Here is a simple example that creates new folders in Company Home. It is invoked by making a POST call with a JSON body that looks like: {'name':'tes...

Page 1 of 1