File tree Expand file tree Collapse file tree
jaxrpc/jaxrpc-endpoint/src/test/java/org/javaee7/jaxrpc/endpoint Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -32,10 +32,11 @@ public static WebArchive createDeployment() {
3232 WebArchive war =
3333 create (WebArchive .class )
3434 .addClasses (HelloService .class , HelloServiceImpl .class )
35+ .addAsWebInfResource (new File (WEBAPP_SRC + "/WEB-INF/wsdl" , "MyHelloService.wsdl" ), "wsdl/MyHelloService.wsdl" )
3536 .addAsWebInfResource (new File (WEBAPP_SRC + "/WEB-INF" , "mapping.xml" ))
36- .addAsWebInfResource (new File (WEBAPP_SRC + "/WEB-INF" , "web.xml" ))
3737 .addAsWebInfResource (new File (WEBAPP_SRC + "/WEB-INF" , "webservices.xml" ))
38- .addAsWebInfResource (new File (WEBAPP_SRC + "/WEB-INF/wsdl" , "MyHelloService.wsdl" ), "wsdl/MyHelloService.wsdl" );
38+ .addAsWebInfResource (new File (WEBAPP_SRC + "/WEB-INF" , "web.xml" ))
39+ ;
3940
4041 System .out .println (war .toString (true ));
4142 System .out .println ("************************************************************" );
You can’t perform that action at this time.
0 commit comments