Javaプロジェクトでwsimportを使用して、3つのSOAP Webサービスのソースを生成します。最初の2つは問題なく動作します。JAX-WSMavenプラグインを使用してWSDLファイルを取得し、対応するJavaソースファイルを生成します。
これは、1つのWebサービスでは失敗します。次のエラーが発生します。
[jaxws:wsimport]
Processing: /home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl
jaxws:wsimport args: [-s, /home/me/NetBeansProjects/Admin/AdminWeb/target/generated-sources/jaxws-wsimport, -d, /home/me/NetBeansProjects/Admin/AdminWeb/target/classes, -verbose, -catalog, /home/me/NetBeansProjects/Admin/AdminWeb/src/jax-ws-catalog.xml, -wsdllocation, http://erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx?WSDL, -target, 2.0, -extension, -Xnocompile, /home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl]
parsing WSDL...
src-resolve.4.2: Error resolving component 's:schema'. It was detected that 's:schema' is in namespace 'http://www.w3.org/2001/XMLSchema', but components from this namespace are not referenceable from schema document 'file:/home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl#types?schema1'. If this is the incorrect namespace, perhaps the prefix of 's:schema' needs to be changed. If this is the correct namespace, then an appropriate 'import' tag should be added to 'file:/home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl#types?schema1'.
line 80 of file:/home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl#types?schema1
undefined element declaration 's:schema'
line 80 of file:/home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl
undefined element declaration 's:schema'
line 127 of file:/home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl
undefined element declaration 's:schema'
line 142 of file:/home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl
このWSDLファイルと機能するファイルの違いは、エラーメッセージに示されている80、127、142行目です。
<s:element ref="s:schema" />
注:wsdlファイルのルート要素は "s"名前空間を次のように定義します。
xmlns:s="http://www.w3.org/2001/XMLSchema"
私は自分の研究をしました。 「<s:element ref="s:schema" />
を使用しない」から「インポートタグを使用する」、古いJava.netフォーラムにあると思われるいくつかの知られていない解決策まで、他の人々も同様の問題を抱えているようです(以前はJava知識)の現代のアレクサンドリア図書館の放火、それは取り下げられました。
問題のタグを含む要素のすぐ内側に次のインポート文を入れてみました:<s:import namespace="http://www.w3.org/2001/XMLSchema" schemaLocation="http://www.w3.org/2001/XMLSchema.xsd" />
。 wsimportは私に新しいエラーを与えます:
[jaxws:wsimport]
Processing: /home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl
jaxws:wsimport args: [-s, /home/me/NetBeansProjects/Admin/AdminWeb/target/generated-sources/jaxws-wsimport, -d, /home/me/NetBeansProjects/Admin/AdminWeb/target/classes, -verbose, -catalog, /home/me/NetBeansProjects/Admin/AdminWeb/src/jax-ws-catalog.xml, -wsdllocation, http://erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx?WSDL, -target, 2.0, -extension, -Xnocompile, /home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl]
parsing WSDL...
Element "{http://www.w3.org/2001/XMLSchema}annotation" shows up in more than one properties.
line 248 of http://www.w3.org/2001/XMLSchema.xsd
The following location is relevant to the above error
line 242 of http://www.w3.org/2001/XMLSchema.xsd
Property "Any" is already defined. Use <jaxb:property> to resolve this conflict.
line 108 of file:/home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl
The following location is relevant to the above error
line 109 of file:/home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl
Property "Any" is already defined. Use <jaxb:property> to resolve this conflict.
line 184 of file:/home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl
The following location is relevant to the above error
line 185 of file:/home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl
Property "Any" is already defined. Use <jaxb:property> to resolve this conflict.
line 199 of file:/home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl
The following location is relevant to the above error
line 200 of file:/home/me/NetBeansProjects/Admin/AdminWeb/src/wsdl/erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl
このエラーで参照される行108および109は次のとおりです(行184-5、199-200は類似しています)。
<s:any minOccurs="0" maxOccurs="unbounded" namespace="http://www.w3.org/2001/XMLSchema" processContents="lax" />
<s:any minOccurs="1" namespace="urn:schemas-Microsoft-com:xml-diffgram-v1" processContents="lax" />
Jaxws-maven-pluginを1.10から2.2にアップグレードしてみました。同じ問題。
何か案は?さらに必要な情報はありますか?簡潔にするために、pom.xmlおよびService.asmx.wsdlファイルは省略しましたが、より重要な情報が含まれている場合は、それらを含めることができます。
ありがとうございました!
これが同じ問題を抱えている別の人です (これが潜在的な回答者に役立つ場合)。 さらに別の同様の問題があります。 よくわかりません この記事 ですが、SOAPを解析する必要があることを意味しているようですXMLを手動で!ホラー!
Jaxws-maven-plugin 2.2に更新しながら、 Vivek Pandeyのメソッド をMavenに適応させることで、これを解決しました。後世のためにここで繰り返します。
このXJBカスタマイズファイル (以下を参照)をデフォルトのバインディングファイルディレクトリに置き、wsimportをバインドして http://www.w3.org/2001/XMLSchema.xsd 。
前述のXMLファイルxsd.xjbの内容は、デフォルトのバインディングファイルディレクトリにありますが、次のとおりです(クレジットはKohsukeに送られます)。
<?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>
変更点を記した私のPOMファイルの関連部分は次のとおりです。
<plugin>
<!-- CHANGE: updated groupId and version -->
<groupId>org.jvnet.jax-ws-commons</groupId>
<artifactId>jaxws-maven-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>wsimport</goal>
</goals>
<configuration>
<!-- CHANGE: added args tag to bind http://www.w3.org/2001/XMLSchema.xsd -->
<args>
<arg>-b</arg><arg>http://www.w3.org/2001/XMLSchema.xsd</arg>
</args>
<wsdlFiles>
<wsdlFile>erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl</wsdlFile>
</wsdlFiles>
<wsdlLocation>http://erp-app-devel.srv.mycompany.ca/EgTestReportEngine/Service.asmx.wsdl</wsdlLocation>
<staleFile>${project.build.directory}/jaxws/stale/Service.asmx.stale</staleFile>
<!-- CHANGE: added bindingFiles tag to bind XJB customization, located at the default binding files directory, MyProject/src/jaxws/xsd.xjb . -->
<bindingFiles>
<bindingFile>xsd.xjb</bindingFile>
</bindingFiles>
</configuration>
<id>wsimport-generate-egtestreportengine</id>
<phase>generate-sources</phase>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>javax.xml</groupId>
<artifactId>webservices-api</artifactId>
<version>1.4</version>
</dependency>
</dependencies>
<configuration>
<sourceDestDir>${project.build.directory}/generated-sources/jaxws-wsimport</sourceDestDir>
<xnocompile>true</xnocompile>
<verbose>true</verbose>
<extension>true</extension>
<catalog>${basedir}/src/jax-ws-catalog.xml</catalog>
<target>2.0</target>
</configuration>
</plugin>
Nickのソリューションが機能するためには、これらの2つのjvm引数をpom.xmlに追加する必要がある場合があります。
org.xml.sax.SAXParseException; systemId: http://www.w3.org/2001/XMLSchema.xsd ; lineNumber:67; columnNumber:11;外部DTD:外部DTD 'XMLSchema.dtd'の読み取りに失敗しました。accessExternalDTDプロパティによって設定された制限のため、 'http'アクセスが許可されていません。
[警告] schema_reference:スキーマドキュメント 'xml.xsd'の読み取りに失敗しました。accessExternalSchemaプロパティによって制限が設定されているため、 'http'アクセスが許可されていません。 http://www.w3.org/2001/XMLSchema.xsd の91行目
それらをpom.xmlに追加するだけです
-Djavax.xml.accessExternalDTD=all
-Djavax.xml.accessExternalSchema=all
<vmArgs>
<vmArg>-Djavax.xml.accessExternalDTD=all</vmArg>
<vmArg>-Djavax.xml.accessExternalSchema=all</vmArg>
</vmArgs>
同じ問題が以下のコマンドで修正されました:
wsimport -b http://www.w3.org/2001/XMLSchema.xsd -b xsd.xjb service.wsdl
どこ xsd.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>
モデルデータのこの特定のビットを実際に気にしない場合は、JAXBバインディングファイルを使用して、実際に試行するのではなく、タイプをDOM Element
であるプロパティに問題のビットをマップするようにJAXBに指示できます。それらを通常のJAXBクラスにデータバインドします。 非公式JAXBガイド には、この手法に関するセクションがあります。
これは最終的に私のために働いているようです。 Apache maven cfxプラグインを使用しています
<plugin>
<groupId>org.Apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<additionalJvmArgs>
-Djavax.xml.accessExternalDTD=all
</additionalJvmArgs>
<sourceRoot>${basedir}/src/main/generated</sourceRoot>
<wsdlOptions>
<wsdlOption>
<extraargs>
<extraarg>-autoNameResolution</extraarg>
<extraarg>-impl</extraarg>
<extraarg>-verbose</extraarg>
<extraarg>-b</extraarg>
<extraarg>http://www.w3.org/2001/XMLSchema.xsd</extraarg>
<extraarg>-p</extraarg>
<extraarg>com.nevado.travelstudio</extraarg>
</extraargs>
<!-- <bindingFiles> <bindingFile>${basedir}/src/main/resources/wsdl/mybindings.xjb</bindingFile>
</bindingFiles> -->
<wsdl>${basedir}/src/main/resources/wsdl/B2.wsdl</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2Java</goal>
</goals>
</execution>
</executions>
</plugin>
これらの変更に伴い、jaxp.propertiesファイルを..Java/jdk/jre/libフォルダに次のプロパティで作成する必要がありました。
-Djavax.xml.accessExternalDTD=all