私のWebサービスにアクセスするときに例外が発生します:
org.apache.ws.commons.schema.XmlSchemaException: 「jndi:/localhost/proj/WEB-INF/wsdl/testwsdl#types1」に関連する「test.xsd」でインポートされたドキュメントを見つけることができません。
私のWebサービスにアクセスするときに例外が発生します:
org.apache.ws.commons.schema.XmlSchemaException: 「jndi:/localhost/proj/WEB-INF/wsdl/testwsdl#types1」に関連する「test.xsd」でインポートされたドキュメントを見つけることができません。
戦争内から Web サービスにアクセスしていて、WEB-INF の下に .xsd ファイルを含めるのを忘れていました
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<webXml>src/main/webapp/WEB-INF/web.xml</webXml>
<webResources>
<resource>
<directory>../service/src/main/resources</directory>
<targetPath>WEB-INF/wsdl</targetPath>
<includes>
<include>*.wsdl</include>
<include>*.xsd</include>
</includes>
</resource>
</webResources>
</configuration>
</plugin>