Link to home
Start Free TrialLog in
Avatar of quickjava
quickjava

asked on

java.lang.ClassCastException: weblogic.net.http.SOAPHttpsURLConnection cannot be cast to javax.net.ssl.HttpsURLConnection

Hi Experts,

i am facing a problem please help me, my problem, i have to connect another server, get response code and based on the response code redirect it to ther website or error page, my code was working fine for http site, now i need to do the same thing for HTTPS site but i am getting the below error :

i have seen the simillar question on this site but i followed the same still i am getting this error, actually i tried disabling the certificate verification by using "TrustManager" but still throwing the same error.

The error is thrown on this line :
HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();

i have attached the java file, please have a look and let me know the solution.
if you have a example code please provide me.

Error :
java.lang.ClassCastException: weblogic.net.http.SOAPHttpsURLConnection cannot be cast to javax.net.ssl.HttpsURLConnection
ASKER CERTIFIED SOLUTION
Avatar of mccarl
mccarl
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of quickjava
quickjava

ASKER

Hi,

I tried this

Intead of  this : URL url = new URL(fURL);

i tried with this :  java.net.URL wsURL = new URL(null, fURL,new n.net.www.protocol.https.Handler());

and now i am getting this  error :
javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No X509TrustManager implementation available

Please help me
Did you try what I mentioned above?

For that second error message, did you get that at the ... new URL(...) line or does it throw that error later when you are actually trying to use the connection?
Thanks it is working perfectly  with these two combination :

java.net.URL url = new URL(null, fURL,new sun.net.www.protocol.https.Handler());
java.net.HttpURLConnection  connection = (HttpsURLConnection) url.openConnection();
Glad to hear it is working! Cheers
Hi, i am facing some other problem, it is working when i just pass "https://staging.energyguidedev.com",  but when i pass the query parameters like below it is not working, tried with encoding the URL and got "MalformedURLException" exception, if i try without encodeingURL it just trys for long time and gives connection timeout error, i am not sure but thinking it may be because of SSL cetificate, if it is SSL related could you please let me know the steps to add the SSL in my server.  



https://staging.energyguidedev.com/customercare/ccssentry.aspx?sid=174&referrerid=101&customerid=0064050900&SessionGUID=UugL5AGJAGz3Cyi4CKc jNRdDhYImgco

Thanks
I would doubt that it is SSL related because as far as I know the certificate applies to the site as a whole, so if it works without the query parameters, I don't think that would be it.

Is this a site that you normally have to login to access these pages? Maybe that SessionGUID is no longer valid by the time you are trying to access it.

Actually, looking it again, you say that this is your server? You should be able to debug on the server side why the connection times out?
Thanks for your reply, tried checking it in the log but is not showing any error except timeout.
i am also thinking the same, the SessionID is getting invalide when i connect to the server,  i am not hunderstanding how to maintain valid sessionID.

if there is anyway of maintaining the valid sessionID please let me know.
I asked this previously....

> Is this a site that you normally have to login to access these pages?

If so, then you may have to get your code to follow the same login procedure in order to get a valid SessionID.