updated RPC command to match javascripting language

Dependencies:   EthernetInterface HTTPServerExample mbed-rpc mbed-rtos mbed

Fork of EthHTTPServer by Henry Leinen

Files at this revision

API Documentation at this revision

Comitter:
sammacjunkie
Date:
Fri Dec 06 18:29:25 2013 +0000
Parent:
6:fde802d0f163
Commit message:
updated RPC command

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Fri Dec 06 18:20:02 2013 +0000
+++ b/main.cpp	Fri Dec 06 18:29:25 2013 +0000
@@ -27,7 +27,7 @@
 
     HTTPFsRequestHandler::mount("/local/", "/");   //   Mount /local/ filesystem as root web path /
     svr.addHandler<HTTPFsRequestHandler>("/");     //   Serve all default HTTP requests
-    svr.addHandler<HTTPRpcRequestHandler>("/RPC"); //   Serve all RPC requests
+    svr.addHandler<HTTPRpcRequestHandler>("/rpc"); //   Serve all RPC requests
     
 
     //  Initialize the EthernetInterface and initiate a connection using default DHCP.