Error:

1.Certificate signature validation failed , Signature does not match
use wrong public certification

2.java.net.SocketException:Connection reset
the client tls protocol version not match

3.javax.net.ssl.SSLException:Unrecognized SSL message,plaintext connection?
将SSL发去80或者将non-ssl发去443

4.javax.net.ssl.SSLPeerUnverifiedException:peer not authenticated
When use Fiddler to monitor SoapUI request , require to import certification into c:\Program Files(X86)\SmartBear\SoapUI-4.6.2\jre\lib\security\cacerts

5.javax.security.auth.login.FailedLoginException:key '...' cannot be retrieved,no key for alias '...' found a cerfificate entry instead in key store
If JKS use in server side, it should include private key and public certificatin . But there's no import key parameter in keytool function , so can use openssl convert the key and cert to PFX file and then use keytool to convert PFX file to JKS file.

Refers link:

tibco web service over ssl

https://tibcobwblog.com/2015/03/09/implementing-https-service-with-tibco-businessworks-6-1/comment-page-1/

c# web service over ssl

https://msdn.microsoft.com/en-us/library/hh556232(v=vs.110).aspx

解决PKIX(PKIX path building failed) 问题 unable to find valid certification path to requested target

http://www.cnblogs.com/wanghaixing/p/5630070.html java InstallCert 172.16.4.133

TLS/SSL Tools and Settings

https://technet.microsoft.com/en-us/library/cc776467(v=ws.10).aspx#w2k3tr_schan_tools_hivv

openssl制作双向认证经过验证可行
http://www.360doc.com/content/12/0524/15/2150778_213390447.shtml

verify TLS version

OpenSSL> s_client -showcerts -connect 172.16.3.170:443

OpenSSL> s_client -debug -connect 172.16.3.170:443

[解决]小程序要求的 TLS 版本必须大于等于 1.2

http://www.cnblogs.com/minamiko/p/6128455.html "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2" DisabledByDefault Enabled DWord 32bit Restatt!

generate CSR  from JKS

http://www.entrust.net/knowledge-base/technote.cfm?tn=8425
keytool -certreq -keyalg RSA -alias myalias -file certreq.txt -keystore c:\yoursite.mykeystore

generate CERT from JKS

keytool -export -alias certificatekey -keystore keystore.jks -rfc -file public.cert
keytool -importcert -file d:\temp\129\cert.cert -keystore d:\temp\qareq.jks -alias "qaca"

openssl、x509、crt、cer、key、csr、ssl、tls 这些都是什么鬼?

http://www.cnblogs.com/yjmyzz/p/openssl-tutorial.html

How to enable Schannel event logging in IIS

https://support.microsoft.com/en-us/help/260729/how-to-enable-schannel-event-logging-in-iis

SoapUI not working with fiddler for REST service testing

http://stackoverflow.com/questions/22569356/soapui-not-working-with-fiddler-for-rest-service-testing

keytool -importcert -file c:\FiddlerRoot.cer -keystore cacerts

TLS Cipher Suites in Windows 7

https://msdn.microsoft.com/en-us/library/windows/desktop/mt767780(v=vs.85).aspx

TLS 1.3 & TLS 1.2 Handshake & Resumption Supporting tagline

http://abbypan.github.io/2016/09/27/tls-13-resumption

Cipher suite

https://en.wikipedia.org/wiki/Cipher_suite

SSL协议详解

http://kb.cnblogs.com/page/162080/

密码套件格式:每个套件都以“SSL”开头,紧跟着的是密钥交换算法。用“With”这个词把密钥交换算法、加密算法、散列算法分开,例如:SSL_DHE_RSA_WITH_DES_CBC_SHA, 表示把DHE_RSA(带有RSA数字签名的暂时Diffie-HellMan)定义为密钥交换算法;把DES_CBC定义为加密算法;把SHA定义为散列算法。

How to restrict the use of certain cryptographic algorithms and protocols in Schannel.dll

https://support.microsoft.com/en-us/help/245030/how-to-restrict-the-use-of-certain-cryptographic-algorithms-and-protocols-in-schannel.dll

CertMgr.msc

How to disable SSL 2.0 or SSL 3.0 from IIS Server

https://blogs.msdn.microsoft.com/webapps/2014/10/29/how-to-disable-ssl-2-0-or-ssl-3-0-from-iis-server/

https web service in Tibco & PC的更多相关文章

  1. 走进云背后:微软Azure web 项目通过web service部署web site

    探索云那不为人知的故事(一):Web Services部署web site 前奏:Windows Azure是微软基于云计算的操作系统,现在更名为“Microsoft Azure”,和Azure Se ...

  2. web service, wcf, wcf rest, web api之间的区别

    在.NET Framework中,有很多种技术可以创建基于http协议的服务,譬如说web service, wcf,wcf rest和web api等等.网上有很多的文章教我们如何开发.使用这几种技 ...

  3. WCF、Web API、WCF REST、Web Service比较

    原文地址:http://www.dotnet-tricks.com/Tutorial/webapi/JI2X050413-Difference-between-WCF-and-Web-API-and- ...

  4. Web Service和WCF的区别。其实二者不属于一个范畴!!!

    Web Service和WCF的区别 [1]Web Service:严格来说是行业标准,也就是Web Service 规范. 它有一套完成的规范体系标准,而且在持续不断的更新完善中. 它使用XML扩展 ...

  5. Difference between WCF and Web API and WCF REST and Web Service

    The .Net framework has a number of technologies that allow you to create HTTP services such as Web S ...

  6. Spring 4 集成Apache CXF开发JAX-RS Web Service

    什么是JAX-RS 在JSR-311规范中定义,即Java API for RESTful Web Services,一套Java API,用于开发 RESTful风格的Webservice. 工程概 ...

  7. HTTPS Web配置举例

    http://www.h3c.com.cn/Products___Technology/Technology/Security_Encrypt/Other_technology/Representat ...

  8. WCF 、Web API 、 WCF REST 和 Web Service 的区别

    WCF .Web API . WCF REST 和 Web Service 的区别 The .Net framework has a number of technologies that allow ...

  9. 翻译-使用Spring调用SOAP Web Service

    原文链接: http://spring.io/guides/gs/consuming-web-service/ 调用SOAP web service 本指南将指导你使用Spring调用一个基于SOAP ...

随机推荐

  1. 01 IO流(一)—— 流的概念、File类

    1 流的概念理解(重要) 理解流的概念非常重要. 流,就是程序到数据源或目的地的一个通道. 我们把这个通道实例化得到一个具体的流,相当于一个数据传输工具,它可以在程序与资源之间进行数据交换. 换言之, ...

  2. QuartzNet 任务管理系统

    最近有面试!都有问道Quartz方面的问题,之前的项目有使用过,也知道怎么用,但面试时要说出它的原理,一时半会还真说不来!查阅了一些资料先记录下来吧 Quartz.NET官网地址:https://ww ...

  3. Ubuntu Server Swap 分区设置

    方案一:仅在内存耗尽的情况下才使用 swap 分区 # 首先进入 sudo 模式 sysctl vm.swappiness=0 # 临时生效 echo "vm.swappiness = 0& ...

  4. CF858F Wizard's Tour

    也许更好的阅读体验 \(\mathcal{Description}\) 给定一张 \(n\) 个点 \(m\) 条边的无向图,每条边连接两个顶点,保证无重边自环,不保证连通. 你想在这张图上进行若干次 ...

  5. Jenkins 发邮件的Job

    Jenkins要做到构建失败的时候发送邮件,常规做法是加个全局的post failure,类似这样的代码 pipeline { agent any stages { stage('deploy') { ...

  6. windows环境下如何搭建Consul+Ocelot

    下面的是markdown格式的文档,懒得排版了,有兴趣的话可以去github上看,有源码 Github:https://github.com/yuchengao0721/Consul-Ocelot.g ...

  7. Go net/http,web server

    net/http 包实现 HTTP Server Go 中,实现一个最简单的 http server 非常容易,代码如下: package main import ( "fmt" ...

  8. java线程的五种状态

    五种状态 开始状态(new) 就绪状态(runnable) 运行状态(running) 阻塞状态(blocked) 结束状态(dead) 状态变化 1.线程刚创建时,是new状态 2.线程调用了sta ...

  9. TensorFlow实现自编码器及多层感知机

    1 自动编码机简介        传统机器学习任务在很大程度上依赖于好的特征工程,比如对数值型,日期时间型,种类型等特征的提取.特征工程往往是非常耗时耗力的,在图像,语音和视频中提取到有效的特征就更难 ...

  10. BHD钱包部署【生态池/合作池】

    前序 BHD网址:https://btchd.org/#wallet 注:我这里是centos7, 所以我选linuxPC 部署 解压与配置 tar -zxf bhd-v1.3.4.0-d909c0e ...