Boa noite!
Estou tentando aprender a criar um Webservice através do tutorial: http://netbeans.org/kb/docs/websvc/client_pt_BR.html
Porém alguns erros estão acontecendo.
O meu WS no servidor encontra-se implementado assim:
Feito isto no servidor web, eu criei um projeto java comum e implementei da seguinte forma.
Porém, na hora que eu mando executar gera a seguinte falha:
Compiling 1 source file to C:\Documents and Settings\Igor\Meus documentos\NetBeansProjects\TesteServicoWeb\build\classes
C:\Documents and Settings\Igor\Meus documentos\NetBeansProjects\TesteServicoWeb\src\testeservicoweb\Main.java:26: cannot find symbol
symbol : class CalculadoraService
location: package testeservicoweb
testeservicoweb.CalculadoraService service = new testeservicoweb.CalculadoraService();
C:\Documents and Settings\Igor\Meus documentos\NetBeansProjects\TesteServicoWeb\src\testeservicoweb\Main.java:26: cannot find symbol
symbol : class CalculadoraService
location: package testeservicoweb
testeservicoweb.CalculadoraService service = new testeservicoweb.CalculadoraService();
2 errors
C:\Documents and Settings\Igor\Meus documentos\NetBeansProjects\TesteServicoWeb\nbproject\build-impl.xml:552: The following error occurred while executing this line:
C:\Documents and Settings\Igor\Meus documentos\NetBeansProjects\TesteServicoWeb\nbproject\build-impl.xml:262: Compile failed; see the compiler error output for details.
FALHA NA CONSTRUÇÃO (tempo total: 1 segundo)
O que eu devo fazer para dar certo?