Element ele = DocumentHelper.parseText(xml).getRootElement();
String msgType = null;
if ((msgType = ele.elementText("MsgType")) == null) {
throw new WxException("cannot find MsgType Node!\n" + xml);
}
WxMsgTypeEnum msgTypeEnum = WxMsgTypeEnum.inst(msgType);
switch (msgTypeEnum) {
case EVENT:
return WxXmlUtil.getMsgEvent(ele);
case IMAGE:
return WxXmlUtil.getMsgImage(ele);