*/
public Object invoke(InContext context, IXMLReader xmlReader) throws IOException, WsException {
String content = null;
XmlReaderWrapper rdr = XmlReaderWrapper.createXmlReaderWrapper(xmlReader);
try {
rdr.parsePastStartTag(null, ELEMENT_NAME);
content = rdr.parseContentText(null, ELEMENT_NAME);
} catch (JiBXException e) {
throw new WsException("Unable to parse exception: ", e);
}
return content;