genia.likes.science@gmail.com | c5f82a2 | 2013-05-08 02:44:35 -0700 | [diff] [blame^] | 1 | <!doctype html> |
| 2 | <html> |
| 3 | <head> |
| 4 | <title>easyXDM</title> |
| 5 | <script type="text/javascript" src="../easyXDM.debug.js"> |
| 6 | </script> |
| 7 | <script type="text/javascript"> |
| 8 | /** |
| 9 | * Request the use of the JSON object |
| 10 | */ |
| 11 | easyXDM.DomHelper.requiresJSON("../json2.js"); |
| 12 | </script> |
| 13 | <script type="text/javascript"> |
| 14 | var remote = new easyXDM.Rpc(/** The channel configuration*/{ |
| 15 | local: "../name.html", |
| 16 | swf: "../easyxdm.swf" |
| 17 | }, /** The configuration */ { |
| 18 | remote: { |
| 19 | alertMessage: {} |
| 20 | }, |
| 21 | local: { |
| 22 | addNumbers: function(a, b){ |
| 23 | return a + b; |
| 24 | }, |
| 25 | multiplyNumbers: function(a, b, fn){ |
| 26 | window.setTimeout(function(){ |
| 27 | fn(a * b); |
| 28 | }, 5000); |
| 29 | }, |
| 30 | noOp: function(){ |
| 31 | alert("Method not returning any data"); |
| 32 | } |
| 33 | } |
| 34 | }); |
| 35 | </script> |
| 36 | </head> |
| 37 | <body> |
| 38 | <script type="text/javascript"> |
| 39 | document.write("Domain: " + location.host); |
| 40 | </script> |
| 41 | <!-- easyXDM.Debug.trace(msg) will output its messages to any element with the id "log" --> |
| 42 | <div id="log" style="height:100px;border:1px dotted black;overflow:auto"> |
| 43 | </div> |
| 44 | <input type="button" onclick="remote.alertMessage('message from remote');" value="call alertMessage on local domain"/> |
| 45 | </body> |
| 46 | </html> |