Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was trying to develop an JAX WS web service but on running an an ant tool for WSGEN utility getting an error, My web service consist of one method add only, Below is my piece of code..

Interface :-

    package Demo;
import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.jws.soap.SOAPBinding.Style;

@WebService
@SOAPBinding(style = Style.DOCUMENT) //optional

public interface Calculator {

    @WebMethod  
    public int add(int a ,int b);

}

followed by the Service endpoint class

  package Demo;
import javax.jws.WebService;

//Service Implementation
@WebService(endpointInterface = "Demo.Calculator")

public class CalculatorImpl implements Calculator {

    @Override
    public int  add(int a ,int b) {

        return a+b;
    }
}

The build.xml is ..

<target name="wsgen" >

  <exec executable="wsgen">

   <arg line="-cp ./bin -keep -s ./src -d ./bin Demo.CalculatorImpl"/>

  </exec>

 </target>

</project>

But upon executing the build.xml getting this below error that is..

Buildfile: D:\saralworkspace\aa\build.xml
wsgen:

BUILD FAILED
D:\saralworkspace\aa\build.xml:5: Execute failed: java.io.IOException: Cannot run program "wsgen": CreateProcess error=2, The system cannot find the file specified

Please advise what went wrong in it and how to overcome from it..!!

share|improve this question

1 Answer

Use full file name in the executable tag

<exec executable="D:\Program Files\Wsge\wsgen">

Or make sure your wsgen program is on your CLASSPATH variable

share|improve this answer
Please could you post the complete example as I have not understood what you are trying to explain – user1694073 Oct 3 '12 at 18:19
I've just edited the post – Bruno Vieira Oct 3 '12 at 18:23
Thanks a lot..!! It works..!!thanks – user1694073 Oct 4 '12 at 3:03
If the answer is correct mark it as so. Otherwise Stack overflow won't know that your problem has been solved. – Bruno Vieira Oct 4 '12 at 10:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.