Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Introduction

Osyl Client needs to interact with the Sakai Server. OpenSyllabus used all the Sakai's platform services we needed, in addition of our own services.

GWT interacts with a server

RPC

RPC (Remote Procedure Call) is the communication's workhorse of GWT. GWT offers an easy-to-use RPC mechanism for the exchange of Java objects with a server using HTTP.

OpenSyllabus server used GWT special RPC servlets to implement exchange of serialized Models Objects with the client application.

REST based SData

Osyl Client uses REST based calls to SData services on the Sakai server. REST (Representational State Transfer) is based on resources where each is referenced by a unique identifier, its URI (Uniform Resource Identifier). In REST, clients and servers communicate via standard HTTP and exchange representations of resources (the documents).

Thus, Sakai's SData services return JSON (JavaScript Object Notation) documents which are directly evaluated into Javascript objects by the browser.

SData Documentation

  • No labels