diff --git a/test/WebRoot/ErrorHandling_NotExisting/web.config b/test/WebRoot/ErrorHandling_NotExisting/web.config deleted file mode 100644 index 4004a72fcc..0000000000 --- a/test/WebRoot/ErrorHandling_NotExisting/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/test/WebRoot/URLRewrite/article.aspx b/test/WebRoot/URLRewrite/article.aspx deleted file mode 100644 index a7356985d9..0000000000 --- a/test/WebRoot/URLRewrite/article.aspx +++ /dev/null @@ -1,25 +0,0 @@ -<%@ Page Language="C#" %> - - - - -URL Rewrite Module Test - - -

URL Rewrite Module Test Page

- - - - - - - - - - - - - -
Server VariableValue
Original URL: <%= Request.ServerVariables["HTTP_X_ORIGINAL_URL"] %>
Final URL: <%= Request.ServerVariables["SCRIPT_NAME"] + "?" + Request.ServerVariables["QUERY_STRING"] %>
- - \ 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 - - - -
-IIS -
- - \ 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" %> - - - - - -

#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/DownloaderHandler.ashx b/test/WebRoot/WebSocket/OtherExamples/DownloaderHandler.ashx deleted file mode 100644 index b5cf323933..0000000000 --- a/test/WebRoot/WebSocket/OtherExamples/DownloaderHandler.ashx +++ /dev/null @@ -1,112 +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; -using System.Collections.Generic; -using System.Linq; - -public class Handler : IHttpHandler -{ - const int BUFFER = 1024*5; - bool StopFalg = false; - - public void ProcessRequest(HttpContext context) - { - if (!context.IsWebSocketRequest) - { - HttpRequest Request = context.Request; - HttpResponse Response = context.Response; - Response.Write("Simple Http"); - return; - } - - context.AcceptWebSocketRequest(async wsContext => - { - - // set up the loop - WebSocket socket = wsContext.WebSocket; - WebSocketMessageType responseType = WebSocketMessageType.Text; - int returnSize = 1024*1024; - - Thread.Sleep(500); - - Task.Run(() => - { - Recieve(socket); - }); - - Thread.Sleep(500); - - while (socket.State == WebSocketState.Open) - { - int bytesLeft = returnSize; - var tempString = string.Empty; - - while (bytesLeft > BUFFER) - { - tempString = RandomString(BUFFER); - bytesLeft -= BUFFER; - await socket.SendAsync(new ArraySegment(Encoding.UTF8.GetBytes(tempString)), responseType, false, CancellationToken.None); - Thread.Sleep(500); - } - - if (bytesLeft <= BUFFER && bytesLeft >= 0) - { - tempString = RandomString(bytesLeft); - await socket.SendAsync(new ArraySegment(Encoding.UTF8.GetBytes(tempString)), responseType, true, CancellationToken.None); - Thread.Sleep(500); - } - - if (StopFalg) break; - } - }); - } - - async Task Recieve(WebSocket webSocket) - { - ArraySegment buffer = new ArraySegment(new byte[1024]); - while (webSocket.State == WebSocketState.Open) - { - WebSocketReceiveResult input = await webSocket.ReceiveAsync(buffer, CancellationToken.None); - if (input.CloseStatus == WebSocketCloseStatus.NormalClosure) - { - StopFalg = true; - await webSocket.CloseAsync(WebSocketCloseStatus.NormalClosure, "", CancellationToken.None); - break; - } - } - } - - - public bool IsReusable - { - get - { - return false; - } - } - - public string RandomString(int size) - { - if (size < 1) - return string.Empty; - - Random random = new Random((int)DateTime.Now.Ticks); - StringBuilder builder = new StringBuilder(); - char ch; - for (int i = 0; i < size; i++) - { - ch = Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65))); - builder.Append(ch); - } - - return builder.ToString(); - } - -} \ No newline at end of file diff --git a/test/WebRoot/WebSocket/OtherExamples/GetWebSocketConnectionCount.ashx b/test/WebRoot/WebSocket/OtherExamples/GetWebSocketConnectionCount.ashx deleted file mode 100644 index c474915a50..0000000000 --- a/test/WebRoot/WebSocket/OtherExamples/GetWebSocketConnectionCount.ashx +++ /dev/null @@ -1,28 +0,0 @@ -<%@ WebHandler Language="C#" Class="GetWebSocketConnectionCount" %> - -using System; -using System.Web; - -public class GetWebSocketConnectionCount : IHttpHandler { - - public void ProcessRequest (HttpContext context) { - - System.Reflection.Assembly assembly = System.Reflection.Assembly.Load(@"System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"); - object mc = assembly.CreateInstance("System.Web.WebSockets.AspNetWebSocketManager"); - Type t = mc.GetType(); - System.Reflection.BindingFlags bf =System.Reflection.BindingFlags.Static| System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Public; - //MethodInfo mi = t.GetProperty - object temp1 = t.GetField("Current", bf).GetValue(null); - object temp2 = t.GetField("_activeSockets", bf).GetValue(temp1); - - context.Response.ContentType = "text/plain"; - context.Response.Write("Active WebSocket Connections="+((System.Collections.Generic.HashSet)temp2).Count); - } - - public bool IsReusable { - get { - return false; - } - } - -} \ No newline at end of file diff --git a/test/WebRoot/WebSocket/OtherExamples/HandleBinaryEcho.ashx b/test/WebRoot/WebSocket/OtherExamples/HandleBinaryEcho.ashx deleted file mode 100644 index aab07dd02e..0000000000 --- a/test/WebRoot/WebSocket/OtherExamples/HandleBinaryEcho.ashx +++ /dev/null @@ -1,166 +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; -using System.Collections.Generic; -using System.Linq; - -public class Handler : IHttpHandler -{ - const int BUFFER = 1000 * 1000; - - public void ProcessRequest(HttpContext context) - { - if (!context.IsWebSocketRequest) - { - HttpRequest Request = context.Request; - HttpResponse Response = context.Response; - Response.Write("Simple Http"); - return; - } - - context.AcceptWebSocketRequest(async wsContext => - { - - // set up the loop - WebSocket socket = wsContext.WebSocket; - - ////determine return type - List query = wsContext.SecWebSocketProtocols.ToList(); - - WebSocketMessageType responseType = WebSocketMessageType.Text; - if (query[0].Split('-')[0] == WebSocketMessageType.Binary.ToString()) - { - responseType = WebSocketMessageType.Binary; - } - WebSocketMessageType requestType = WebSocketMessageType.Text; - if (query[0].Split('-')[1] == WebSocketMessageType.Binary.ToString()) - { - requestType = WebSocketMessageType.Binary; - } - int returnSize = Int32.Parse(query[0].Split('-')[2]); - int requestSize = Int32.Parse(query[0].Split('-')[3]); - bool canSend = Boolean.Parse(query[0].Split('-')[4]); - bool canReceive = Boolean.Parse(query[0].Split('-')[5]); - - - - - - if (canSend && !canReceive) - { - await Send(socket, responseType, returnSize); - } - - else if (canReceive && !canSend) - { - await Recieve(socket, requestType); - } - - else if (canReceive && canSend) - { - - Task.Run(() => - { - Recieve(socket, requestType); - }); - - while (socket.State == WebSocketState.Open) - { - int bytesLeft = returnSize; - var tempString = string.Empty; - - while (bytesLeft > BUFFER) - { - tempString = RandomString(BUFFER); - bytesLeft -= BUFFER; - await socket.SendAsync(new ArraySegment(Encoding.UTF8.GetBytes(tempString)), responseType, false, CancellationToken.None); - Thread.Sleep(200); - } - - if (bytesLeft <= BUFFER && bytesLeft >= 0) - { - tempString = RandomString(bytesLeft); - await socket.SendAsync(new ArraySegment(Encoding.UTF8.GetBytes(tempString)), responseType, true, CancellationToken.None); - Thread.Sleep(500); - } - } - } - else - { - - Task.Run(() => - { - Recieve(socket, requestType); - }); - } - }); - } - - async Task Recieve(WebSocket webSocket, WebSocketMessageType messageType) - { - ArraySegment buffer = new ArraySegment(new byte[1024]); - while (webSocket.State == WebSocketState.Open) - { - WebSocketReceiveResult input = await webSocket.ReceiveAsync(buffer, CancellationToken.None); - if (input.CloseStatus == WebSocketCloseStatus.NormalClosure) - { - await webSocket.CloseAsync(WebSocketCloseStatus.NormalClosure, "", CancellationToken.None); - break; - } - } - } - - async Task Send(WebSocket socket, WebSocketMessageType responseType, int returnSize) - { - while (socket.State == WebSocketState.Open) - { - int bytesLeft = returnSize; - - while (bytesLeft > BUFFER) - { - bytesLeft -= BUFFER; - await socket.SendAsync(new ArraySegment(Encoding.UTF8.GetBytes(RandomString(BUFFER))), responseType, false, CancellationToken.None); - Thread.Sleep(200); - } - - if (bytesLeft <= BUFFER && bytesLeft >= 0) - { - await socket.SendAsync(new ArraySegment(Encoding.UTF8.GetBytes(RandomString(bytesLeft))), responseType, true, CancellationToken.None); - Thread.Sleep(500); - } - } - } - - public bool IsReusable - { - get - { - return false; - } - } - - public string RandomString(int size) - { - if (size < 1) - return string.Empty; - - Random random = new Random((int)DateTime.Now.Ticks); - StringBuilder builder = new StringBuilder(); - char ch; - for (int i = 0; i < size; i++) - { - ch = Convert.ToChar(Convert.ToInt32(Math.Floor(26 * random.NextDouble() + 65))); - builder.Append(ch); - } - - return builder.ToString(); - } - -} \ No newline at end of file diff --git a/test/WebRoot/WebSocket/OtherExamples/Handler.ashx b/test/WebRoot/WebSocket/OtherExamples/Handler.ashx deleted file mode 100644 index 02f969a3df..0000000000 --- a/test/WebRoot/WebSocket/OtherExamples/Handler.ashx +++ /dev/null @@ -1,49 +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]); - 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/UploadHandler.ashx b/test/WebRoot/WebSocket/OtherExamples/UploadHandler.ashx deleted file mode 100644 index 99d7a90162..0000000000 --- a/test/WebRoot/WebSocket/OtherExamples/UploadHandler.ashx +++ /dev/null @@ -1,49 +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; -using System.Collections.Generic; -using System.Linq; - -public class Handler : IHttpHandler -{ - public void ProcessRequest(HttpContext context) - { - - context.AcceptWebSocketRequest(async wsContext => - { - - // set up the loop - WebSocket socket = wsContext.WebSocket; - - ArraySegment buffer = new ArraySegment(new byte[1024]); - - while (socket.State == WebSocketState.Open) - { - WebSocketReceiveResult input = await socket.ReceiveAsync(buffer, CancellationToken.None); - if (input.CloseStatus == WebSocketCloseStatus.NormalClosure) - { - await socket.CloseAsync(WebSocketCloseStatus.NormalClosure, "", CancellationToken.None); - break; - } - } - - }); - } - - - public bool IsReusable - { - get - { - return false; - } - } - -} \ No newline at end of file diff --git a/test/WebRoot/WebSocket/OtherExamples/web.config b/test/WebRoot/WebSocket/OtherExamples/web.config deleted file mode 100644 index 439329d7ec..0000000000 --- a/test/WebRoot/WebSocket/OtherExamples/web.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/test/WebRoot/WebSocket/chat.aspx b/test/WebRoot/WebSocket/chat.aspx deleted file mode 100644 index 96448b0b18..0000000000 --- a/test/WebRoot/WebSocket/chat.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/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

- - - - - - - - - -
FromToData
- - - - - - \ 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" %> - - -

#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/images/select_arrow.gif b/test/WebRoot/WebSocket/images/select_arrow.gif deleted file mode 100644 index 781c8bc433..0000000000 Binary files a/test/WebRoot/WebSocket/images/select_arrow.gif and /dev/null differ diff --git a/test/WebRoot/WebSocket/images/select_arrow_down.gif b/test/WebRoot/WebSocket/images/select_arrow_down.gif deleted file mode 100644 index 0be8124c20..0000000000 Binary files a/test/WebRoot/WebSocket/images/select_arrow_down.gif and /dev/null differ diff --git a/test/WebRoot/WebSocket/images/select_arrow_over.gif b/test/WebRoot/WebSocket/images/select_arrow_over.gif deleted file mode 100644 index 0620571c81..0000000000 Binary files a/test/WebRoot/WebSocket/images/select_arrow_over.gif and /dev/null differ diff --git a/test/WebRoot/WebSocket/web.config b/test/WebRoot/WebSocket/web.config deleted file mode 100644 index 5204b66b4a..0000000000 --- a/test/WebRoot/WebSocket/web.config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/test/WebRoot/WebSocket/web.config.bak b/test/WebRoot/WebSocket/web.config.bak deleted file mode 100644 index 5204b66b4a..0000000000 --- a/test/WebRoot/WebSocket/web.config.bak +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/test/WebRoot/applicationhost.config.txt b/test/WebRoot/applicationhost.config.txt deleted file mode 100644 index 6e64698b92..0000000000 --- a/test/WebRoot/applicationhost.config.txt +++ /dev/null @@ -1,1233 +0,0 @@ - - - - - - - -

-
-
-
-
-
-
-
- - - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
- -
-
-
-
-
-
- -
-
-
-
-
- -
-
-
- -
-
- -
-
- -
-
-
- - -
-
-
-
-
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/test/WebRoot/parent/web.config b/test/WebRoot/parent/web.config deleted file mode 100644 index 5c7fb464da..0000000000 --- a/test/WebRoot/parent/web.config +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/test/stresstestwebroot/app_offline.htm b/test/stresstestwebroot/app_offline.htm deleted file mode 100644 index 30d74d2584..0000000000 --- a/test/stresstestwebroot/app_offline.htm +++ /dev/null @@ -1 +0,0 @@ -test \ No newline at end of file diff --git a/test/stresstestwebroot/web.config b/test/stresstestwebroot/web.config deleted file mode 100644 index a6fc3cdcf5..0000000000 --- a/test/stresstestwebroot/web.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file