Implementing and webService and Client in Java with Eclipse

0

I'm having trouble implementing a webService in java with eclipse, some classes were not generated, however they are listed in the xsds files, I created a document in the docs to explain better.

Thank you

Here link

    
asked by anonymous 20.05.2015 / 15:47

1 answer

0

To implement use wsimport in cmd.

For you to view the help of his type in cmd wsimport -?

Thebasicoptionsyoucanuseare:

  • keep(itwillleavethesavedfonts)
  • p(tospecifyaspecificpackage,egbr.com.test)
  • d(wherethefileswillbecreated)

Important:IfyourWSDLhasauthentication(loginandpassword)youwillneedtocreateafilecontainingtheloginandpasswordwiththeWSDLURLanduseoption-Xauthfilewiththepathofthisfileforauthentication.

Samplefilecontent: link

    
17.06.2015 / 22:22