I've forgotten the code of beispiel_9.EjbEndpoint is very simple:
package beispiel_9;
|
| import javax.ejb.Stateless;
| import javax.jws.WebMethod;
| import javax.jws.WebService;
|
|
| @WebService
| @Stateless
| public class EjbEndpoint {
|
| @WebMethod
| public String sayHello(String name)
| {
| return "Hallo "+name+"!";
| }
|
| }
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031813#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...