update to handle returning old version from put() function in JS and functional rm...
[org.ibex.xt-crawshaw.git] / src / java / org / ibex / xt / shell / Servlet.java
index 70b89d9..fc4cbb4 100644 (file)
@@ -24,7 +24,7 @@ public class Servlet extends HttpServlet {
     public void doPost(HttpServletRequest rq, HttpServletResponse rs) throws IOException {
         ObjectInputStream in = new ObjectInputStream(rq.getInputStream());
         ObjectOutputStream out = new ObjectOutputStream(rs.getOutputStream());
-        JSRemote.receive(prevalent, in, out);
+        JSRemote.receive(prevayler, prevalent, in, out);
         out.flush();
     }
 }