|
|
@@ -427,7 +427,7 @@ public class NotaryDomainImpl implements NotaryDomain {
|
|
|
JSONObject params = new JSONObject();
|
|
|
params.put("base64", base64);
|
|
|
HttpClientUtil httpClientUtil = new HttpClientUtil();
|
|
|
- String xmlData = httpClientUtil.doPost("http://192.168.0.140:8831/sp/upload/uploadFaceImage",params.toString(),"utf-8");
|
|
|
+ String xmlData = httpClientUtil.doPost("https://fqgz.flowbb.cn:6001/sp/upload/uploadFaceImage",params.toString(),"utf-8");
|
|
|
JSONObject result = JSONObject.parseObject(xmlData);
|
|
|
String code = result.getString("code");
|
|
|
if ("100".equals(code)){
|
|
|
@@ -443,7 +443,6 @@ public class NotaryDomainImpl implements NotaryDomain {
|
|
|
fileInfo.setFileName(split[split.length-1]);
|
|
|
fileInfo.setPath(s);
|
|
|
fileInfoMapper.insert(fileInfo);
|
|
|
- uploadFile(base64);
|
|
|
return fileInfo;
|
|
|
}
|
|
|
|