While I am accessing the wsdl url I am getting the exception in android
javax.net.ssl.SSLHandshakeException: java.security.cert.CertPathValidatorException:
The error is due to an issue in building trust with the server. Mostly your truststore does not have the certificates the server is submitting. Answers of following 2 questions may help you.
[1] - How Can I Access an SSL Connection Through Android?
[2] - Certificate is trusted by PC but not by Android
You shall have an authorized SSL certificate - That may solve the problem, and that is the best way solving the problem.
If not, you have to work a little bit:
The concept is that when using SSL, Android is little tougher than usual, and you shall have the certificate rights on your android, so for that, you shall have a basic keystore on your Android (like google store, but for free, and on your own Android), and make your own one trusted, by some basic manipulations.
Good luck!!!