python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to use jacksonxml as xmlDataFormat for bindingMode.auto in camel 3.3.0
I changed my version of camel from 3.1.0 to 3.3.0 and my setting for bindingMode.auto doesn't work. These are the currently configurations:
For the rest endpoint:
private void getBooksRoute() {
...
eepinera
Votes: 0
Answers: 1
UnrecognizedPropertyException for a ghost attribute in XML
I'm currently writing a program to display weather data from the MSC. I'm using Jackson 2.9.6 (as a different library didn't work on other versions) and the XML extension (also in Jackson 2.9.6) to ac...
tia tamera
Votes: 0
Answers: 2
Unable to unmarshal XML using Camel JacksonXML
I'm trying to simply unmarshal an XML file as below:
<?xml version="1.0" encoding = "UTF-8" ?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
...
Sammy65
Votes: 0
Answers: 1
Jackson XML Mapper: how to serialize Java object to org.w3c.dom.Document or javax.xml.transform.dom.DOMResult
It is very easy to serialize Java object to a string using something like:
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
...
public void serialize() throws Exception {
MyPojo object = n...
GoranM
Votes: 0
Answers: 0