Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7972029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T07:45:38+00:00 2026-06-04T07:45:38+00:00

I have several client classes sending a list of beans via PUT method to

  • 0

I have several client classes sending a list of beans via PUT method to a jersey webservice, so I have decided to refactor them into one class using generics. My first attempt was this:

public void sendAll(T list,String webresource) throws ClientHandlerException {
    WebResource ws = getWebResource(webresource);
    String response = ws.put(String.class, new GenericEntity<T>(list) {});
}

But when I called it with:

WsClient<List<SystemInfo>> genclient = new WsClient<List<SystemInfo>>();
genclient.sendAll(systemInfoList, "/services/systemInfo");

It gives me this error:

com.sun.jersey.api.client.ClientHandlerException: A message body writer for Java type, class java.util.ArrayList, and MIME media type, application/xml, was not found

So I have tried taking out the method the GenericEntity declaration, and it works:

public void sendAll(T list,String webresource) throws ClientHandlerException {
 WebResource ws = ws = getWebResource(webresource);
 String response = ws.put(String.class, list);
}

Calling it with:

 WsClient<GenericEntity<List<SystemInfo>>> genclient = new WsClient<GenericEntity<List<SystemInfo>>>();
 GenericEntity<List<SystemInfo>> entity;
 entity = new GenericEntity<List<SystemInfo>>(systemInfoList) {};
 genclient.sendAll(entity, "/services/systemInfo");

So, why can’t I generate a generic entity of a generic type inside the class, but doing it outside works?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T07:45:39+00:00Added an answer on June 4, 2026 at 7:45 am

    The class GenericEntity is used to go around the type erasure of Java. In the moment of creation of a GenericEntity instance Jersey tries to get the type information.

    In the first example the GenericEntity constructor is called with the parameter list of type T, in the second example it is called with the parameter systemInfoList, which seem to provide better type information. I have no idea what the GenericEntity constructor is doing internally, but due to the type erasure of Java it seems to be different for the two cases.

    It is never wise to try to go around the type erasure, because these solutions don’t work generally. You can blame Jersey for trying this (or blame Sun/Oracle for the type erasure).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For several applications I made for my current client I have shared user accounts.
We have a Java client which is using corba to call several third party
I have several textboxes where users can enter information into them. This can include
i have several classes with members called 'Id'. Originally i wanted to store these
I have a android webservice client application. I am trying to use the java
I have to create a pdf report from several classes that are going to
I have several Beans in my Application which getting updated regularly by the usual
Imagine you have an application with several hundreds of classes implementing dozens of high
I want to develop network client and server with GnuTLS. I have several options:
Within our environment we have a core codebase, and several client-specific implementations of that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.