39 lines
1.7 KiB
Java
39 lines
1.7 KiB
Java
package com.tenwa.httpclient;
|
||
|
||
public class PyConfig {
|
||
|
||
// API域名
|
||
public final static String WEBSERVICE_HOST = ""; // 测试环境-http(具体以技术支持提供为准)
|
||
// public final static String WEBSERVICE_HOST = "https://test.pycredit.com:9443"; // 测试环境-https(具体以技术支持提供为准)
|
||
// public final static String WEBSERVICE_HOST = "http://www.pycredit.com:8001"; // 生产环境-http(具体以技术支持提供为准)
|
||
// public final static String WEBSERVICE_HOST = "https://www.pycredit.com:8443"; // 生产环境-https(具体以技术支持提供为准)
|
||
|
||
// 返回报文压缩的URL
|
||
public final static String WSDL_PATH_ZIP = "/services/WebServiceSingleQuery?wsdl";
|
||
|
||
// 返回报文不压缩的URL
|
||
public final static String WSDL_PATH_UNZIP = "/services/WebServiceSingleQueryOfUnzip?wsdl";
|
||
|
||
// 认证信息
|
||
public final static String USERID = "";
|
||
public final static String PASSWORD = "";
|
||
|
||
// 返回格式
|
||
public final static String FORMAT = "html";
|
||
// public final static String FORMAT = "html";
|
||
// public final static String FORMAT = "singlepdf";
|
||
// 是否测试模式
|
||
public final static boolean IS_TEST = true;
|
||
|
||
// 请求内容样本文件,实际中可使用具体对象组装
|
||
public final static String QUERY_XML_FILE = "d:/sample.xml";
|
||
|
||
public final static String KEYSTORE_FILE = "D1:/tenwaWork/apzl/08年度2019鹏元/03执行/01接口文档资料/鹏元测试证书/pytest.jks";
|
||
public final static String KEYSTORE_PASSWORD = "123456";
|
||
public final static String TRUSTSTORE_FILE = "D1:/tenwaWork/apzl/08年度2019鹏元/03执行/01接口文档资料/鹏元测试证书/pytest2.jks";
|
||
public final static String TRUSTSTORE_PASSWORD = "123456";
|
||
|
||
public final static String AES_KEY = "";
|
||
|
||
}
|