java – 无法从给定的源创建信封

前端之家收集整理的这篇文章主要介绍了java – 无法从给定的源创建信封前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试使用Spring WS 2.2.2发行版的org.springframework.ws.client.core.WebServiceTemplate类来使用基于SOAP的Web服务,如下所示:

webServiceTemplate.setDefaultUri(uri);
webServiceTemplate.setMessageSender(new SOAPMessageSenderWithAuth());
res = (RESPONSE) webServiceTemplate.marshalSendAndReceive(request);

该请求是使用从Web服务的WSDL文件生成的类构建的.

Web服务已经使用SOAP UI成功测试,但是当使用Java访问它时,Exception“SoapMessageCreationException:无法从InputStream创建消息:无法从给定源创建信封(SAAJ0511)”和“无法从给定源创建信封,因为root元素未命名为’Envelope'(SAAJ0514)“.

有没有人对此例外有任何建议?

提前致谢!

WebServiceTemplate的Spring bean定义如下:

例外情况是:

org.springframework.ws.soap.SoapMessageCreationException:无法从InputStream创建消息:无法从给定的源创建信封:;嵌套异常是com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl:无法从给定源创建包络

这是使用Spring WS模板的Web服务客户端的类:

import javax.annotation.Resource;
import org.apache.log4j.Logger;
import org.springframework.ws.client.WebServiceIOException;
import org.springframework.ws.client.core.WebServiceTemplate;
import com.myproject.soap.client.services.SOAPWebServiceClient;

/**
 *
 * @param 

方法sendAndReceive被调用如下:

public MYDATAResponse createCustomer(final MYDATA request)
    {
        return (MYDATAResponse) soapWebServiceClient.sendAndReceive((REQUEST) request,getCreateCustomerURI());
    }
最佳答案
如果在解析服务响应时遇到异常,请尝试从soap UI发送请求并检查它是否正常工作.
如果它在肥皂ui工作而不在这里,那么你没有得到适当的反应,这可能是因为不正确的要求.
在我的情况下,问题是我的端点url在代码中由“?wsdl”组成.去除后它工作得非常好.
原文链接:https://www.f2er.com/spring/432132.html

猜你在找的Spring相关文章