Top "Httpsurlconnection" questions

Java HttpsURLConnection and TLS 1.2

I read in an article that HttpsURLConnection will transparently negotiate the SSL connection. The official document says: This class uses …

java ssl httpsurlconnection
How to use HttpsURLConnection through proxy by setProperty?

Network environment: Https Client<=============>Proxy Server<==============>Https Server                                                   192.168.17.11<-----extranet------>192.168.17.22 10.100.21.10<----intranet----->10.100.21.11 ps: Http …

java networking proxy outputstream httpsurlconnection
How to do an HTTPS POST from Android?

I want to do a HTTPS post method to send some data from my android app to my website. I …

java android ssl https httpsurlconnection
How to disable SSLv3 in android for HttpsUrlConnection?

We wrote client application in android which connects with https servers using HttpsUrlConnection apis. Due to Poodle vulnerability, we need …

java android client httpsurlconnection poodle-attack
Android HttpsUrlConnection javax.net.ssl.SSLException Connection closed by peer handshake error when using local truststore

I'm having trouble with getting Android to connect to a simple OpenSSL server using the HttpsUrlConnection object (I've combed through …

android ssl android-emulator openssl httpsurlconnection
weblogic.net.http.SOAPHttpsURLConnection cannot be cast to javax.net.ssl.HttpsURLConnection

I am getting "java.lang.ClassCastException" while trying to connect to a url using javax.net.ssl.HttpsURLConnection . I am …

java ssl weblogic httpsurlconnection
Webview not able to load https url in android?

I am implementing webview application in android. When i am trying to load https url one or two times it …

android android-webview httpsurlconnection
How to send Post Data to https server via HttpsURLConnection

I saw a form (https://aptransport.in/CFSTONLINE/Reports/VehicleRegistrationSearch.aspx) in web, if i give Select Search Element: as …

java httpsurlconnection
how to use HttpsUrlConnection instead of DefaultHttpClient

DefaultHttpClient, ThreadSafeClientConnManager, HttpParams,HttpProtocolParams, SchemeRegistry, SSLSocketFactory, NameValuePair, HttpResponse are deprecated. I tried to use HttpsUrlConnection but i confused about them. …

android httpsurlconnection
How to override the cipherlist sent to the server by Android when using HttpsURLConnection?

During TLS negotiation, clients send a list of supported ciphers to the server, the server picks one, and encryption starts. …

java android ssl jsse httpsurlconnection