Client.js 1.3 KB

12345678910111213141516171819202122232425262728
  1. define("dojox/rpc/Client", ["dojo", "dojox"], function(dojo, dojox) {
  2. dojo.getObject("rpc.Client", true, dojox);
  3. // Provide extra headers for robust client and server communication
  4. dojo._defaultXhr = dojo.xhr;
  5. dojo.xhr = function(method,args){
  6. var headers = args.headers = args.headers || {};
  7. // set the client id, this can be used by servers to maintain state information with the
  8. // a specific client. Many servers rely on sessions for this, but sessions are shared
  9. // between tabs/windows, so this is not appropriate for application state, it
  10. // really only useful for storing user authentication
  11. headers["Client-Id"] = dojox.rpc.Client.clientId;
  12. // set the sequence id. HTTP is non-deterministic, message can arrive at the server
  13. // out of order. In complex Ajax applications, it may be more to ensure that messages
  14. // can be properly sequenced deterministically. This applies a sequency id to each
  15. // XHR request so that the server can order them.
  16. headers["Seq-Id"] = dojox._reqSeqId = (dojox._reqSeqId||0)+1;
  17. return dojo._defaultXhr.apply(dojo,arguments);
  18. }
  19. // initiate the client id to a good random number
  20. dojox.rpc.Client.clientId = (Math.random() + '').substring(2,14) + (new Date().getTime() + '').substring(8,13);
  21. return dojox.rpc.Client;
  22. });