ejb « restful « Java Enterprise Q&A





1. Keeping a DCOM object alive from Java server on a REST invocation    stackoverflow.com

I'm implementing a REST API for my Java server. One of the of the resources obtained through the API is actually creating a C++ DCOM object and reflecting its values. The Java ...

2. Why can't i create a RESTful web service in ejb module?    stackoverflow.com

I am using Netbeans 6.8. I can see an option to create a web service in my independent ejb module but i can't seem to find an option to create a ...

3. Inject a EJB into JAX-RS (RESTfull service)    stackoverflow.com

I'm trying to inject a Stateless EJB into my JAX-RS webservice via Annotations. Unfortunately the EJB is just null and I get a NullPointerException when I try to use it.

@Path("book")
public ...

4. Exposing EJB method as REST service    stackoverflow.com

In J2EE 6 you can expose your EJB session bean as a REST web service as below

@Stateless
@Path("/test")
public class TestSessionBean {
  @GET
  @Produces("application/xml")
  public String getTest() {
   ...

5. How would I build Rest + EJB using Weblogic?    stackoverflow.com

I have a need to build 1 restful web service using weblogic. This web service will have parameters to select a what data the service should return. Like 'customer', or 'product'. Now ...

6. not able to invoke messge bean from restful webservice    stackoverflow.com

I am trying to create Restful Webservice as a client of Message Driven Bean, But when i invoke the restful method its giving me following error when

Connection connection =  ...

7. Do I annotate and EJB if its not published with RESTful interface?    stackoverflow.com

If I am using an EJB internally with a web application using RESTeasy 2.1 do I need to annotate the interface as described in this document? It seems as thought ...

8. How does the Integration Tier interface with the Business Tier?    stackoverflow.com

I need some advice on designing an "Integration Tier" of an N-Tiered system in Java. This tier is responsible for persisting and retrieving data for the "Business Tier" (located on ...

9. Java File Transfer, EJB, SOAP or REST, performance comparison    stackoverflow.com

I need to Transfer some files from one server to another, using java, and my performance is my top priority, which of these three options should be the right choice for ...





10. Expose an EJB as JAX-RS from an EJB-Module    stackoverflow.com

i know i can expose a class inside a web-module as a restful interface using only annotations. now i wanted to do something a little more complex. I'm having a stateless ejb ...

11. How to secure RESTful interface in JBoss AS 7    stackoverflow.com

After successfully migrating my RESTful application to JBoss AS7, I would like to re-enable authentication (I used BASIC auth over SSL). It seems that this is now possible without writing XML ...

12. BigDecimal issue while consuming webservice using JAAS (HTTP/1.1 505 HTTP Version Not Supported)    stackoverflow.com

I would like to thanks in advance for the attention! I'm developing an application which will consume web-services (EJBs 3.1, running on GlassFish under REST protocol). For authentication I'm using ...

13. EJB and Restful Web Services    forums.netbeans.org

Hello. I'm developing an application in netbeans using the "Enterprise Application" project. In my EJB modules I've the various session and entity beans. In the webapp module I "expose" some EJB as SOAP web services. I want also to expose some entities as restful web services but I'm facing a problem: 1) If I want to create restful services from entity ...

14. RESTful Web Services    java-forums.org

Hi ! Here is my problem : I'm creating a JavaFX application which communicate with a glassfish server with web services. I dont really use the "default" RESTful webservice generated by netbeans (Create WS from database.) but even if I do that, I can't make PUT request (with the default template here), even with only one table (no-FK and two columns, ...