You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The AxiomSoapMessageFactory class instantiates an internally-only accessible XMLInputFactory in its constructor like this:
inputFactory = XMLInputFactory.newInstance();
I would like to be able to turn text coalescing off to be able to handle very large text element content (i.e. base-64 encoded binary data) but without turning off coalescing the JVM will quickly run out of memory.
A way to configure the XMLInputFactory properties, for example to be able to specify a Map<String, Object> configurable property to pass to
inputFactory.setProperty(key, value);
There are many useful properties that can be configured: