From: eporcelli <nu...@jb...> - 2005-07-25 10:25:45
|
I can call a servlet from an applet on tomcat standalone using code like this (i want to call doPost method on servlet) URLConnection con = getServletConnection(); OutputStream outstream = con.getOutputStream(); ObjectOutputStream oos = new ObjectOutputStream(outstream); oos.writeObject(req); but when i use jboss embedded tomcat this don't work (i debug the servlet using eclipse/lomboz enviroment and the breakpoint on doPost is never reached) Someone can help me? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3886354#3886354 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3886354 |