3

我遇到的问题是,当我尝试使用此 wsdl 在 netbeans 中创建 Web 服务时,netbeans 说没有定义服务。我对整个 wsdl 事物都是新手,但据我所知,有一个已定义。

wsdl 是:

 <?xml version="1.0" encoding="UTF-8"?>
 <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://discoveryinsurance.com/DicQuoteSvc/AgencyQuote.wsdl" xmlns:ns="http://discoveryinsurance.com/DicQuoteSvc/schemas/DicAcordQuoteRq.xsd" xmlns:na="http://discoveryinsurance.com/DicQuoteSvc/schemas/DicAcordQuoteRs.xsd" targetNamespace="http://discoveryinsurance.com/DicQuoteSvc/AgencyQuote.wsdl">
<wsdl:import namespace="http://discoveryinsurance.com/DicQuoteSvc/schemas/" location="DicAcordQuoteRq.xsd"/>
<wsdl:import namespace="http://discoveryinsurance.com/DicQuoteSvc/schemas/" location="DicAcordQuoteRs.xsd"/>
<wsdl:types>
    <xs:schema targetNamespace="http://discoveryinsurance.com/DicQuoteSvc/schemas/" elementFormDefault="qualified"/>
</wsdl:types>
<wsdl:message name="NewMessageRequest">
    <wsdl:part name="parameter" element="ns:ACORD"/>
</wsdl:message>
<wsdl:message name="NewMessageResponse">
    <wsdl:part name="parameter" element="na:ACORD"/>
</wsdl:message>
<wsdl:portType name="QuotePortType">
    <wsdl:operation name="RequestQuote">
        <wsdl:input message="tns:NewMessageRequest"/>
        <wsdl:output message="tns:NewMessageResponse"/>
    </wsdl:operation>
</wsdl:portType>
<wsdl:binding name="QuoteBinding" type="tns:QuotePortType">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="RequestQuote">
        <soap:operation soapAction="http://discoveryinsurance.com/DicQuoteSvc/AgencyQuote" style="rpc"/>
        <wsdl:input>
            <soap:body use="literal"/>
        </wsdl:input>
        <wsdl:output>
            <soap:body use="literal"/>
        </wsdl:output>
    </wsdl:operation>
</wsdl:binding>
<wsdl:service name="AgencyQuote">
    <wsdl:port name="QuotePortType" binding="tns:QuoteBinding">
        <soap:address  location="http://discoveryinsurance.com/DicQuoteSvc/"/>
    </wsdl:port>
</wsdl:service>

XMLSpy 说 wsdl 是有效的,但是当我尝试从中创建 Web 服务时它失败了。任何帮助将不胜感激,甚至是建设性的批评。

编辑

从我得到的命令行中使用 wsimport 。

[错误] Invalid wsdl:operation "RequestQuote": its a rpc-literal operation, message part must refer to a schema type declaration line 16 of file:/D:/projects/DICACORD/QuoteRq2.wsdl

这是否意味着即使导入了两个 xsd,我仍然必须在 wsdl 中定义类型?

更新 2

请求的架构->。 馅饼的架构

添加

有人看到 xsd 导入和/或它们的使用方式有什么问题吗?

4

3 回答 3

5

验证 wsdl 是否有效的最简单方法是从命令行运行:

wsimport yourservice.wsdl

看看它是否给你任何错误。wsimport 随 JDK 1.6 一起提供

您提交的 WSDL 不完整,因为它引用了外部模式文件 (XSD),因此我无法验证它。

于 2009-12-17T19:46:24.930 回答
1

为了回答我自己的问题,无法从 wsdl 创建 Web 服务的原因是使用wsdl:importxs:import.

我不知道,但是在做了更多研究之后,似乎应该在您想要导入另一个 wsdl 时使用 wsdl:import 但如果您想从 a 导入模式以使用您需要的 wsdl 中定义的类型使用 anxsd:import因为如果不是 wsimport 将找不到模式中定义的类型。

我变了

xmlns:ns="http://discoveryinsurance.com/DicQuoteSvc/schemas/DicAcordQuoteRq.xsd"
xmlns:na="http://discoveryinsurance.com/DicQuoteSvc/schemas/DicAcordQuoteRs.xsd"
xmlns:xs="http://www.w3.org/2001/XMLSchema"

xmlns:rq="http://discoveryinsurance.com/DicQuoteSvc/schemas/request/" 
xmlns:rs="http://discoveryinsurance.com/DicQuoteSvc/schemas/response/"

并改变了进口

<wsdl:import namespace="http://discoveryinsurance.com/DicQuoteSvc/schemas/"  location="DicAcordQuoteRq.xsd"/>
<wsdl:import namespace="http://discoveryinsurance.com/DicQuoteSvc/schemas/" location="DicAcordQuoteRs.xsd"/>

<xs:import namespace="http://discoveryinsurance.com/DicQuoteSvc/schemas/request/" schemaLocation="DicAcordQuoteRq.xsd"/>
<xs:import namespace="http://discoveryinsurance.com/DicQuoteSvc/schemas/response/" schemaLocation="DicAcordQuoteRs.xsd"/>

进行这些更改使 Web 服务能够成功构建,并且基于这两个模式创建了类。希望当我周一开始测试 Web 服务时,它会按我的意愿工作。感谢大家提供的输入,因为它使我研究了从 wsdl 创建 Web 服务失败的其他原因。

我确实更改了它们所在的命名空间,但出于不同的原因,我在我的机器上本地创建并部署了 Web 服务之后才这样做。

祝大家节日快乐。

于 2009-12-18T20:56:38.193 回答
0

ACORD 在命名空间中http://discoveryinsurance.com/DicQuoteSvc/schemas/DicAcordQuoteRq.xsd

在我看来,您对 ACORD 的导入是无效的,因为它以不同的方式识别 ACORD 的命名空间:

<wsdl:import namespace="http://discoveryinsurance.com/DicQuoteSvc/schemas/" location="DicAcordQuoteRq.xsd"/>

于 2009-12-17T22:52:23.707 回答