I'm trying to run this shell script:
set class=com.example.Greeting
set clpth=./war/WEB-INF/classes
set resourcedir=./war
set outsourcedir=./src
set outdir=./war/WEB-INF/classes
wsgen -cp "%clpth%" -wsdl -keep -r "%resourcedir%" -d "%outdir%" -s "%outsourcedir%" %class%
So, I copy each line in the cmd but when I copy the last line, this error appears:
"'wsgen' is not recognized as an internal or external command, operable program or batch file."
This is a shell script for a Web Service application in App Engine. I'm following this tutorial https://developers.google.com/appengine/articles/soap?hl=es but I don't know how to do the step called: 4. Run wsgen on the annoted class
Thanks!