Does it possible to have two URLConnection in the same jsp or jave file? thx.
Andrew Shafer
Ranch Hand
Joined: Jan 19, 2001
Posts: 338
posted
0
I don't really understand your question. You can obviously link to more than one URL. Rephrase your question.
!_I_Know_Kung_Fu_!
Zoe Peng
Ranch Hand
Joined: Nov 27, 2000
Posts: 112
posted
0
I mean to open 2 connections at the same jsp page. cos I try to re-use the parameters that I post from another files and repost to different server in order to get another contents. Thanks. I made it works already. --- URL url = new URL ("url1"); HttpURLConnection urlConn=(HttpURLConnection) url.openConnection(); URL url2 = new URL ("url2"); HttpURLConnection urlConn2=(HttpURLConnection) url2.openConnection();