0 Replies Latest reply on Feb 12, 2012 2:36 AM by aupres

    clientsample codes are not generated in user-created folder.

    aupres

      I made some web services codes in default 'src' folder with jbossws-cxf frame.

       

      package com.aaa.ws;

       

      import javax.jws.WebService;

       

      @WebService
      public interface IHelloWorldPort {

       

        @WebMethod

        @WebResult
        public String sayHello(@WebParam String name);

      }

       

      ===================

       

      package com.aaa.ws;

       

      import javax.jws.WebService;

       

      @WebService
      public class HelloWorldBean implements IHelloWorldPort {

        @Override
        public String sayHello(String name) {
       

          // TODO Auto-generated method stub
          return "Hello " + name ;
        }

      }

       

      And I generated jboss web service files with the jbossws-cxf 4.0.1GA frame in the temporary folder to keep the original files.

      But clientsample codes were not made in the temporary folder. The clientsample codes were overwritten only in the

      default - 'src' folder. Codes were overwritten in 'src' folder, so I couldn't keep the original sources.

       

      Is it a bug of jbossws-cxf? how can i get the clientsample codes in the temporarily-created folder to keep the original

      sources? Pls, help me.

       

      Best Regards

       

      Joseph