我正在尝试在创建Web Service时设置空目标命名空间。这是一个例子。我的服务如下:
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设置为空字符串,但这不起作用 - 它只是默认为 exam 名称空间。
@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>
答案 0 :(得分:0)
要回答我的问题 - 我没有找到设置空targetNamespace的方法,但我设法在我的服务上省略了请求验证,因此它现在也接受了带有命名空间的请求。为此,我在服务类的顶部使用了@EndpointProperty
注释:
package com.example;
import javax.jws.WebMethod;
import javax.jws.WebService;
import org.apache.cxf.annotations.EndpointProperty;
@WebService
@EndpointProperty(key = "soap.no.validate.parts", value = "true")
public class SampleService
{
@WebMethod
public void sampleMethod()
{
}
}