Comment Appeler java Reste un WebService à l'intérieur d'une Servlet

J'ai un java Reste WebService URL http://localhost:8080/WebServiceEx/rest/hello/dgdg

Lorsque j'exécute l'URL du WebService Méthode Retourne une Chaîne de caractères

Mon Exigence est d'appeler le au-dessus d'un WebService URL à l'intérieur d'une Servlet ,Pouvait-on Aider?

ServletCode:

public Class StoreServlet extends HttpServlet{
 protected void doPost(HttpServletRequest req, HttpServletResponse resp)
      throws IOException, ServletException {

//Invoke WebService and Get Response String Here


} 

WebService Code:

public class HelloWorldService {
    @Context 
    private ServletContext context;

    @GET
    @Path("/{param}")
    public Response getMsg(@PathParam("param") String msg) {

                    return Response.status(200).entity(msg).build();    

                }
    }