Hi,
this the simple source code i used in my web service:
@Stateless
@Remote(EJB3RemoteInterface.class)
@RemoteBinding(jndiBinding = "/ejb3/EJB3EndpointInterface")
@WebService
@SOAPBinding(style = SOAPBinding.Style.RPC)
public class EJB3Bean01 implements EJB3RemoteInterface
{
@WebMethod
public String echo(String input)
{
return input;
}
}
//------------
public interface EJB3RemoteInterface
{
String echo(String input);
}
//----------
and then i packaged them in jar file
and deployed.
can any body tell me what is wrong and why my handler doesnot print anything, please.
any seggestion is appreciated
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4027696#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...