-
I have a response from a RESTful XML webservice, stored as a string. String responseAsStr = response.readEntity(String.class); Im trying to …
- 504 views
- 0 answers
- 0 votes
-
I have a xml java bean class Data annotated with all the required xml annotations. Now when i try to …
- 455 views
- 1 answers
- 0 votes
-
I tried to develop multiple webservices using RESTEasy and Jetty. Im planning to make each of the webservice to have …
- 393 views
- 1 answers
- 0 votes
-
I have a very special case. There is a Java web server where I can use a plugin to define …
- 392 views
- 0 answers
- 0 votes
-
<dependency> <groupId>javax.ws.rs</groupId> <artifactId>javax.ws.rs-api</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-servlet</artifactId> <version>2.25.1</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> <type>jar</type> </dependency> </dependencies> Facing below error …
- 324 views
- 0 answers
- 0 votes
-
I want to integrate external Rest API in my project. /api/v1/authentications/new set client secrete key to header -returns some string …
- 389 views
- 0 answers
- 0 votes
-
I’m developing a RESTful API using JAX-RS. One of its interfaces serves the purpose of adding new entities to a …
- 397 views
- 0 answers
- 0 votes
-
<!doctype html>HTTP Status 500 – Internal Server Errorbody {font-family:Tahoma,Arial,sans-serif;} h1, h2, h3, b {color:white;background-color:#525D76;} h1 {font-size:22px;} h2 {font-size:16px;} h3 {font-size:14px;} …
- 0 views
- 0 answers
- 0 votes
-
Im struggling with a JonsbAdapter. Here is my Code: public class JsonbCusomerAdapter implements JsonbAdapter<CustomerEntity, JsonString> { @Override public JsonString adaptToJson(CustomerEntity …
- 369 views
- 0 answers
- 0 votes