0

Hellow. Can i generate classes from a web service in my java project using SOAPMessage?. This is the WS and I want generate the classes that are here. Thanks in advance.

Paul Dlc
  • 133
  • 1
  • 6

1 Answers1

1

You can different tools for generating Java classes from WSDL file.

Generate WSDL Stubs with Maven uses wsimport Maven plugin

How do you convert WSDLs to Java classes using Eclipse?

Generate Java Code from WSDL dialog, in case you are using IntelliJ IDEA

Eskandar Abedini
  • 2,090
  • 2
  • 13
  • Thanks for your answer. That works if i have the WSDL file, but how can i generate classes if i don't have the WSDL file? Because i tried that and don't works – Paul Dlc Jun 01 '22 at 17:05
  • Give the WSDL endpoint address. The link that you have mentioned in your question. – Eskandar Abedini Jun 01 '22 at 17:17