 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Jonathan Estabillo Guest
|
Posted: Thu Dec 02, 2004 3:01 am Post subject: Cannot pass URL parameters using GET method |
|
|
Hi there everyone. I am finding a hard time sending URL parameters using
the java.net package. I can connect to the specific URL but it seems
that the parameters are not being passed. How do I go about it? By the
way here is the code for a simple application to pass URL parameters
using the GET method but in reality it does not pass the parameters:
HERE IS THE CODE THAT I'M TRYING TO WORK ON
***************************************************************************
package testing;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.net.*;
public class Servlet1 extends HttpServlet {
//Initialize global variables
public void init() throws ServletException {
}
public void doGet(HttpServletRequest request, HttpServletResponse
response) throws
ServletException, IOException {
try {
URL url = new URL(
"http://confserver:8500/index.cfm?");
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter wr = new
OutputStreamWriter(conn.getOutputStream());
wr.write("SMS_MsgTxt=Jonathan");
wr.close();
} catch (Exception ex) {
ex.printStackTrace();
}
}
public void doPost(HttpServletRequest request, HttpServletResponse
response) throws
ServletException, IOException {
doGet(request, response);
}
//Clean up resources
public void destroy() {
}
}
|
|
| Back to top |
|
 |
Paul Furbacher [TeamB] Guest
|
Posted: Thu Dec 02, 2004 2:01 pm Post subject: Re: Cannot pass URL parameters using GET method |
|
|
Jonathan Estabillo wrote:
Please note that multi- and cross-posting is
not allowed: you may want to more carefully read
the newsgroup guidelines.
Another rule is: post to the *most* appropriate
newsgroup. For servlets, it's "servlets-jsp".
Thanks.
--
Paul Furbacher (TeamB)
Save time, search the archives:
http://www.borland.com/newsgroups/ngsearch.html
Is it in Joi Ellis's Faq-O-Matic?
http://www.visi.com/~gyles19/fom-serve/cache/1.html
Finally, please send responses to the newsgroup only.
That means, do not send email directly to me.
Thank you.
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|