[jboss-user] [JBoss Seam] - XML-RPC service in JBoss Seam

Mike7 do-not-reply at jboss.com
Wed Sep 26 06:11:07 EDT 2007


How can I create a Xml-Rpc Service instead of a (Soap) Webservice?

@Stateless
  | @Name("register")
  | @WebService
  | public class RegisterAction implements Register
  | {
  | 
  |    @In
  |    private User user;
  | 
  |    @PersistenceContext
  |    private EntityManager em;
  | 
  |    @Logger
  |    private static Log log;
  | 
  |    @WebMethod
  |    public String registerUser(String username, String phonenumber)
  |    {
  |      return "Herzlich Willkommen, "+username;
  |    }
  | }

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4088756#4088756

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



More information about the jboss-user mailing list