<< < 1 2 3 4 5 6 > >>   Sort: Date

SslServerCmd.java - SSL Server Command Example
How to create an SSL server program to run like a command? In order to create an SSL server program, you need to do the following: 1. Load the keystore file that contains the server certificate. Remember to specify the keystore password as shown below: KeyStore ks = KeyStore.getInstance("JKS"); ks.l...
2018-06-27, 2195🔥, 0💬

Connect to Yahoo Website with TelnetClientExample.java
How to connect to Yahoo! Website with examples.telnet.TelnetClientEx ample.javaprogram? If you know how to use commands of the HTTP protocol, you can connect to a Web server with examples.telnet.TelnetClientEx ample.javaprogram as shown below: C:\fyicenter&gt; java -cp .;C:\local\commons-net-3.5...
2017-04-22, 2146🔥, 0💬

WebSocketEchoClient.java - WebSocket Echo Client
How to write a simple client program to connect to the WebSocket Echo Server? I you want to write a simple client program to connect to the WebSocket Echo Server running at wss://echo.websocket.org, you can follow these suggestions: 1. Write a test Java class annotated as @ClientEndpoint: @ClientEnd...
2018-01-16, 2054🔥, 0💬

SslCipherList.java - SSL Cipher List
How to get a list of SSL ciphers supported in jsse.jar? You can use the following sample Java code to a list of SSL ciphers supported in jsse.jar: // Copyright (c) FYIcenter.com import java.net.*; import java.io.*; import javax.net.ssl.*; public class SslCipherList { public static void main(String[]...
2018-03-31, 2047🔥, 0💬

What Is jsse-1_0_3_04-do.zip
What is jsse-1_0_3_04-do.zip? jsse-1_0_3_04-do.zip is the binary package of Java Secure Socket Extension 1.0.3_04 for domestic use. Java Secure Socket Extension is Java library that enables secure Internet communications. Download File Size and Download Location: File name: jsse-1_0_3_04-do.zip File...
2018-02-01, 2017🔥, 0💬

Examples for jsse.jar - Java Secure Socket Extension
Where to find answers to frequently asked questions on Java Examples for jsse.jar - Java Secure Socket Extension. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Java Examples for jsse.jar - Java Secure Socket Extension. HttpsUrlReader.java - Reading ...
2018-02-01, 1958🔥, 0💬

What Is httpcomponents-core-4.4.6-bin.zip
What Is httpcomponents-core-4.4.6-bin. zipfile? httpcomponents-core-4.4.6-bin. zipfile is the distribution package ZIP file for HttpComponents Core component 4.4.6. The Apache HttpComponents™ is responsible for creating and maintaining a toolset of low level Java components focused on HTTP and assoc...
2017-11-05, 1953🔥, 0💬

HttpsUrlInfo.java - HTTPS URL Information
How to get more information about the HTTP URL object? It is created as "new java.net.URL(...)". If you created a URL object with "new java.net.URL(...)", you can use the sample Java code to get more information about the URL object: // Copyright (c) FYIcenter.com import java.net.*; import java.io.*...
2018-03-24, 1945🔥, 0💬

Donwload httpcomponents-core-4.4.6-bin.zip
How to download and install httpcomponents-core-4.4.6-bin. zip?If you want to try HttpComponents Core component, you can follow this tutorial to download and install httpcomponents-core-4.4.6-bin. zip:The Apache HttpComponents™ is responsible for creating and maintaining a toolset of low level Java ...
2017-11-05, 1935🔥, 0💬

FAQ for WebSocket API
Where to find answers to frequently asked questions on WebSocket API JAR? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team WebSocket API JAR: Downloading and Reviewing WebSocket.jar What Is WebSocket Protocol Handshake and Data Messages in WebSocket Proto...
2017-07-02, 1924🔥, 0💬

Class Packages in Apache commons-net.jar
What class packages are in the Apache commons-net.jar? Here is a list of class packages of the Apache commons-net.jar: examples - Examples org.apache.commons.net - Common socket classes and protocol command utility classes org.apache.commons.net.bsd - Classes for rcommand, rexec, rlogin org.apache.c...
2017-05-12, 1892🔥, 0💬

SslClientCmd.java - SSL Client Command Example
How to create an SSL client program to run like a command? Here is an SSL client example program you can run like a command to communicate to any HTTPS web server: // Copyright (c) FYIcenter.com import java.net.*; import java.io.*; import javax.net.ssl.*; public class SslClientCmd { public static vo...
2018-03-31, 1872🔥, 0💬

jsse.jar Features and Cryptographic Functionalities
What are main features and cryptographic functionalities supported in jsse.jar? jsse.jar JDK 8 version includes the following important features: Included as a standard component of the JDK Extensible, provider-based architecture Implemented in 100% pure Java Provides API support for SSL versions 2....
2018-02-14, 1799🔥, 0💬

WebSocketOpenClose.java - Session Open and Close
How to provide call back methods for session open and close events with WebSocket API? Adding session open and close event call back methods can be done with @OnOpen and @OnCLose annotated methods as shown below: // Copyright (c) 2016 FYIcenter.com import java.net.URI; import javax.websocket.ClientE...
2018-01-16, 1751🔥, 0💬

SslSocketInfo.java - SSL Socket Information
How to get more information about the SSL Socket object? It is created as "SSLSocketFactory.createSocket ()".If you created a URL object with "new java.net.URL(...)", you can use the following sample Java code to get more information about the URL object: // Copyright (c) FYIcenter.com import java.n...
2018-03-31, 1734🔥, 0💬

Run QuickStart.java HttpComponents Client Example
How to run the QuickStart.java HttpComponents Client Example? I have httpcomponents-client-4.5.3-bi n.zipinstalled. If you have httpcomponents-client-4.5.3-bi n.zipinstalled, you can follow this tutorial to run the QuickStart.java HttpComponents Client Example: 1. Open the example program file Quick...
2017-11-05, 1733🔥, 0💬

Run ClientChunkEncodedPost.java HttpComponents Client Example
How to run the ClientChunkEncodedPost.java HttpComponents Client Example? I have httpcomponents-client-4.5.3-bi n.zipinstalled. If you have httpcomponents-client-4.5.3-bi n.zipinstalled, you can follow this tutorial to run the ClientChunkEncodedPost.java HttpComponents Client Example: 1. Open the ex...
2017-11-02, 1718🔥, 0💬

Run HttpFileServer.java HttpComponents Core Example
How to run the HttpFileServer.java HttpComponents Core Example? I have httpcomponents-core-4.4.6-bin. zipinstalled. If you have httpcomponents-core-4.4.6-bin. zipinstalled, you can follow this tutorial to run the HttpFileServer.java HttpComponents Core Example: 1. Open the example program file HttpF...
2017-11-02, 1657🔥, 0💬

Run ClientWithResponseHandler.java HttpComponents Client Example
How to run the ClientWithResponseHandler.java HttpComponents Client Example? I have httpcomponents-client-4.5.3-bi n.zipinstalled. If you have httpcomponents-client-4.5.3-bi n.zipinstalled, you can follow this tutorial to run the ClientWithResponseHandler.java HttpComponents Client Example: 1. Open ...
2017-11-02, 1632🔥, 0💬

Key Manager Not Sending Client Certificate
Why the Key Manager is not sending the client certificate to the SSL server? I have provided a keystore file with the client certificate inside. JSSE documentation does not provide any details on how the Key Manager selects a certificate and sends it the SSL server. But rxg provided a good explanati...
2018-06-12, 1606🔥, 0💬

SSL Handshake Message Examples
How to get some SSL Handshake Message Examples? You can get SSL Handshake Message Examples as shown below: \fyicenter&gt;\local\jdk-1 .8.0\bin\java-Djavax.net.debug=ssl:handshak e:dataHttpsUrlReader &gt; ssl.log \fyicenter&gt;edit ssl.log *** ClientHello, TLSv1.2 [write] MD5 and SHA1 has...
2018-03-24, 1606🔥, 0💬

What Is commons-net-2.0.jar
What Is commons-net-2.0.jar? commons-net-2.0.jar is the JAR file for Apache Commons Net 2.0, which implements the client side of many basic Internet protocols. JAR File Size and Download Location: File name: commons-net.jar, commons-net-2.0.jar File size: 197316 bytes Date modified: 19-Oct-2008 Down...
2020-05-15, 1580🔥, 0💬

Run PrintVersionInfo.java HttpComponents Core Example
How to run the PrintVersionInfo.java HttpComponents Core Example? I have httpcomponents-core-4.4.6-bin. zipinstalled. If you have httpcomponents-core-4.4.6-bin. zipinstalled, you can follow this tutorial to run the PrintVersionInfo.java HttpComponents Core Example: 1. Open the example program file P...
2017-11-02, 1574🔥, 0💬

What Is Client Certificate Authentication
What Is Client Certificate Authentication? Client Certificate Authentication is an extra layer of security protection added to the normal SSL socket communication. In a normal SSL socket communication: The client is asking for the server to show server certificate. The client validates the server ce...
2018-06-27, 1513🔥, 0💬

<< < 1 2 3 4 5 6 > >>   Sort: Date