-
-
\ No newline at end of file
diff --git a/test/WebRoot/URLRewrite/default.htm b/test/WebRoot/URLRewrite/default.htm
deleted file mode 100644
index 082904a8e1..0000000000
--- a/test/WebRoot/URLRewrite/default.htm
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-IIS Windows
-
-
-
-URLRewrite
-
-
\ No newline at end of file
diff --git a/test/WebRoot/URLRewrite/web.config b/test/WebRoot/URLRewrite/web.config
deleted file mode 100644
index 79d3fa79ff..0000000000
--- a/test/WebRoot/URLRewrite/web.config
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/test/WebRoot/URLRewrite/web.config.bak b/test/WebRoot/URLRewrite/web.config.bak
deleted file mode 100644
index 7e914efb5c..0000000000
--- a/test/WebRoot/URLRewrite/web.config.bak
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/test/WebRoot/WebSite1/bkg-blu.jpg b/test/WebRoot/WebSite1/bkg-blu.jpg
deleted file mode 100644
index 4eff83ac8e..0000000000
Binary files a/test/WebRoot/WebSite1/bkg-blu.jpg and /dev/null differ
diff --git a/test/WebRoot/WebSite1/iis.png b/test/WebRoot/WebSite1/iis.png
deleted file mode 100644
index 29f1c90859..0000000000
Binary files a/test/WebRoot/WebSite1/iis.png and /dev/null differ
diff --git a/test/WebRoot/WebSite1/iisstart.htm b/test/WebRoot/WebSite1/iisstart.htm
deleted file mode 100644
index 53fa9d0858..0000000000
--- a/test/WebRoot/WebSite1/iisstart.htm
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-IIS Windows
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/test/WebRoot/WebSite1/msweb-brand.png b/test/WebRoot/WebSite1/msweb-brand.png
deleted file mode 100644
index c8d842af18..0000000000
Binary files a/test/WebRoot/WebSite1/msweb-brand.png and /dev/null differ
diff --git a/test/WebRoot/WebSite1/small.htm b/test/WebRoot/WebSite1/small.htm
deleted file mode 100644
index 64c3ecd7ab..0000000000
--- a/test/WebRoot/WebSite1/small.htm
+++ /dev/null
@@ -1 +0,0 @@
-small
\ No newline at end of file
diff --git a/test/WebRoot/WebSite1/test.asp b/test/WebRoot/WebSite1/test.asp
deleted file mode 100644
index 87caddf4e2..0000000000
--- a/test/WebRoot/WebSite1/test.asp
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-<%
-if request.form("cars") = "volvo" then
-Response.write ("Hello " & Request.form("title") & " " & Request.form("FirstName") & " " & Request.form("LastName"))
-Response.write (" How are you today?")
-Response.Write(" you have a " & Request.form("cars"))
-Response.write(" comment " & Request.form("textarea"))
-end if
-%>
-
-
diff --git a/test/WebRoot/WebSite1/w-brand.png b/test/WebRoot/WebSite1/w-brand.png
deleted file mode 100644
index 3fe9d7832f..0000000000
Binary files a/test/WebRoot/WebSite1/w-brand.png and /dev/null differ
diff --git a/test/WebRoot/WebSite1/web.config b/test/WebRoot/WebSite1/web.config
deleted file mode 100644
index 07ce3d2015..0000000000
--- a/test/WebRoot/WebSite1/web.config
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/test/WebRoot/WebSite1/web.config.bak b/test/WebRoot/WebSite1/web.config.bak
deleted file mode 100644
index 07ce3d2015..0000000000
--- a/test/WebRoot/WebSite1/web.config.bak
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/test/WebRoot/WebSocket/ChatHandler.ashx b/test/WebRoot/WebSocket/ChatHandler.ashx
deleted file mode 100644
index 714fbecac2..0000000000
--- a/test/WebRoot/WebSocket/ChatHandler.ashx
+++ /dev/null
@@ -1,70 +0,0 @@
-<%@ WebHandler Language="C#" Class="ChatStartHandler" %>
-
-using System;
-using System.Web;
-using System.Net.WebSockets;
-using System.Web.WebSockets;
-using System.Text;
-using System.Threading;
-using System.Threading.Tasks;
-using System.Net;
-using System.Collections.Generic;
-using System.Collections.Concurrent;
-
-public class ChatStartHandler : IHttpHandler
-{
-
- static int clientCount=0;
-
- public void ProcessRequest(HttpContext context)
- {
-
- context.AcceptWebSocketRequest(async wsContext =>
- {
- ArraySegment buffer = new ArraySegment(new byte[1024]);
- WebSocket socket = wsContext.WebSocket;
- ChatList.ActiveChatSessions.TryAdd(clientCount++, socket);
-
- // set up the loop
- while (true)
- {
- Thread.Sleep(100);
- var input = await socket.ReceiveAsync(buffer, CancellationToken.None);
-
- if (input.CloseStatus != null)
- {
- await socket.CloseAsync(WebSocketCloseStatus.NormalClosure, "", CancellationToken.None);
- break;
- }
- else
- {
-
- foreach (KeyValuePair kvp in ChatList.ActiveChatSessions)
- {
- WebSocket ws = kvp.Value;
- if (ws.State == WebSocketState.Open)
- {
- var outputBuffer = new ArraySegment(buffer.Array, 0, input.Count);
- await ws.SendAsync(outputBuffer, input.MessageType, input.EndOfMessage, CancellationToken.None);
- }
- }
- }
- }
- });
- //}, new System.Web.WebSockets.AspNetWebSocketOptions { Subprotocol = "ECHO" });
- }
-
- public bool IsReusable
- {
- get
- {
- return false;
- }
- }
-
-}
-
-public static class ChatList
-{
- public static ConcurrentDictionary ActiveChatSessions = new ConcurrentDictionary();
-}
diff --git a/test/WebRoot/WebSocket/EchoHandler.ashx b/test/WebRoot/WebSocket/EchoHandler.ashx
deleted file mode 100644
index d3cd0cb77c..0000000000
--- a/test/WebRoot/WebSocket/EchoHandler.ashx
+++ /dev/null
@@ -1,50 +0,0 @@
-<%@ WebHandler Language="C#" Class="Handler" %>
-
-using System;
-using System.Web;
-using System.Net.WebSockets;
-using System.Web.WebSockets;
-using System.Text;
-using System.Threading;
-using System.Threading.Tasks;
-using System.Net;
-
-public class Handler : IHttpHandler
-{
- public void ProcessRequest(HttpContext context)
- {
- context.AcceptWebSocketRequest(async wsContext =>
- {
- //ArraySegment buffer = new ArraySegment(new byte[1024*1024]);
- ArraySegment buffer = new ArraySegment(new byte[1024]);
- WebSocket socket = wsContext.WebSocket;
-
- // set up the loop
- while (true)
- {
- var input = await socket.ReceiveAsync(buffer, CancellationToken.None);
- //Thread.Sleep(100);
-
- if (input.CloseStatus != null)
- {
- await socket.CloseAsync(input.CloseStatus.Value, input.CloseStatusDescription, CancellationToken.None);
- break;
- }
- else
- {
- var outputBuffer = new ArraySegment(buffer.Array, 0, input.Count);
- await socket.SendAsync(outputBuffer, input.MessageType, input.EndOfMessage, CancellationToken.None);
- }
- }
- });
- }
-
- public bool IsReusable
- {
- get
- {
- return false;
- }
- }
-
-}
\ No newline at end of file
diff --git a/test/WebRoot/WebSocket/OtherExamples/ChatHandler.ashx b/test/WebRoot/WebSocket/OtherExamples/ChatHandler.ashx
deleted file mode 100644
index 99bea256d3..0000000000
--- a/test/WebRoot/WebSocket/OtherExamples/ChatHandler.ashx
+++ /dev/null
@@ -1,69 +0,0 @@
-<%@ WebHandler Language="C#" Class="ChatStartHandler" %>
-
-using System;
-using System.Web;
-using System.Net.WebSockets;
-using System.Web.WebSockets;
-using System.Text;
-using System.Threading;
-using System.Threading.Tasks;
-using System.Net;
-using System.Collections.Generic;
-using System.Collections.Concurrent;
-
-public class ChatStartHandler : IHttpHandler
-{
-
- static int clientCount=0;
-
- public void ProcessRequest(HttpContext context)
- {
-
- context.AcceptWebSocketRequest(async wsContext =>
- {
- ArraySegment buffer = new ArraySegment(new byte[1024]);
- WebSocket socket = wsContext.WebSocket;
- ChatList.ActiveChatSessions.TryAdd(clientCount++, socket);
-
- // set up the loop
- while (true)
- {
- var input = await socket.ReceiveAsync(buffer, CancellationToken.None);
-
- if (input.CloseStatus != null)
- {
- await socket.CloseAsync(WebSocketCloseStatus.NormalClosure, "", CancellationToken.None);
- break;
- }
- else
- {
-
- foreach (KeyValuePair kvp in ChatList.ActiveChatSessions)
- {
- WebSocket ws = kvp.Value;
- if (ws.State == WebSocketState.Open)
- {
- var outputBuffer = new ArraySegment(buffer.Array, 0, input.Count);
- await ws.SendAsync(outputBuffer, input.MessageType, input.EndOfMessage, CancellationToken.None);
- }
- }
- }
- }
- });
- //}, new System.Web.WebSockets.AspNetWebSocketOptions { Subprotocol = "ECHO" });
- }
-
- public bool IsReusable
- {
- get
- {
- return false;
- }
- }
-
-}
-
-public static class ChatList
-{
- public static ConcurrentDictionary ActiveChatSessions = new ConcurrentDictionary();
-}
diff --git a/test/WebRoot/WebSocket/OtherExamples/Default.aspx b/test/WebRoot/WebSocket/OtherExamples/Default.aspx
deleted file mode 100644
index 1b6e9f6de0..0000000000
--- a/test/WebRoot/WebSocket/OtherExamples/Default.aspx
+++ /dev/null
@@ -1,70 +0,0 @@
-<%@ Page Language="C#" AutoEventWireUp="true" %>
-
-
-
-
-
-
#active websocket connection <%= "foo" %>
-
-
Web Socket Echo Demo (run from Minefield!)
-
-
-
-
-
-
-
-
-
-This text will be sent on the socket:
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/test/WebRoot/WebSocket/OtherExamples/Default.htm b/test/WebRoot/WebSocket/OtherExamples/Default.htm
deleted file mode 100644
index 7c3b07ba22..0000000000
--- a/test/WebRoot/WebSocket/OtherExamples/Default.htm
+++ /dev/null
@@ -1,70 +0,0 @@
-<%@ Page Language="C#" AutoEventWireUp="true" %>
-
-
-
-
-
-
-This text will be sent on the socket:
-
-
-
-
-
\ No newline at end of file
diff --git a/test/WebRoot/WebSocket/chatplus.html b/test/WebRoot/WebSocket/chatplus.html
deleted file mode 100644
index ca903f4e63..0000000000
--- a/test/WebRoot/WebSocket/chatplus.html
+++ /dev/null
@@ -1,366 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
WebSocket Sample Application
-
Ready to connect...
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Communication Log
-
-
-
-
From
-
To
-
Data
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/test/WebRoot/WebSocket/echo.aspx b/test/WebRoot/WebSocket/echo.aspx
deleted file mode 100644
index c055ee8300..0000000000
--- a/test/WebRoot/WebSocket/echo.aspx
+++ /dev/null
@@ -1,65 +0,0 @@
-<%@ Page Language="C#" AutoEventWireUp="true" %>
-
-
-
#active websocket connection <%= "foo" %>
-
Web Socket Echo Demo (run from Minefield!)
-
-
-
-
-
-This text will be sent on the socket:
-
-
-
-
-
\ No newline at end of file
diff --git a/test/WebRoot/WebSocket/echoAspnetCore.aspx b/test/WebRoot/WebSocket/echoAspnetCore.aspx
deleted file mode 100644
index 3fe9deaf28..0000000000
--- a/test/WebRoot/WebSocket/echoAspnetCore.aspx
+++ /dev/null
@@ -1,62 +0,0 @@
-<%@ Page Language="C#" AutoEventWireUp="true" %>
-
-
-
#active websocket connection <%= "foo" %>
-
Web Socket Echo Demo (run from Minefield!)
-
-
-
-
-
-This text will be sent on the socket:
-
-
-
-
-
\ No newline at end of file
diff --git a/test/WebRoot/WebSocket/echoSubProtocol.aspx b/test/WebRoot/WebSocket/echoSubProtocol.aspx
deleted file mode 100644
index f349a3f96e..0000000000
--- a/test/WebRoot/WebSocket/echoSubProtocol.aspx
+++ /dev/null
@@ -1,65 +0,0 @@
-<%@ Page Language="C#" AutoEventWireUp="true" %>
-
-
-