https web service in Tibco & PC



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的更多相关文章
- 走进云背后:微软Azure web 项目通过web service部署web site
探索云那不为人知的故事(一):Web Services部署web site 前奏:Windows Azure是微软基于云计算的操作系统,现在更名为“Microsoft Azure”,和Azure Se ...
- web service, wcf, wcf rest, web api之间的区别
在.NET Framework中,有很多种技术可以创建基于http协议的服务,譬如说web service, wcf,wcf rest和web api等等.网上有很多的文章教我们如何开发.使用这几种技 ...
- WCF、Web API、WCF REST、Web Service比较
原文地址:http://www.dotnet-tricks.com/Tutorial/webapi/JI2X050413-Difference-between-WCF-and-Web-API-and- ...
- Web Service和WCF的区别。其实二者不属于一个范畴!!!
Web Service和WCF的区别 [1]Web Service:严格来说是行业标准,也就是Web Service 规范. 它有一套完成的规范体系标准,而且在持续不断的更新完善中. 它使用XML扩展 ...
- 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 ...
- Spring 4 集成Apache CXF开发JAX-RS Web Service
什么是JAX-RS 在JSR-311规范中定义,即Java API for RESTful Web Services,一套Java API,用于开发 RESTful风格的Webservice. 工程概 ...
- HTTPS Web配置举例
http://www.h3c.com.cn/Products___Technology/Technology/Security_Encrypt/Other_technology/Representat ...
- WCF 、Web API 、 WCF REST 和 Web Service 的区别
WCF .Web API . WCF REST 和 Web Service 的区别 The .Net framework has a number of technologies that allow ...
- 翻译-使用Spring调用SOAP Web Service
原文链接: http://spring.io/guides/gs/consuming-web-service/ 调用SOAP web service 本指南将指导你使用Spring调用一个基于SOAP ...
随机推荐
- python 之 并发编程(开启子进程的两种方式,进程对象的属性)
第九章并发编程 同一个程序执行多次是多个进程 import time import os print('爹是:',os.getppid()) #父进程PID,(pycharm) print('me ...
- python之numpy和pandas
一.numpy矩阵的拼接合并 列拼接:np.column_stack() >>> import numpy as np >>> a = np.arange(9).r ...
- VS.NET(C#)--2.8HTML服务器控件
HTML服务器控件 服务器不处理HTML控件,例如:<h1>.<a>超链接.<input>,直接送到客户端,由浏览器呈现. 把HTML控件转换成HTML服务器控件, ...
- python入门-windows下python环境搭建
1. 下载安装包 选择executable版,根据自己电脑的操作系统选择是32位还是64为. python3.6-64位下载 python3.6-32位下载 2. 安装python 下载之后是这样的 ...
- Java 之 字节缓冲流
一.字节缓冲输出流 java.io.BufferedOutputStream extends OutputStream BufferedOutputStream:字节缓冲输出流. 继承自父类的共性成员 ...
- nodejs 模块全局安装路径配置
nodejs下载安装完成后 输入npm config ls 或者npm config list npm 默认的全局安装路径为该路径,将包都下载在C盘中不是我们想要的结果.一般建议修改在nodejs的安 ...
- 基本代码、插值表达式、v-cloak
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- git使用方法(持续更新)
2018/5/9 最基本的操作: 添加文件.文件夹.所有文件: git add test.py //添加单个文件 git add src //添加文件夹 git add . ...
- 详解Linux磁盘管理与文件系统
磁盘基础 硬盘结构 物理结构 盘片:硬盘有多个盘片,每盘片 2 面. 磁头:每面一个磁头. 数据结构 扇区:磁盘上的每个磁道被等分为若干个弧段,这些弧段便是硬盘的扇区. 硬盘的第一个扇区,叫做引导扇区 ...
- Windows——Office使用激活工具激活后仍提示激活
问题: Office使用激活工具激活后仍提示激活 分析: 造成该问题的原因通常是未删除操作系统预置Office导致的, 解决方案: 调出运行,输入regedit打开注册表编辑器, 依次打开 HKE ...