2019-12-20 19:21:55 +08:00

40 lines
1.9 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 static final String KEYSTORE_FILE = "C:/Users/luojian/Desktop/安鹏/接口/01接口文档资料/鹏元测试证书/pytest.jks";
// public final static String KEYSTORE_FILE = "D1:/tenwaWork/apzl/08年度2019鹏元/03执行/01接口文档资料/鹏元测试证书/pytest.jks";
public final static String KEYSTORE_PASSWORD = "123456";
public static final String TRUSTSTORE_FILE = "C:/Users/luojian/Desktop/安鹏/接口/01接口文档资料/鹏元测试证书/pytest2.jks";
// 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 = "";
}