/* * JBoss, Home of Professional Open Source * Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual * contributors by the @authors tag. See the copyright.txt in the * distribution for a full listing of individual contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.switchyard.quickstarts.camel.netty.binding; import java.io.BufferedReader; import java.io.DataOutputStream; import java.io.FileInputStream; import java.io.InputStreamReader; import java.net.Socket; import java.security.KeyStore; import javax.net.ssl.KeyManagerFactory; import javax.net.ssl.SSLContext; import javax.net.ssl.SSLSocketFactory; import javax.net.ssl.TrustManagerFactory; public class TCPClient { public static void main(String[] args) throws Exception { KeyStore keystore = KeyStore.getInstance("JKS"); keystore.load(new FileInputStream("users.jks"), "changeit".toCharArray()); TrustManagerFactory tmf = TrustManagerFactory.getInstance("SunX509"); tmf.init(keystore); SSLContext context = SSLContext.getInstance("TLS"); KeyManagerFactory keyManagerFactory = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm()); keyManagerFactory.init(keystore, "changeit".toCharArray()); context.init(keyManagerFactory.getKeyManagers(), tmf.getTrustManagers(), null); SSLSocketFactory sf = context.getSocketFactory(); Socket clientSocket = sf.createSocket("localhost", 3939); DataOutputStream outputStream = new DataOutputStream(clientSocket.getOutputStream()); BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); System.out.print("Message body to send over TCP: "); outputStream.write(reader.readLine().getBytes()); Thread.sleep(50); clientSocket.close(); } }