You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
843 B
27 lines
843 B
2 years ago
|
package com.eco.plugin.xx.zgrsauth.webservice;
|
||
|
|
||
|
import com.eco.plugin.xx.zgrsauth.utils.FRUtils;
|
||
|
|
||
|
public class ExeHttp {
|
||
|
|
||
|
public static void main(String []args){
|
||
|
ExeHttp t = new ExeHttp();
|
||
|
System.out.println(t.exeWebService4queryDimension(18100495, "FR_ID0001","FR0001"));
|
||
|
|
||
|
}
|
||
|
|
||
|
public static String exeWebService4queryDimension(Integer useraccount,String dimensionCd, String systemCd){
|
||
|
|
||
|
String result = "";
|
||
|
try {
|
||
|
AuthServerServiceImplService service = new AuthServerServiceImplService();
|
||
|
|
||
|
IAuthServerService authServerServiceImplPort = service.getAuthServerServiceImplPort();
|
||
|
result = authServerServiceImplPort.queryDimension(useraccount, dimensionCd, systemCd);
|
||
|
} catch (Exception e) {
|
||
|
FRUtils.FRLogInfo("------YZL_PubfunJson-------ExeHttp---error---------------:" + e.getMessage());
|
||
|
}
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
}
|