0

I m trying to consume my web service using dynamic proxy where i get my interfaces at compile time and Services get fetched at the run time.

Documentation provides me wscompile command to generate the endpoint interfaces but this command don't exist in my system.

Need Help!!!!!

Shivani Garg
  • 735
  • 13
  • 37

1 Answers1

0

Well regarding:

Documentation provides me wscompile command to generate the endpoint interfaces but this command don't exist in my system.

Instead of wscompile, you could also use wsimport which is included in the Java JDK.

(if you ask about the difference: What is the difference between wscompile and wsimport?)

Community
  • 1
  • 1
Aydin K.
  • 3,309
  • 36
  • 44
  • But i want to create interface only as a stub and wsimport will bring all static stubs.Should i delete all other stubs and then use it as dynamic proxy? – Shivani Garg Mar 02 '16 at 10:23