Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » Java » Fehler mit HttpsURLConnection

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
07.02.2006, 16:50 Uhr
m.mueller



Hallo,
ich muss über das HTTPS-Protokoll einer Seite im Internet Daten senden. Das Herstellen der Verbindung klappt problemlos, doch sobald ich mir den OutputStream hole bekomme ich folgende Exception:

Zitat:

javax.net.ssl.SSLKeyException: RSA premaster secret error
....
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getOutputStream(Unknown Source)
....
Caused by: java.security.NoSuchAlgorithmException: Cannot find any provider supporting RSA/ECB/PKCS1Padding



Ich verwende folgenden Code...

Code:
import java.net.URL;
import javax.net.ssl.HttpsURLConnection;
....
httpcon = (HttpsURLConnection)url.openConnection();
httpcon.setRequestMethod("POST");
httpcon.setUseCaches(false);
httpcon.setDoOutput(true);
// Das httpcon.getOutputStream() in der folgenden Zeile löst die Exception aus.
OutputStreamWriter wr = new OutputStreamWriter(httpcon.getOutputStream());
wr.write(data);



Ich bin für jeden Hinweis dankbar!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ Java ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: