[jboss-user] [JBossWS] - Re: handler problem

khaledzarig do-not-reply at jboss.com
Tue Mar 13 16:58:15 EDT 2007


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#4027696

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4027696



More information about the jboss-user mailing list