Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can I have the same service having simultaneously both REST and SOAP interfaces? I currently have a REST service implemented in Java using EJB and Jersey:

import javax.ejb.EJB;
import javax.ejb.Stateless;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;  

@Stateless
@Path("test")
public class TestExternalService {

    @EJB
    private com.test.ejb.db.TestService testService;

    @GET
    @Path("/status")
    @Produces("text/*")
    public String status() {
        return "ok";
    }
}

How can I make changes in my class to also implement a SOAP interface?

share|improve this question
I think you should do one or the other as their purposes and implementations are very different. See docs.oracle.com/javaee/6/tutorial/doc/gjbji.html and www2008.org/papers/pdf/p805-pautassoA.pdf for more info. If you DO decide to implement both, you should certainly separate them out into different classes. – Zack Macomber Jun 6 '12 at 13:55

2 Answers

Basically, Jersey is JAX-RS implementation, so you cannot have SOAP web-services here. You could take Apache CXF, which is implementation for both JAX-RS and JAX-WS and you would be able to combine your web-services in both architectural styles.

share|improve this answer

Here is a solution to expose an implementation as both rest and soap web service. Similar to what zack suggested in the comment. You may have to do some refactoring if you already have the service supporting jax-rs as you pasted above.

The solution is to have two sets of interfaces and implementation. One supporting jax-rs and one jax-ws. You can still have your processing done in the ejb.

Example,

Do not annotate your ejb (say EService) with jax-rs.

Have an interface X and Ximpl class to support restful calls. This will support jax-rs, so basically be annotated with jax-rs. Ofcourse, this can still use jersey. Ximpl will reference the EJB EService and delegate the processing to it.

Have an interface Y and YImpl to support soap based calls. This will support jax-ws, so will be annotated with jax-ws. Yimpl will reference the EJB EService and delegate the processing to it.

If you have a web deployment descriptor, in your web deployment descriptor define different servlets and mapping for rest and soap.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.