service.xml中 有一个错字。它应该是 :
<transports><transport>https</transport></transports>
不是HTTPS。
您的 wsdl 将如下所示:
<wsdl:service name="SampleService"><wsdl:port name="SampleServiceHttpsSoap11Endpoint" binding="ns:SampleServiceSoap11Binding"><soap:address location="https://localhost:8443/Axis2HttpsProject/services/SampleService.SampleServiceHttpsSoap11Endpoint/"/></wsdl:port><wsdl:port name="SampleServiceHttpsSoap12Endpoint" binding="ns:SampleServiceSoap12Binding"><soap12:address location="https://localhost:8443/Axis2HttpsProject/services/SampleService.SampleServiceHttpsSoap12Endpoint/"/></wsdl:port><wsdl:port name="SampleServiceHttpsEndpoint" binding="ns:SampleServiceHttpBinding"><http:address location="https://localhost:8443/Axis2HttpsProject/services/SampleService.SampleServiceHttpsEndpoint/"/></wsdl:port></wsdl:service>
还有一点,请确保已添加了 http-core jar。



