- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 string-ws 创建 Web 服务客户端并从 Web 服务获取数据。我使用 org.jvnet.jaxb2.maven2:maven-jaxb2-plugin 来生成 java 类。下面给出了该插件生成的一些类:
GetLandingPage常见问题解答:
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getLandingPageFAQ", propOrder = {
"faq"
})
public class GetLandingPageFAQ {
protected FaqListInBean faq;
public FaqListInBean getFaq() {
return faq;
}
public void setFaq(FaqListInBean value) {
this.faq = value;
}
}
FaqListInBean:
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "faqListInBean", propOrder = {
"viewList",
"localList",
"numberOfContent"
})
public class FaqListInBean {
@XmlElement(nillable = true)
protected List<String> viewList;
@XmlElement(nillable = true)
protected List<String> localList;
protected int numberOfContent;
public List<String> getViewList() {
if (viewList == null) {
viewList = new ArrayList<String>();
}
return this.viewList;
}
public List<String> getLocalList() {
if (localList == null) {
localList = new ArrayList<String>();
}
return this.localList;
}
public int getNumberOfContent() {
return numberOfContent;
}
public void setNumberOfContent(int value) {
this.numberOfContent = value;
}
}
GetLandingPageFAQ响应:
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getLandingPageFAQResponse", propOrder = {
"faqListOutBean"
})
public class GetLandingPageFAQResponse {
@XmlElement(name = "FaqListOutBean", namespace = "omitted")
protected FaqListOutBean faqListOutBean;
public FaqListOutBean getFaqListOutBean() {
return faqListOutBean;
}
public void setFaqListOutBean(FaqListOutBean value) {
this.faqListOutBean = value;
}
}
WSDL 是:
<definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="omitted" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="omitted" name="MyService">
<types>
<xsd:schema>
<xsd:import namespace="omitted" schemaLocation="http://url?xsd=1"/>
</xsd:schema>
</types>
<message name="getLandingPageFAQ">
<part name="parameters" element="tns:getLandingPageFAQ"/>
</message>
<message name="getLandingPageFAQResponse">
<part name="parameters" element="tns:getLandingPageFAQResponse"/>
</message>
<message name="WsException">
<part name="fault" element="tns:WsException"/>
</message>
</message>
<portType name="MyServiceImpl">
<operation name="getLandingPageFAQ">
<input message="tns:getLandingPageFAQ"/>
<output message="tns:getLandingPageFAQResponse"/>
<fault message="tns:WsException" name="WsException"/>
</operation>
</portType>
<binding name="MyServiceImplPortBinding" type="tns:MyServiceImpl">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
<operation name="getLandingPageFAQ">
<soap:operation soapAction=""/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
<fault name="WsException">
<soap:fault name="WsException" use="literal"/>
</fault>
</operation>
</binding>
<service name="MyService">
<port name="MyServiceImplPort" binding="tns:MyServiceImplPortBinding">
<soap:address location="http://url/MyService"/>
</port>
</service>
</definitions>
xsd 是:
<xs:schema xmlns:tns="omitted" xmlns:xs="http://www.w3.org/2001/XMLSchema" version="1.0" targetNamespace="omitted">
<xs:element name="WsException" type="tns:WsException"/>
<xs:element name="FaqListInBean" type="tns:faqListInBean"/>
<xs:element name="FaqListOutBean" type="tns:faqListOutBean"/>
<xs:element name="getLandingPageFAQ" type="tns:getLandingPageFAQ"/>
<xs:element name="getLandingPageFAQResponse" type="tns:getLandingPageFAQResponse"/>
<xs:complexType name="faqListInBean">
<xs:sequence>
<xs:element name="viewList" type="xs:string" nillable="true" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="localList" type="xs:string" nillable="true" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="numberOfContent" type="xs:int"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="faqListOutBean">
<xs:sequence>
<xs:element name="faqList" type="tns:simpleFAQOutBean" nillable="true" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="categoryList" type="tns:categoryOutBean" nillable="true" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="numberOfContent" type="xs:int" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="getLandingPageFAQ">
<xs:sequence>
<xs:element name="faq" type="tns:faqListInBean" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="getLandingPageFAQResponse">
<xs:sequence>
<xs:element ref="tns:FaqListOutBean" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="WsException">
<xs:sequence>
<xs:element name="message" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
我通过直接点击 URL 来生成 Java 类,但我没有将 xsd 或 jaxb 绑定(bind)文件添加到我的项目中。这是我生成它的方法:
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.12.3</version>
<executions>
<execution>
<id>faq--api-service</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<schemaLanguage>WSDL</schemaLanguage>
<generateDirectory>src/main/java</generateDirectory>
<generatePackage>package</generatePackage>
<removeOldOutput>true</removeOldOutput>
<cleanPackageDirectories>true</cleanPackageDirectories>
<schemas>
<schema>
<url>url</url>
</schema>
</schemas>
<args>
<arg>-Xannotate</arg>
</args>
<plugins>
<plugin>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-annotate</artifactId>
<version>1.0.1</version>
</plugin>
</plugins>
</configuration>
</execution>
</executions>
</plugin>
ObjectFactory 类是:
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
@XmlRegistry
public class ObjectFactory {
private final static QName _WsException_QNAME = new QName("omitted", "WsException");
private final static QName _FaqListInBean_QNAME = new QName("omitted", "FaqListInBean");
private final static QName _FaqListOutBean_QNAME = new QName("omitted", "FaqListOutBean");
private final static QName _GetLandingPageFAQ_QNAME = new QName("omitted", "getLandingPageFAQ");
private final static QName _GetLandingPageFAQResponse_QNAME = new QName("omitted", "getLandingPageFAQResponse");
public ObjectFactory() {
}
public WsException createWsException() {
return new WsException();
}
public FaqListInBean createFaqListInBean() {
return new FaqListInBean();
}
public FaqListOutBean createFaqListOutBean() {
return new FaqListOutBean();
}
public GetLandingPageFAQ createGetLandingPageFAQ() {
return new GetLandingPageFAQ();
}
public GetLandingPageFAQResponse createGetLandingPageFAQResponse() {
return new GetLandingPageFAQResponse();
}
@XmlElementDecl(namespace = "omitted", name = "WsException")
public JAXBElement<WsException> createWsException(WsException value) {
return new JAXBElement<WsException>(_WsException_QNAME, WsException.class, null, value);
}
@XmlElementDecl(namespace = "omitted", name = "FaqListInBean")
public JAXBElement<FaqListInBean> createFaqListInBean(FaqListInBean value) {
return new JAXBElement<FaqListInBean>(_FaqListInBean_QNAME, FaqListInBean.class, null, value);
}
@XmlElementDecl(namespace = "omitted", name = "FaqListOutBean")
public JAXBElement<FaqListOutBean> createFaqListOutBean(FaqListOutBean value) {
return new JAXBElement<FaqListOutBean>(_FaqListOutBean_QNAME, FaqListOutBean.class, null, value);
}
@XmlElementDecl(namespace = "omitted", name = "getLandingPageFAQ")
public JAXBElement<GetLandingPageFAQ> createGetLandingPageFAQ(GetLandingPageFAQ value) {
return new JAXBElement<GetLandingPageFAQ>(_GetLandingPageFAQ_QNAME, GetLandingPageFAQ.class, null, value);
}
@XmlElementDecl(namespace = "omitted", name = "getLandingPageFAQResponse")
public JAXBElement<GetLandingPageFAQResponse> createGetLandingPageFAQResponse(GetLandingPageFAQResponse value) {
return new JAXBElement<GetLandingPageFAQResponse>(_GetLandingPageFAQResponse_QNAME, GetLandingPageFAQResponse.class, null, value);
}
}
现在我写的客户端是:
public class FaqApiServiceClient extends WebServiceGatewaySupport {
public FaqApiServiceClient() {
try {
String uri = getFaqUri();
setDefaultUri(uri);
} catch (IOException ex) {
throw new ClientInstantiationException(ex);
}
}
public GetLandingPageFAQResponse getLandingPageFAQResponse() {
ObjectFactory objectFactory = new ObjectFactory();
GetLandingPageFAQ faq = new GetLandingPageFAQ();
FaqListInBean bean = objectFactory.createFaqListInBean();
bean.getLocalList().add("en_US");
faq.setFaq(bean);
JAXBElement<GetLandingPageFAQ> request = new ObjectFactory().createGetLandingPageFAQ(faq);
@SuppressWarnings("unchecked")
JAXBElement<GetLandingPageFAQResponse> response = (JAXBElement<GetLandingPageFAQResponse>) getWebServiceTemplate().marshalSendAndReceive(request);
return response.getValue();
}
private String getUri() throws IOException {
InputStream stream = getClass().getClassLoader().getResourceAsStream("wsdl-url.properties");
Properties properties = new Properties();
properties.load(stream);
return properties.getProperty("FaqAPIService.WSDL");
}
}
现在返回的对象GetLandingPageFAQResponse
不为空,但我找不到子对象FaqListOutBean
。从 SoapUI 中,当我使用相同的输入数据执行相同的操作时,我可以看到有输出。我无法找出问题所在。任何建议都会非常有帮助。我已经按照这里的教程进行操作:Consuming a SOAP web service .
如果我不使用 JAXBElement
发送请求并直接传递 GetLandingPageFAQ
实例,那么我将得到:
org.springframework.ws.client.core.support.WebServiceGatewaySupport.getWebServiceTemplate()
marshalSendAndReceive
Exception in thread "main" org.springframework.oxm.MarshallingFailureException: JAXB marshalling exception; nested exception is javax.xml.bind.MarshalException
- with linked exception:
[com.sun.istack.internal.SAXException2: unable to marshal type "GetLandingPageFAQ" as an element because it is missing an @XmlRootElement annotation]
最佳答案
问题出在我正在使用的 Web 服务的命名空间和端点上。我检查了网络服务的代码,然后问题就解决了。
关于java - JAXB:从 WebServiceTemplate 返回的子元素为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28701436/
我正在尝试使用 Spring-WS 编写我的第一个客户端,并且对一些基础知识感到有些困惑。我需要在 header 中插入一个 SAML token ,并且我注意到 WebServiceTemplate
我使用mockito 3如下: Mockito.when(webServiceTemplate.marshalSendAndReceive(Mockito.anyString(),
看起来 Spring 的 WebServiceTemplate 忽略了连接超时的设置。那,或者我误解了连接超时。 这是我的配置: @Bean public SoapTemplate soapTempl
我有一个 SOAP 网络服务端点 url(比方说:“EP1”),我们只能通过代理服务器连接它。 我们正在使用 org.springframework.ws.client.core.WebService
我正在尝试测试当前使用基本身份验证保护的 Spring Web 服务。对于这些测试,我使用 Spring 的 WebServiceTemplate 编写了一个 Web 服务客户端。类。 当我将模板的
我使用 spring ws 模板创建了一个 Web 服务客户端。这按 http 协议(protocol)的预期工作。现在我想让它与 https 一起使用。我有相关的客户端 key 存储(jks 文件)
我正在将 Spring-WS 与 JAXB 结合使用。 有下一段代码: WebServiceTemplate template = (WebServiceTemplate) ctx.getBean("
我在 Spring Boot 中使用 WebServiceTemplate 并使用 marshalSendAndReceive 调用目标服务。 如何在请求中设置自定义 HTTP header ? 最佳
我正在尝试找出为 Spring 的 WebService 模板类编写单元测试的最佳方法。我要做的是检查以确保我为我的客户生成的每个请求/响应类型正确连接了这些类。我还想确保如果返回异常,则异常会得到正
我正在使用 org.springframework.ws.client.core.WebServiceTemplate用于进行 Web 服务调用。如何配置通话超时。 最佳答案 如果您使用的是 Spri
我必须使用 Spring WS 实现一个 Web 服务客户端。 我已阅读 http://static.springsource.org/spring-ws/site/reference/html/cl
我尝试在发送文档请求之前对其进行签名,但是在检索请求文档时通过Document doc = soapMessage.getSOAPPart().getEnvelope().getOwnerDocume
我使用 Spring WebServiceTemplate 类来创建和实例化 JAXB 生成的类的请求对象,使用它调用 marshallSendAndReceive 方法,然后将响应对象转换为 JAX
我正在使用 string-ws 创建 Web 服务客户端并从 Web 服务获取数据。我使用 org.jvnet.jaxb2.maven2:maven-jaxb2-plugin 来生成 java 类。下
有没有办法以编程方式设置 Spring 的 WebServiceTemplate 的超时?我看过有关通过应用程序上下文配置文件中的消息发送器设置它的旧文章。但在我们的项目中,这些对象是通过代码创建的,
我有一个调用现有网络服务的类。我的类正确处理有效结果以及 Web 服务生成的错误字符串。对 Web 服务的基本调用如下所示(尽管已简化)。 public String callWebService(f
我知道可以使用 Eclipse TCP/IP 监视来跟踪 SOAP 消息。我试过了,但它无法监控我的本地主机。 TCP/IP 不在其控制台中显示本地主机。 我可以通过http://localhost:
我正在用 spring 开发一个 SOAP 网络服务客户端。 我正在使用 webServiceTemplate 如何指定我使用哪种版本的 SOAP ? 我可以看到它默认使用的是soap 1.1。 我想
我正在尝试向 SOAP 网络服务发送请求。我读了this tutorial并准备了以下代码。但是,我将向多个 SOAP Web 服务发送不同的请求,而本教程只关注一个请求。如何使用 Webservic
是否可以使用 java keystore 配置 WebServiceTemplate? 编辑 我正在寻找一种在spring config中配置 keystore 位置的方法 最佳答案 我在六年后发布这
我是一名优秀的程序员,十分优秀!