httpsurlconnection Questions
1
Solved
I have an app communicating with a HTTPS RPC.
The HTTP server is using a CAcert signed certificate.
I'm using a custom TrustManager for validating the certificate.
Because I can not be sure, CAc...
Quit asked 10/9, 2013 at 8:24
0
In android, I want to make a URL connection to a HTTPS URL. After the connection is opened I want to be able to read the certificate from the server and obtain the issued common name and organisati...
Congruency asked 19/7, 2013 at 15:53
2
I've been pulling my hair trying to figure this out: I'm making an HttpsURLConnection and using java.net.cookiemanager to manage my cookies (there's no way of using android.webkit.cookiemanager to ...
Alagoas asked 3/10, 2012 at 11:37
1
Solved
I would like to create an App which connects to a server. This server uses SSL Client Authentication. The User of the App should be able to choose the certificate and allow the use of it like it is...
Blancablanch asked 23/11, 2012 at 8:36
1
I have code like this:
// configure the SSLContext with a TrustManager
SSLContext ctx = SSLContext.getInstance("TLS");
ctx.init(new KeyManager[0],
new TrustManager[] {new DefaultTrustManager...
Fawn asked 21/11, 2012 at 23:42
1
Solved
Basically i just want to get cookies from server. Here's simple code, but i guess it's not enough to get every cookie like e.g sessionID etc.
import java.net.*;
import java.util.*;
public class ...
Ursala asked 15/7, 2012 at 18:58
© 2022 - 2024 — McMap. All rights reserved.