我试图在创建 Web 服务时设置空的目标命名空间。这是示例。我的服务如下所示:
package com.example;
import javax.jws.WebMethod;
import javax.jws.WebService;
@WebService
public class SampleService
{
@WebMethod
public void sampleMethod()
{
}
}
像这样定义,它接受看起来像这样的请求(请注意考试命名空间声明):
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:exam="http://example.com/">
<soapenv:Header/>
<soapenv:Body>
<exam:sampleMethod/>
</soapenv:Body>
</soapenv:Envelope>
我想将 Web 服务配置为接受如下所示的请求(没有命名空间):
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header/>
<soapenv:Body>
<sampleMethod/>
</soapenv:Body>
</soapenv:Envelope>
我尝试将 targetNamespace 设置为空字符串,但这不起作用 - 它只是默认为考试命名空间。
@WebService(targetNamespace="")
我正在使用 Apache CXF (3.1.0) 来公开服务:
<bean id="sampleService" class="com.example.SampleService" />
<jaxws:endpoint id="sampleServiceWs" implementor="#sampleService"
address="/SampleService" publish="true">
</jaxws:endpoint>