Simulation of POST HTTP (I can not use a GET)

2004-03-23 Thread Narciso Rodrigues
Hi there... I see your post on TomCat User List If you mean simulate a POST HTTP operation, that's significantly more complicated so I won't go into it unless that's what you really want. Yoav Shapira And i need help on this I'm trying to do a post from a servlet to another servlet

RE: Simulation of POST HTTP (I can not use a GET)

2004-03-23 Thread Shapira, Yoav
Howdy, The servlet that make de POST have this code { String event; event = request.getParameter(event-source); URL url = new URL( http, localhost, , /servletDEST); URLConnection connection = url.openConnection();