I'm trying to use webservice from java application. The webservice site is served through https.
I write this code, but javax.crypto.BadPaddingException Decryption error is appearing.
try{
URL url = new URL("https://www.google.ne.jp");
HttpURLConnection connection = (HttpURLConnection) url.openConnection(); <= error
How can this problem be resolved?