Dazel
Dazel

Reputation: 1

CMD commands: Conjuction [wsgen: wsdl and inlineScemas]

-inlineSchemas This option produces inline schemas in the generated wsdl. This must be used in conjunction with the -wsdl option.

Above lines are written in Oracle docs "https://docs.oracle.com/javase/9/tools/wsgen.htm#JSWOR739",

My command: wsgen -verbose -keep -cp . net.example.services.Tryservice -wsdl-inlineSchemas

where "net.example.services.Tryservice" is the path to class file of my java project and wsdl along with inlineSchemas are commands to generate wsdl.

Am i doing correct conjuction of both commands wsdl and inlineSchemas??

Thank you :)

Upvotes: 0

Views: 59

Answers (1)

Dazel
Dazel

Reputation: 1

The correct format is

wsgen -verbose -keep -cp . net.example.services.Tryservice -inlineSchemas -wsdl

Upvotes: 0

Related Questions