Hi i have a restful project and I make rest calls from client side. But for a case I need to make restful calls from server side. How can i do that?

link|improve this question

76% accept rate
You mean calls to another server? and not to the client, I hope. – Jonas Aug 4 '11 at 6:42
yes calls to another server – Sedat Başar Aug 4 '11 at 6:43
feedback

3 Answers

up vote 3 down vote accepted

You can use Apache HttpClient library for this.

link|improve this answer
feedback

As mentioned by @Jonas use HttpClient. Actually there is no difference between client and server in this case. Your server is a client of another server.

But be careful:

if you are in JEE environment you are not expected to open sockets yourself (at least from EJB). The "right" solution is using JCA to connect to other systems. I once implemented JCA adapter: it is not so hard but requires some efforts.

Probably easier solution is to put the code that opens sockets into servlet, e.g. one servlet turns to another one (running on different server) over HTTP. I think it is not strongly forbidden by JEE spec.

link|improve this answer
feedback

The JAX/RS client libraries may be used in server code.

My blog has more detail, but here's the relevant code. I'm using Apache Wink.

Resource editionResource = libraryClient.resource( 
                 "http://localhost:9085/LibraryWink/library/editions” 
                 );

BookEdition theEdition = new BookEdition( 
          /* title, isbn etc */ 
          );

ClientResponse response = editionResource  
   .contentType(MediaType.APPLICATION_JSON)  
   .accept(MediaType.APPLICATION_JSON)                     
   .post(theEdition);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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