[WebMethod] public string index(string Action,string Message) { try { // 1. 使用 WebClient 下载 WSDL 信息。 WebClient web = new WebClient(); Stream stream = ...
分类:
Web程序 时间:
2020-07-17 19:39:38
阅读次数:
65
unit Unit1;interfaceuses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl ...
最近使用jmeter时,有部分接口一直在报错,内容如下两种 Response code:400 Response message:Bad Request Response code:Non HTTP response code: java.lang.IllegalArgumentException ...
分类:
其他好文 时间:
2020-07-17 13:48:08
阅读次数:
186
MQTT协议 写于2020.7.16 MQTT是什么 参考: https://mcxiaoke.gitbooks.io/mqtt-cn/content/mqtt/01-Introduction.html MQTT协议中文版本教程? https://www.runoob.com/w3cnote/mqt ...
分类:
其他好文 时间:
2020-07-16 21:18:51
阅读次数:
68
记录日志代码 /** * * @param conn 连接 * @param name 模块名字 * @param message 日志信息 * @param level 日志等级 * @param timeout 重试时间 */ public static void logCommon( Jedi ...
分类:
其他好文 时间:
2020-07-16 21:07:34
阅读次数:
102
node {stage 'S1' // Define an input step and capture the outcome from it.def outcome = input id: 'Run-test-suites',message: 'Workflow Configuration',o ...
分类:
其他好文 时间:
2020-07-16 21:04:26
阅读次数:
110
Copyright(c)1993-2004MicrosoftCorp.#Thisfilecontainsportnumbersforwell-knownservicesdefinedbyIANA#Format:#<servicename><portnumber>/<protocol>[aliases...][#<comment>]#echo7/tcp
分类:
其他好文 时间:
2020-07-16 12:13:31
阅读次数:
109
类 public class jarTs { public static void main(String[] args) throws IOException { String path =System.getProperty("user.dir"); System.out.println("us ...
分类:
编程语言 时间:
2020-07-16 11:49:30
阅读次数:
58
Logstash连接MySQL 下载MySQL驱动 打开驱动jar包下载地址:https://dev.mysql.com/downloads/connector/j/ 选择平台无关的版本 下载zip版本,在本地打开,解压出jar文件 因为logstash在ubuntu下的默认配置文件路径是 /etc ...
分类:
数据库 时间:
2020-07-15 23:45:46
阅读次数:
100
Java-文件加密传输(摘要+签名) 文件加密传输其实就是将文件以二进制格式进行传输。其中加密文件主要由:源文件二进制文件、源文件数字摘要、数字签名、特征码等等组成。摘要可确认文件的唯一性,数字签名则是对摘要进行了加密。 本文主要记录使用RSA加密方式其中生成RSA密钥主要介绍二种方式: 1、安装o ...
分类:
编程语言 时间:
2020-07-15 23:37:47
阅读次数:
86