如何使JAX-WS在生成的wsdl中使用https(http到https)for soap:address

时间:2017-07-12 05:52:28

标签: java web-services soap wsdl jax-ws

我正在使用jax-ws和spring创建soap web服务。这是我的代码

@WebService
@Service
public class SoapService {
    SoapServiceDao soapServiceDao;
    @WebMethod(exclude = true)
    public void setSoapServiceDao(SoapServiceDao soapServiceDao) {
        this.soapServiceDao = soapServiceDao;
    }

    @WebMethod
    @SOAPBinding(parameterStyle=ParameterStyle.BARE)
    public Message method1(SoapResponse soapResponse) {
        return new Message();
    }
}

并在application-context.xml

<wss:binding url="/soapservice">
    <wss:service>
        <ws:service bean="#soapserviceImpl" />
    </wss:service>

在生成的wsdl

    <soap:address location="http://localhost:8080/soapservice"/>

但我想要 https ,因为我的服务器只接受https请求。

在这种情况下是否可以将http更改为https?

1 个答案:

答案 0 :(得分:1)

您可能需要以编程方式覆盖端点: 尝试将其更改为

MyServicePort myPort = new MyServiceInterface(new URL("https://acme.com/services/MyService.svc?wsdl")).getMyPort();
// set endpoint to use https
String endpointURL = "https://acme.com/services/MyService.svc";
BindingProvider bp = (BindingProvider) myPort;
bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, endpointURL);``
myPort.test();