added a bit to pull the data from the req
authorPaul J R <me@pjr.cc>
Mon, 16 Nov 2009 17:24:26 +0000 (04:24 +1100)
committerPaul J R <me@pjr.cc>
Mon, 16 Nov 2009 17:24:26 +0000 (04:24 +1100)
src/web/index.html
src/webconnector.go

index 4d7ce6b..a772842 100644 (file)
@@ -9,7 +9,7 @@
 <h2>Go DB Hammer</h2>
 <script type="text/javascript">
 
-//function doPost {
+function doDBSetPost() {
 $(function() {
        var frm = $(document.dbsetsform);
        var dat = JSON.stringify(frm.serializeArray());
@@ -22,7 +22,7 @@ $(function() {
             }
           );
         });
-//}
+}
 
 function bollocks() {
 $.getJSON("http://localhost:22222/json", function(json) {
@@ -66,7 +66,7 @@ setTimeout('bollocks()', 2000);
 <tr><td>Data Multiplier</td><td><input type="text" name="dbtype"></td></tr>
 <tr><td>Number of Clients</td><td><input type="text" name="dbtype"></td></tr>
 </table>
-<input type="submit" name="Go" value="Go">
+<input type="submit" name="Go" value="Go" onClick="doDBSetPost(); return false">
 </form>
 </div>
 <div class="setupbody">I am a setup body</div>
@@ -83,4 +83,4 @@ $(".reportbody").toggle(false);
 $(".loadingbody").toggle(true);
 </script>
 </body>
-</html>
\ No newline at end of file
+</html>
index ee42713..127d168 100644 (file)
@@ -34,7 +34,9 @@ func JSONResponder(c *http.Conn, req *http.Request)
                fmt.Printf("i got a get\n");
        }
        if(req.Method == "POST") {
-               fmt.Printf("i got a post...\n");
+               lp := make([]byte, 1048576);
+               req.Body.Read(lp);
+               fmt.Printf("i got a post...%s\n", (string)(lp));
                http.Redirect(c, "/", 301);
        }