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
For text only elements, it is possible to read the content in START_ELEMENT event using getElementText(). The getElementText() should read the characters, and set the current event to END_ELEMENT. See here: http://java.sun.com/webservices/docs/1.5/api/javax/xml/stream/XMLStreamReader.html#getElementText()
But now, the current event after getElementText() is CHARACTERS, which is causing problems. It should be END_ELEMENT.
The text was updated successfully, but these errors were encountered:
For text only elements, it is possible to read the content in START_ELEMENT event using getElementText(). The getElementText() should read the characters, and set the current event to END_ELEMENT. See here: http://java.sun.com/webservices/docs/1.5/api/javax/xml/stream/XMLStreamReader.html#getElementText()
But now, the current event after getElementText() is CHARACTERS, which is causing problems. It should be END_ELEMENT.
The text was updated successfully, but these errors were encountered: