~ubuntu-branches/ubuntu/raring/libjboss-remoting-java/raring

« back to all changes in this revision

Viewing changes to tests/org/jboss/test/remoting/transport/socket/ssl/test/SSLSimpleServer.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: package-import@ubuntu.com-20110909140103-o8ucrolqt5g25k57
Tags: upstream-2.5.3.SP1
ImportĀ upstreamĀ versionĀ 2.5.3.SP1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
* JBoss, Home of Professional Open Source
3
 
* Copyright 2005, JBoss Inc., and individual contributors as indicated
4
 
* by the @authors tag. See the copyright.txt in the distribution for a
5
 
* full listing of individual contributors.
6
 
*
7
 
* This is free software; you can redistribute it and/or modify it
8
 
* under the terms of the GNU Lesser General Public License as
9
 
* published by the Free Software Foundation; either version 2.1 of
10
 
* the License, or (at your option) any later version.
11
 
*
12
 
* This software is distributed in the hope that it will be useful,
13
 
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15
 
* Lesser General Public License for more details.
16
 
*
17
 
* You should have received a copy of the GNU Lesser General Public
18
 
* License along with this software; if not, write to the Free
19
 
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20
 
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21
 
*/
22
 
package org.jboss.test.remoting.transport.socket.ssl.test;
23
 
 
24
 
import java.io.BufferedReader;
25
 
import java.io.IOException;
26
 
import java.io.InputStreamReader;
27
 
import java.io.PrintWriter;
28
 
import java.net.InetAddress;
29
 
import java.net.ServerSocket;
30
 
import java.net.Socket;
31
 
import java.security.KeyManagementException;
32
 
import java.security.KeyStoreException;
33
 
import java.security.NoSuchAlgorithmException;
34
 
import java.security.UnrecoverableKeyException;
35
 
import java.security.cert.CertificateException;
36
 
import java.util.Date;
37
 
import javax.net.ServerSocketFactory;
38
 
import org.jboss.remoting.security.SSLSocketBuilder;
39
 
 
40
 
/**
41
 
 * @author <a href="mailto:telrod@e2technologies.net">Tom Elrod</a>
42
 
 */
43
 
public class SSLSimpleServer
44
 
{
45
 
   private ServerSocketFactory serverSocketFactory;
46
 
   private boolean keepRunning = true;
47
 
 
48
 
 
49
 
   public void startServer()
50
 
         throws IOException, NoSuchAlgorithmException, KeyManagementException,
51
 
                CertificateException, UnrecoverableKeyException, KeyStoreException
52
 
   {
53
 
      String keyStoreFilePath = this.getClass().getResource("../.keystore").getFile();
54
 
      System.setProperty("javax.net.ssl.keyStore", keyStoreFilePath);
55
 
      System.setProperty("javax.net.ssl.keyStorePassword", "unit-tests-server");
56
 
 
57
 
 
58
 
      if(serverSocketFactory == null)
59
 
      {
60
 
         SSLSocketBuilder server = new SSLSocketBuilder();
61
 
         //server.setUseSSLServerSocketFactory(false);
62
 
//         server.setKeyStoreURL(".keystore");
63
 
//         server.setKeyStorePassword("unit-tests-server");
64
 
//         /*
65
 
//          * This is optional since if not set, will use
66
 
//          * the key store password (and are the same in this case)
67
 
//          */
68
 
//         //server.setKeyPassword("unit-tests-server");
69
 
//
70
 
//         server.setSecureSocketProtocol("SSL");
71
 
 
72
 
         serverSocketFactory = server.createSSLServerSocketFactory();
73
 
      }
74
 
      InetAddress addr = InetAddress.getLocalHost();
75
 
      final ServerSocket ss = serverSocketFactory.createServerSocket(9097, 200, addr);
76
 
 
77
 
      while(keepRunning)
78
 
      {
79
 
         final Socket sock = ss.accept();
80
 
         new Thread()
81
 
         {
82
 
            public void run()
83
 
            {
84
 
               try
85
 
               {
86
 
                  BufferedReader br = new BufferedReader(new InputStreamReader(sock.getInputStream()));
87
 
                  PrintWriter pw = new PrintWriter(sock.getOutputStream());
88
 
 
89
 
                  String data = br.readLine();
90
 
                  pw.println("The time is: " + new Date());
91
 
                  pw.close();
92
 
                  sock.close();
93
 
               }
94
 
               catch(IOException e)
95
 
               {
96
 
                  e.printStackTrace();
97
 
               }
98
 
 
99
 
            }
100
 
         }.start();
101
 
      }
102
 
   }
103
 
 
104
 
   public void stopServer()
105
 
   {
106
 
      keepRunning = false;
107
 
   }
108
 
 
109
 
   /**
110
 
    * Allows for the setting of the server socket factory to use.  This will bypass the creating of any
111
 
    * custom server socket factory in favor of the one passed.
112
 
    *
113
 
    * @param ssf
114
 
    */
115
 
   public void setServerSocketFactory(ServerSocketFactory ssf)
116
 
   {
117
 
      this.serverSocketFactory = ssf;
118
 
   }
119
 
 
120
 
 
121
 
   public static void main(String[] args) throws Exception
122
 
   {
123
 
      try
124
 
      {
125
 
         SSLSimpleServer server = new SSLSimpleServer();
126
 
         server.startServer();
127
 
      }
128
 
      catch(Throwable thr)
129
 
      {
130
 
         thr.printStackTrace();
131
 
      }
132
 
   }
133
 
}