8

我对网络服务的东西完全陌生。

我必须为 web 服务编写 rest web 服务客户端。Web 服务在 SoapUI 上运行良好。该 URL 的 WSDL 文件已提供给我。但是当我在我的 Eclipse 项目中添加 wsdl 文件时,它给出了编译错误

src-resolve.4.2: Error resolving component 'xs:schema'. It was detected that 'xs:schema' is in namespace 'http://www.w3.org/2001/XMLSchema', but components from this namespace are not referenceable from schema document 'file:///E:/Ashish%20Workspace/HATStoLSAMS%20Webservice/HATS2LSAMSWS/WebContent/WEB-INF/wsdl/CorpsiteService.svc.wsdl'. If this is the incorrect namespace, perhaps the prefix of 'xs:schema' needs to be changed. If this is the correct namespace, then an appropriate 'import' tag should be added to 'file:///E:/Ashish%20Workspace/HATStoLSAMS%20Webservice/HATS2LSAMSWS/WebContent/WEB-INF/wsdl/CorpsiteService.svc.wsdl'.

我用谷歌搜索了很多以摆脱这些错误,但没有任何效果。如果我忽略错误并尝试使用 wsimport 以及 wsdl2java 命令创建存根,则会出现错误

[ERROR] undefined element declaration 'xs:schema'
line 1 of http://chec.local/STAR.WCF/CorpsiteService.svc?singlewsdl

我正在使用以下命令生成存根

wsimport -d e:\test -s E:\wssrc http://chec.local/STAR.WCF/CorpsiteService.svc?singlewsdl -wsdllocation "../../../../../WEB-INF/wsdl/CorpsiteService.svc.wsdl"

我被困在这一点上,一整天都在为此苦苦挣扎。任何有关这方面的帮助都会非常有帮助

4

4 回答 4

10

对此的解决方案似乎是为https://metro.java.net/2.1/guide/Dealing_with_schemas_that_are_not_referenced.htmlxs:schema中所述提供替代绑定

具体来说,对于经常导入命名空间的http://www.w3.org/2001/XMLSchemaxs,还有一些额外的工作需要做。

命令将是:wsimport -b http://www.w3.org/2001/XMLSchema.xsd -b customization.xjb something.wsdl

从上面链接的customization.xjb 位于https://www.java.net//blog/kohsuke/archive/20070228/xsd.xjb或从下面复制

这种定制的存在是为了处理可能因使用模式 Schema(在多个模式中作为相同的名称空间导入)而引起的一些命名冲突。

定制.xjb

<?xml version="1.0" encoding="UTF-8"?>
<bindings xmlns="http://java.sun.com/xml/ns/jaxb"
          xmlns:xsd="http://www.w3.org/2001/XMLSchema"
          xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc"
          version="2.0">

  <globalBindings>
    <xjc:simple />
  </globalBindings>

  <bindings scd="~xsd:complexType">
    <class name="ComplexTypeType"/>
  </bindings>

  <bindings scd="~xsd:simpleType">
    <class name="SimpleTypeType"/>
  </bindings>

  <bindings scd="~xsd:group">
    <class name="GroupType"/>
  </bindings>

  <bindings scd="~xsd:attributeGroup">
    <class name="AttributeGroupType"/>
  </bindings>

  <bindings scd="~xsd:element">
    <class name="ElementType"/>
  </bindings>

  <bindings scd="~xsd:attribute">
    <class name="attributeType"/>
  </bindings>
</bindings>

我已经对这些文件和相关-b参数进行了尝试,wsimport并且已经(显然)克服了这个错误(以及其他错误)。也就是说,我不能 100% 确定我的新错误不是部分由此引起的(因此这不是一个完整的答案)。如果没有导致问题的实际 wsdl,则只能对解决问题进行合理的猜测(并继续进行下一个问题)。

于 2013-10-01T21:18:43.073 回答
3

如果您使用 maven-jaxb2-plugin 代替 -b 提供所需的 URL 作为模式中的附加模式:

<schema>
  <url>https://example.com/WebService.asmx?WSDL</url>
</schema>
<schema>
  <url>http://www.w3.org/2001/XMLSchema.xsd</url>
</schema>

您甚至可以将其保存在资源中,以便自动拾取

于 2020-04-19T22:00:01.653 回答
1

我遇到了同样的问题,只需在 maven 插件中添加一行即可解决

<args> 
    <arg>-b</arg>
    <arg>http://www.w3.org/2001/XMLSchema.xsd</arg>
</args>

我的maven插件如下

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>jaxws-maven-plugin</artifactId>
    <version>2.4.1</version>
    <executions>
        <execution>
            <id>periodictableaccessws</id>
            <goals>
                <goal>wsimport</goal>
            </goals>
            <configuration>
                <wsdlDirectory>${basedir}/src/main/resources/wsdl</wsdlDirectory>
                <args>
                    <arg>-b</arg>
                    <arg>http://www.w3.org/2001/XMLSchema.xsd</arg>
                </args>
                <wsdlFiles>
                    <wsdlFile>doosdaas.wsdl</wsdlFile>
                </wsdlFiles>
                <packageName>com.dss.doosdaas</packageName>
                <vmArgs>
                    <vmArg>-Djavax.xml.accessExternalDTD=all</vmArg>
                    <vmArg>-Djavax.xml.accessExternalSchema=all</vmArg>
                </vmArgs>
                <!--   <bindingDirectory>${basedir}/src/main/resources/jaxb</bindingDirectory>
                   <bindingFiles>
                       <bindingFile>jaxb_binding.xjb</bindingFile>
                   </bindingFiles>-->
            </configuration>
        </execution>
    </executions>
</plugin>
于 2019-05-28T07:59:18.103 回答
0

当我不得不使用一些 UE Taxations Customs Web 服务时,我遇到了这种错误。在以前的项目中,我使用了user289086提出的解决方案

但是对于最近的项目,我使用了另一个基于绑定但更短的解决方案,我使用了这里描述的 Wrapper 样式规则Using JAXB Data Binding

1-创建具有以下内容的绑定文件并将其添加到 META-INF 文件夹:

<jaxws:bindings xmlns:jaxws="http://java.sun.com/xml/ns/jaxws">
    <jaxws:enableWrapperStyle>false</jaxws:enableWrapperStyle>
</jaxws:bindings>

2- 使用 wsimport 从 wsdl 创建 Web 服务引用(在我的情况下,我使用在后台使用 wsimport 的 Netbeans IDE WS 客户端助手),例如: UE CheckTinService

注意:首先可能 wsimport 的过程可能是 raise 和 error ,但是添加或不添加之前的绑定的区别很容易检查。

3- 在 .pom 文件中添加对相应 jaxws-maven-plugin 执行的绑定引用。对于示例,它保持如下:

<plugin>
    <groupId>org.jvnet.jax-ws-commons</groupId>
    <artifactId>jaxws-maven-plugin</artifactId>
    <version>2.3</version>
    <executions>
        <execution>
            <goals>
                <goal>wsimport</goal>
            </goals>
            <configuration>
                <wsdlFiles>
                    <wsdlFile>ec.europa.eu/taxation_customs/tin/checkTinService.wsdl</wsdlFile>
                </wsdlFiles>
                <packageName></packageName>
                <vmArgs>
                    <vmArg>-Djavax.xml.accessExternalSchema=all</vmArg>
                </vmArgs>
                <wsdlLocation>https://ec.europa.eu/taxation_customs/tin/checkTinService.wsdl</wsdlLocation>
                <staleFile>${project.build.directory}/jaxws/stale/checkTinService.stale</staleFile>
                <bindingFiles>
                    <bindingFile>${basedir}/src/main/resources/META-INF/TaxationCustomsWsImportBindings.xml</bindingFile>
                </bindingFiles>
            </configuration>
            <id>wsimport-generate-checkTinService</id>
            <phase>generate-sources</phase>
        </execution>
    </executions>
    ...

您可以看到使用之前创建的绑定文件的确切配置:

<bindingFiles>
       <bindingFile>${basedir}/src/main/resources/META-INF/TaxationCustomsWsImportBindings.xml</bindingFile>
</bindingFiles>

4-最后转向刷新de WS Reference,更改将应用​​于wsimport的过程。

于 2020-11-25T10:02:36.733 回答