summaryrefslogtreecommitdiffstats
path: root/apps/samples/miles/miles-connect.html
blob: ae5f77e95e9a3185cfeaca17d87b5c283e2bfefe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
    <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.8.3/dijit/themes/tundra/tundra.css">
    <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.8.3/dojox/layout/resources/FloatingPane.css">
    <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.8.3/dojox/layout/resources/ResizeHandle.css">

		<style type="text/css">
		</style>

		<script type="text/javascript">
		// dojoConfig = {
		//     async : false,
		//     isDebug : true,
		//     debugAtAllCosts : true,
		// }
		</script>

		<script src="http://ajax.googleapis.com/ajax/libs/dojo/1.8.3/dojo/dojo.js"></script>
    <script type="text/javascript" src="viewer.js"></script>
    
    <script type="text/javascript">
			require(["dojo/domReady!", "dojo"], function(dom, dojo) {
			var jsonHere = {
				"email": "someone@here.com",
				"reflectorIP": "88.131.107.12",
				"problemName": "Fancy problem"
			}
			var xhr = dojo.require("dojo/_base/xhr");
	    xhr.post({
	        // The URL to request
	        url: "http://localhost:8080/miles/connect",
	        handleAs:"json",
					postData: dojo.toJson(jsonHere),
	        headers:{
						"X-Requested-With": null,
						"Content-Type": "application/json",
					},
	        load: function(result) {
						
	        }
	    });
		});		  
		</script>
	</head>
	<body class="tundra">
		<div style="width: 600px; height: 400px">
			<div id="scene1"></div>
		</div>
	</body>
</html>