.append( "user-agent: My little browser.\n\n" )
.append( "<html>\n<body>\n<p>Hello World</p>\n</body>\n</html>\n" );
System.out.println( "length is " + response.length() );
InputStream dataIS = new ReplayInputStream(
new ByteArrayInputStream( response.toString().getBytes()) );
TestURLRegistry.register( "replay", dataIS);
URL url = new URL( "testurl:replay" );
URLConnection conn = url.openConnection();