Still can't get this to work.... I have a post that is handled in my wicket
page.

After checking the parameters I try to post it with HTTPClient

HttpClient client = new HttpClient();
PostMethod post = new PostMethod("http://URL";); 
post.addParameter( "UserName", "test");
post.addParameter( "Password", "test");
try {
  client.executeMethod(post);
  System.out.println(post.getStatusLine() );
}catch( Exception nex ){
   nex.printStackTrace();
} finally {
   post.releaseConnection();
}


But the bank requires a redirect. Is this even possible?
-- 
View this message in context: 
http://www.nabble.com/ssl-post-to-creditor-company-tp16978155p16979369.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to