Tagged Questions
0
votes
1answer
70 views
Setting null string as xsi:nil=true
I have this class
package com.ni.schemas.provider_framework._1.providers;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import ...
0
votes
1answer
576 views
Posting JSON via Jersey
I have this code
ClientConfig config = new DefaultClientConfig();
Client client = Client.create(config);
client.addFilter(new HTTPBasicAuthFilter(adminUser, adminPass));
...
0
votes
0answers
341 views
Using jersey client API to read from handcrafted XML
I'm trying to use the jersey client API and JAXB bindings to receive XML data from a third-party REST service. The XML the service returns is somewhat less than perfect:
looks like there's no ...
1
vote
1answer
3k views
Spring RestTemplate - no suitable HttpMessageConverter found for response type [..] and content type [application/xml]
I have a problem accessing a REST service with the RestTemplate. I've already managed to user the MarshallingConverter to access one other service, and everything worked fine. I have copied this ...
1
vote
1answer
548 views
JAXB and Entity Class validation
For a REST-Webservice i had to validate incoming Data.
Is is possible to validate incoming data with an Entity Class and JAXB , instead of xsd
1
vote
1answer
2k views
Problem implementing GET REST service due to JAXBException: IllegalAnnotationExceptions
I am having a really strange problem implementing Java REST service. I am trying receive the following model:
@Data @EqualsAndHashCode(callSuper=false, of={"primaryKey"})
@Entity @Table(name = ...