Hi,

I was just wondering what the purpose of the RpcJava contribution really is? 
Is it not just possible to use a stanrdard Java Servlet and format the
response depending on what servlet was being called?

var req = new qx.io.remote.Request(url, "GET", "text/plain");

And use a servlet to just send the resulting content:
...
public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
{
    response.setContentType("text/plain");
    PrintWriter out = response.getWriter();
    out.println("A Sample String...");
}

--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/RpcJava-vs-Java-servlet-tp6953492p6953492.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
RSA® Conference 2012
Save $700 by Nov 18
Register now!
http://p.sf.net/sfu/rsa-sfdev2dev1
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to