try
{
// 로그아웃 처리 수행
url = new URL("http://127.0.0.100/member/logout_proc.jsp");
// HttpURLConnection을 통해서 원격지 웹 요청을 수행한다.
HttpURLConnection client = (HttpURLConnection)url.openConnection();
client.connect();
}
catch (Exception e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
{
// 로그아웃 처리 수행
url = new URL("http://127.0.0.100/member/logout_proc.jsp");
// HttpURLConnection을 통해서 원격지 웹 요청을 수행한다.
HttpURLConnection client = (HttpURLConnection)url.openConnection();
client.connect();
}
catch (Exception e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
로그인의 경우 GET 메소드를 통해서 로그인 된다.
그러므로 주의해야함...
'WEB_Programming' 카테고리의 다른 글
웹 애플리케이션 디자인시 고려할 10가지 사항 (0) | 2008.11.28 |
---|---|
브라우저 검색 (0) | 2008.11.28 |
J2EE Tutorials > Getting Started with Web Applications (1) | 2008.11.10 |
[JSP] Request가 멀티파트 폼인지 검사하는 루틴 (0) | 2008.08.13 |
XStream 이용하기 (0) | 2008.08.07 |