|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package com.weaver.seconddev.interfaces.workflow.action;
|
|
|
|
|
|
|
|
|
|
import com.weaver.seconddev.interfaces.prop.ConfigProp;
|
|
|
|
|
import org.apache.axiom.om.OMAbstractFactory;
|
|
|
|
|
import org.apache.axiom.om.OMElement;
|
|
|
|
|
import org.apache.axiom.om.OMFactory;
|
|
|
|
@ -44,7 +45,8 @@ public class ISO_ExternalFilesApproveAction extends BaseBean implements Action,
|
|
|
|
|
// 对应E9的请求信息对象
|
|
|
|
|
@Autowired
|
|
|
|
|
private RequestInfo requestInfoTemp;
|
|
|
|
|
|
|
|
|
|
@Autowired
|
|
|
|
|
private ConfigProp configProp;
|
|
|
|
|
private static final Logger logger_1ddefef0 = LoggerFactory.getLogger(ISO_ExternalFilesApproveAction.class);
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@ -161,7 +163,8 @@ public class ISO_ExternalFilesApproveAction extends BaseBean implements Action,
|
|
|
|
|
option.setTimeOutInMilliSeconds(30000);
|
|
|
|
|
option.setAction("http://tempuri.org/newExternalFiles");
|
|
|
|
|
// https://testecmapi.hengtonggroup.com.cn:8012/workflow.asmx
|
|
|
|
|
String url = Util.null2String(I18nContextUtil.getBean(Environment.class).getProperty("htecmoasync.isoresulturl")).trim();
|
|
|
|
|
// String url = Util.null2String(I18nContextUtil.getBean(Environment.class).getProperty("htecmoasync.isoresulturl")).trim();
|
|
|
|
|
String url = configProp.getIsoresulturl();
|
|
|
|
|
// 值为targetNamespace+methodName
|
|
|
|
|
EndpointReference epfs = new EndpointReference(url);
|
|
|
|
|
option.setTo(epfs);
|
|
|
|
@ -227,7 +230,8 @@ public class ISO_ExternalFilesApproveAction extends BaseBean implements Action,
|
|
|
|
|
option.setTimeOutInMilliSeconds(30000);
|
|
|
|
|
option.setAction("http://tempuri.org/revisedExternalFiles");
|
|
|
|
|
// https://testecmapi.hengtonggroup.com.cn:8012/workflow.asmx
|
|
|
|
|
String url = Util.null2String(I18nContextUtil.getBean(Environment.class).getProperty("htecmoasync.isoresulturl")).trim();
|
|
|
|
|
// String url = Util.null2String(I18nContextUtil.getBean(Environment.class).getProperty("htecmoasync.isoresulturl")).trim();
|
|
|
|
|
String url =configProp.getIsoresulturl();
|
|
|
|
|
// 值为targetNamespace+methodName
|
|
|
|
|
EndpointReference epfs = new EndpointReference(url);
|
|
|
|
|
option.setTo(epfs);
|
|
|
|
@ -293,7 +297,8 @@ public class ISO_ExternalFilesApproveAction extends BaseBean implements Action,
|
|
|
|
|
option.setTimeOutInMilliSeconds(30000);
|
|
|
|
|
option.setAction("http://tempuri.org/ExternalFilesToVoid");
|
|
|
|
|
// https://testecmapi.hengtonggroup.com.cn:8012/workflow.asmx
|
|
|
|
|
String url = Util.null2String(I18nContextUtil.getBean(Environment.class).getProperty("htecmoasync.isoresulturl")).trim();
|
|
|
|
|
// String url = Util.null2String(I18nContextUtil.getBean(Environment.class).getProperty("htecmoasync.isoresulturl")).trim();
|
|
|
|
|
String url =configProp.getIsoresulturl();
|
|
|
|
|
// 值为targetNamespace+methodName
|
|
|
|
|
EndpointReference epfs = new EndpointReference(url);
|
|
|
|
|
option.setTo(epfs);
|
|
|
|
@ -359,7 +364,8 @@ public class ISO_ExternalFilesApproveAction extends BaseBean implements Action,
|
|
|
|
|
option.setTimeOutInMilliSeconds(30000);
|
|
|
|
|
option.setAction("http://tempuri.org/ExternalFilesReissue");
|
|
|
|
|
// https://testecmapi.hengtonggroup.com.cn:8012/workflow.asmx
|
|
|
|
|
String url = Util.null2String(I18nContextUtil.getBean(Environment.class).getProperty("htecmoasync.isoresulturl")).trim();
|
|
|
|
|
// String url = Util.null2String(I18nContextUtil.getBean(Environment.class).getProperty("htecmoasync.isoresulturl")).trim();
|
|
|
|
|
String url =configProp.getIsoresulturl();
|
|
|
|
|
// 值为targetNamespace+methodName
|
|
|
|
|
EndpointReference epfs = new EndpointReference(url);
|
|
|
|
|
option.setTo(epfs);
|
|
|
|
|