* This method is called by the constructor of the Http11Protocol
* superclass.
*/
protected void create() {
if (blocking){
selectorThread = new SelectorBlockingThread();
((SelectorBlockingThread)selectorThread).setSecure(secure);
} else if ( !secure ){
if (selectorThreadImpl != null){
try{
Class clazz = Class.forName(selectorThreadImpl);