dbrmantech opened a new issue, #504:
URL: https://github.com/apache/camel-karaf/issues/504
Recently upgraded to karaf 4.4.6 and camel 4.7.
We found out the hard way that we had some bugs in our XSLT. It was
generating XML like this:
```
<ITAsset (snip)>
<vulnerability>
<exploitAvailable>false</exploitAvailable>
</vulnerability>
</ITAsset>
```
exploitAvailable in the vuln bean is an int. Oops.
We unmarshal to our java objects like this in our XML blueprints:
```
<unmarshal>
<jaxb prettyPrint="false" contextPath="foo.model"/>
</unmarshal>
```
With true or false, It just hangs silently, never returns. If we pass an
int, all is well.
Is this a known issue? Is there a work around or some config we could set
so if we goof again, it gives us some error message instead of a silent hang?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]