0

in Eclipse on my PC, I am debugging my app and seeing exception like:

at org.apache.harmony.luni.internal.net.www.protocol.https.HttpsURLConnection.connect(HttpsURLConnection.java:146)

Where can I find source code of HttpsURLConnection?

My environment is:
PC, Eclipse Galileo, Android API level 4 (Platform 1.6),
Eclipse Installation Details shows "Eclipse.org, Apache Commons Httpclient, 3.1.0.v20080605-1035)

androidGuy
  • 5,553
  • 12
  • 39
  • 56
bob
  • 2,674
  • 1
  • 29
  • 46
  • I would focus more on what caused it in your code. These libraries tend to be fairly well documented such that you don't need to see the code to find out why they're failing on you. – corsiKa Mar 28 '11 at 03:26

1 Answers1

0

here is a tutorial on getting android source code and putting it into eclipse. maybe that can help but i'm not sure. Link

edit: This might actually be more direct for your question Link

I basically found the above link from this post Link

it has a lot of general source code viewing solutions. hope maybe that can help.

Community
  • 1
  • 1
logicbird
  • 207
  • 3
  • 13
  • Thanks logicbird. I downloaded apache harmony 5.0 from [http://harmony.apache.org/download.cgi] and it was importing javax.net.ssl.HttpsURLConnection that your link shows. – bob Mar 28 '11 at 20:35