Lightwave
10-14-2011, 02:03 AM
Have been reading up a bit on REST (Representatable State Transfer) and not unsurprisingly I'm struggling to identify what it actually means.
Let me explain
Recently I built a planning application system that while showing most of its information through access has links to the online planning application record system.
These links are created when the web page is accessed simply by concatenating a standard url string with the string of the planning application number. It works really well with minimal upkeep with the planning application working like a key between the access database and the online web page.
In this way the online form very much becomes a subform of the database.
I'm curious is this what REST is??
Is the online page I'm linking to effectively adhering to the principles of REST
All the reading seems to be particularly verbose when talking about something which I suspect is actually quite simple.
Another analogy to Database Design would be where you are linking to files on your computer. You could store the directory for each file individually in a separate field in a "File Table" alternatively you restrict file storage to one single directory and store a single file directory parameter and join it to the unique filename when the users needs the file.
In this analogy I'm inclined to believe that the second method could be said to be RESTful.
Can anyone with more knowledge than me enlighten me to whether I'm correct or not? Thanks
Let me explain
Recently I built a planning application system that while showing most of its information through access has links to the online planning application record system.
These links are created when the web page is accessed simply by concatenating a standard url string with the string of the planning application number. It works really well with minimal upkeep with the planning application working like a key between the access database and the online web page.
In this way the online form very much becomes a subform of the database.
I'm curious is this what REST is??
Is the online page I'm linking to effectively adhering to the principles of REST
All the reading seems to be particularly verbose when talking about something which I suspect is actually quite simple.
Another analogy to Database Design would be where you are linking to files on your computer. You could store the directory for each file individually in a separate field in a "File Table" alternatively you restrict file storage to one single directory and store a single file directory parameter and join it to the unique filename when the users needs the file.
In this analogy I'm inclined to believe that the second method could be said to be RESTful.
Can anyone with more knowledge than me enlighten me to whether I'm correct or not? Thanks