18
¿Cómo corregir el error "java.security.cert.CertificateException: No hay nombres alternativos de sujeto presentes"?
Tengo un cliente de servicio web Java, que consume un servicio web a través de HTTPS. import javax.xml.ws.Service; @WebServiceClient(name = "ISomeService", targetNamespace = "http://tempuri.org/", wsdlLocation = "...") public class ISomeService extends Service { public ISomeService() { super(__getWsdlLocation(), ISOMESERVICE_QNAME); } Cuando me conecto a la URL del servicio ( https://AAA.BBB.CCC.DDD:9443/ISomeService), obtengo …