1

私のWebサービスにアクセスするときに例外が発生します:

org.apache.ws.commons.schema.XmlSchemaException: 「jndi:/localhost/proj/WEB-INF/wsdl/testwsdl#types1」に関連する「test.xsd」でインポートされたドキュメントを見つけることができません。

4

1 に答える 1

3

戦争内から 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>
于 2013-11-01T04:27:48.733 に答える