diff --git a/com.actionsoft.apps.coe.pal.publisher/lib/com.actionsoft.apps.coe.pal.publisher.jar b/com.actionsoft.apps.coe.pal.publisher/lib/com.actionsoft.apps.coe.pal.publisher.jar index 6c048b3d..65b4bb51 100644 Binary files a/com.actionsoft.apps.coe.pal.publisher/lib/com.actionsoft.apps.coe.pal.publisher.jar and b/com.actionsoft.apps.coe.pal.publisher/lib/com.actionsoft.apps.coe.pal.publisher.jar differ diff --git a/com.actionsoft.apps.coe.pal.publisher/src/com/actionsoft/apps/coe/pal/publisher/pubEvent/ProcessEndAfterEvent_new.java b/com.actionsoft.apps.coe.pal.publisher/src/com/actionsoft/apps/coe/pal/publisher/pubEvent/ProcessEndAfterEvent_new.java index e0e79b0d..0b237f51 100644 --- a/com.actionsoft.apps.coe.pal.publisher/src/com/actionsoft/apps/coe/pal/publisher/pubEvent/ProcessEndAfterEvent_new.java +++ b/com.actionsoft.apps.coe.pal.publisher/src/com/actionsoft/apps/coe/pal/publisher/pubEvent/ProcessEndAfterEvent_new.java @@ -1046,7 +1046,7 @@ public class ProcessEndAfterEvent_new extends ExecuteListener implements Execute String readurl = SDK.getAppAPI().getProperty("com.awspaas.user.apps.yili.integration", "readurl"); UtilUrl uc=new UtilUrl(); String postSoap =uc.doPostSoap(readurl, xmlStr, ""); - Document document = uc.parseText(postSoap); + Document document = DocumentHelper.parseText(postSoap); Element rootElement = document.getRootElement(); Element result = rootElement.element("Body").element("serviceResponse").element("out"); String resultString = result.getData().toString(); @@ -1206,7 +1206,7 @@ public class ProcessEndAfterEvent_new extends ExecuteListener implements Execute String readurl = SDK.getAppAPI().getProperty("com.awspaas.user.apps.yili.integration", "readurl"); UtilUrl uc=new UtilUrl(); String postSoap = uc.doPostSoap(readurl, xmlStr, ""); - Document document = uc.parseText(postSoap); + Document document = DocumentHelper.parseText(postSoap); Element rootElement = document.getRootElement(); Element result = rootElement.element("Body").element("serviceResponse").element("out"); String resultString = result.getData().toString();