473,396 Members | 2,011 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

a simple http server

hi,
i am creating an simple http server ie it serves only static pages .
u can compile the code then use ur browser if it is IE then the it
shows the page but the http header is also shown
HTTP/1.0 200 OK Content-Type: text/html
nweb Web Server Sorry:
but if the browser is mozilla/Firefox it shows the recieved data as an
application and tells me to save it.
also i want that the program should continiously listen on the port and
send data to more than one client

also is it possible to invoke a thread that calls a function with
arguments
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.Net.Sockets;
using System.IO;
using System.Threading;

class Program
{
static int BUFSIZE= 8096;
enum msg
{
ERROR =42,
SORRY =43,
LOG = 44,
}

static void log(msg type,string s1,string s2) //used for logging
of errors
{
string logfile = "http.log";
string logbuffer;
FileStream file = new FileStream(logfile, FileMode.Append);
StreamWriter sw = new StreamWriter(file);
switch (type)
{
case msg.ERROR: logbuffer = "Error: " + s1 +" "+ s2 + "
exiting ";
sw.WriteLine(logbuffer);
sw.WriteLine();
sw.Close();
break;
case msg.SORRY: logbuffer = "sorry: " + s1 + " " + s2 + "
";
sw.WriteLine(logbuffer);
//add funtion to send data to user;
sw.WriteLine();
sw.Close();
break;
case msg.LOG: logbuffer = "info: " + s1 + " " + s1 + " ";
sw.WriteLine(logbuffer);
sw.WriteLine();
sw.Close();
break;
}
if (type == msg.ERROR || type == msg.SORRY)
{
System.Environment.Exit(0);
}

}
public static extn[] fileextsused( )
{
extn []extentions =new extn[10];
extentions[1].ext= "gif";
extentions[1].filetype="image/gif" ;
extentions[2].ext="jpg";
extentions[2].filetype="image/jpeg";
extentions[3].ext="png";
extentions[3].filetype= "image/png";
extentions[4].ext="zip";
extentions[4].filetype="image/zip";
extentions[5].ext="gz";
extentions[5].filetype= "image/gz";
extentions[6].ext="tar";
extentions[6].filetype= "image/tar";
extentions[7].ext="htm";
extentions[7].filetype="text/html";
extentions[8].ext="html";
extentions[8].filetype="text/html";
extentions[9].ext="0";
extentions[9].filetype="0";
return extentions;

}
public struct extn
{
public String ext;
public string filetype;
}
public static void web(Socket suck ) //used for sending data to
the //client
{
Encoding enc = Encoding.Unicode;
byte [] rbuffer =new byte[BUFSIZE+1];//recieve buffer
byte [] sbuffer =new byte[BUFSIZE+1];//data to be send
byte[] header = enc.GetBytes("HTTP/1.0 200
OK\r\nContent-Type: %s\r\n\r\n");//http header
string str="<HTML><BODY><H1>nweb Web Server
Sorry:</H1></BODY></HTML>\r\n";//actual page

sbuffer = enc.GetBytes(str);
suck.Receive(rbuffer);
suck.Send(header);
suck.Send(sbuffer);

}

static void Main(string[] args)
{
DirectoryInfo dir;

args = new string[2];
args[0] = "80";
args[1] = @"c:\a";
int port;
port = Convert.ToInt32(args[0]);
dir = new DirectoryInfo(args[1]);

int i=0;
extn []extentions =new extn[10];
extentions=fileextsused();
if (args.Length <2 || args.Length >2 || args[0] == "/?")
{
Console.WriteLine("hint: nweb Port-Number
Top-Directory\n\n"+
"\tnweb is a small and very safe mini web server\n"+
"\tnweb only servers out file/web pages with extensions named
below\n"+
"\t and only from the named directory or its
sub-directories.\n"+
"\tThere is no fancy features = safe and secure.\n\n"+
"\tExample: nweb 8181\n c:\\web &\n\n"+
"\tOnly Supports:");
for(i=0;i<extentions.Length;i++)
{

Console.WriteLine("\t"+extentions[i].ext+"\t"+extentions[i].filetype+"");
}

Console.WriteLine("\n\tNot Supported: URLs including
\"..\",Java, Javascript, CGI\n"+
"\tNot Supported: directories \n\tc:\\ " + "\n\t"
+
Environment.GetFolderPath(Environment.SpecialFolde r.System)+"\n\t"

+Environment.GetFolderPath(Environment.SpecialFold er.ProgramFiles) +
"\n\t"
+
Environment.GetFolderPath(Environment.SpecialFolde r.Personal) + "\n\t"
+
Environment.GetFolderPath(Environment.SpecialFolde r.CommonProgramFiles)+"\n"
+"\tNo warranty given or implied\n\tUmesh Tangnu
um**********@gmail.com\n");
Console.ReadLine();
System.Environment.Exit(0);
}

else
{
if ((args[1] ==
Environment.GetFolderPath(Environment.SpecialFolde r.System)) ||
(args[1] ==
Environment.GetFolderPath(Environment.SpecialFolde r.Personal)) ||
(args[1] ==
Environment.GetFolderPath(Environment.SpecialFolde r.ProgramFiles)))
{
Console.WriteLine("ERROR: Bad top directory "+
args[1]+" see nweb /?\n");
Console.ReadLine();

System.Environment.Exit(0);
}
if(!dir.Exists)
{
Console.WriteLine("ERROR : Top Directory
"+args[1]+" doesnot exist");
Console.Read();
System.Environment.Exit(0);
}

}
if (port < 0 || port > 60000)
log(msg.ERROR, "Invalid port number (try 1->60000)",
args[0]);
log(msg.LOG, "nweb starting", args[0]);

IPAddress iadd =IPAddress.Parse("192.168.1.2");
IPEndPoint ipe = new IPEndPoint(iadd, port);
Socket sock = new Socket(AddressFamily.InterNetwork,
SocketType.Stream, ProtocolType.Tcp);
sock.Bind(ipe);
sock.Listen(32);
sock = sock.Accept();
web(sock);
sock.Shutdown(SocketShutdown.Both);
sock.Close();
}
}

Dec 1 '05 #1
1 3328
I can't help with the headers issue (I just use HttpListener to do this via
HTTP.SYS), however re the threading Q:

I usually do this by creating a class with some properties (representing the
params), setting the params against an instance and then using a void
Start() method on the instance as the delegate to ThreadStart; my Start
method can then read the params against the same instance. Got this from
MSDN I think (so shouldn't be *too* far from the norm - maybe) - might be
better ways, though...

Marc

"lucifer" <um**********@gmail.com> wrote in message
news:11**********************@o13g2000cwo.googlegr oups.com...
hi,
i am creating an simple http server ie it serves only static pages .
u can compile the code then use ur browser if it is IE then the it
shows the page but the http header is also shown
HTTP/1.0 200 OK Content-Type: text/html
nweb Web Server Sorry:
but if the browser is mozilla/Firefox it shows the recieved data as an
application and tells me to save it.
also i want that the program should continiously listen on the port and
send data to more than one client

also is it possible to invoke a thread that calls a function with
arguments
using System;
using System.Collections.Generic;
using System.Text;
using System.Net;
using System.Net.Sockets;
using System.IO;
using System.Threading;

class Program
{
static int BUFSIZE= 8096;
enum msg
{
ERROR =42,
SORRY =43,
LOG = 44,
}

static void log(msg type,string s1,string s2) //used for logging
of errors
{
string logfile = "http.log";
string logbuffer;
FileStream file = new FileStream(logfile, FileMode.Append);
StreamWriter sw = new StreamWriter(file);
switch (type)
{
case msg.ERROR: logbuffer = "Error: " + s1 +" "+ s2 + "
exiting ";
sw.WriteLine(logbuffer);
sw.WriteLine();
sw.Close();
break;
case msg.SORRY: logbuffer = "sorry: " + s1 + " " + s2 + "
";
sw.WriteLine(logbuffer);
//add funtion to send data to user;
sw.WriteLine();
sw.Close();
break;
case msg.LOG: logbuffer = "info: " + s1 + " " + s1 + " ";
sw.WriteLine(logbuffer);
sw.WriteLine();
sw.Close();
break;
}
if (type == msg.ERROR || type == msg.SORRY)
{
System.Environment.Exit(0);
}

}
public static extn[] fileextsused( )
{
extn []extentions =new extn[10];
extentions[1].ext= "gif";
extentions[1].filetype="image/gif" ;
extentions[2].ext="jpg";
extentions[2].filetype="image/jpeg";
extentions[3].ext="png";
extentions[3].filetype= "image/png";
extentions[4].ext="zip";
extentions[4].filetype="image/zip";
extentions[5].ext="gz";
extentions[5].filetype= "image/gz";
extentions[6].ext="tar";
extentions[6].filetype= "image/tar";
extentions[7].ext="htm";
extentions[7].filetype="text/html";
extentions[8].ext="html";
extentions[8].filetype="text/html";
extentions[9].ext="0";
extentions[9].filetype="0";
return extentions;

}
public struct extn
{
public String ext;
public string filetype;
}
public static void web(Socket suck ) //used for sending data to
the //client
{
Encoding enc = Encoding.Unicode;
byte [] rbuffer =new byte[BUFSIZE+1];//recieve buffer
byte [] sbuffer =new byte[BUFSIZE+1];//data to be send
byte[] header = enc.GetBytes("HTTP/1.0 200
OK\r\nContent-Type: %s\r\n\r\n");//http header
string str="<HTML><BODY><H1>nweb Web Server
Sorry:</H1></BODY></HTML>\r\n";//actual page

sbuffer = enc.GetBytes(str);
suck.Receive(rbuffer);
suck.Send(header);
suck.Send(sbuffer);

}

static void Main(string[] args)
{
DirectoryInfo dir;

args = new string[2];
args[0] = "80";
args[1] = @"c:\a";
int port;
port = Convert.ToInt32(args[0]);
dir = new DirectoryInfo(args[1]);

int i=0;
extn []extentions =new extn[10];
extentions=fileextsused();
if (args.Length <2 || args.Length >2 || args[0] == "/?")
{
Console.WriteLine("hint: nweb Port-Number
Top-Directory\n\n"+
"\tnweb is a small and very safe mini web server\n"+
"\tnweb only servers out file/web pages with extensions named
below\n"+
"\t and only from the named directory or its
sub-directories.\n"+
"\tThere is no fancy features = safe and secure.\n\n"+
"\tExample: nweb 8181\n c:\\web &\n\n"+
"\tOnly Supports:");
for(i=0;i<extentions.Length;i++)
{

Console.WriteLine("\t"+extentions[i].ext+"\t"+extentions[i].filetype+"");
}

Console.WriteLine("\n\tNot Supported: URLs including
\"..\",Java, Javascript, CGI\n"+
"\tNot Supported: directories \n\tc:\\ " + "\n\t"
+
Environment.GetFolderPath(Environment.SpecialFolde r.System)+"\n\t"

+Environment.GetFolderPath(Environment.SpecialFold er.ProgramFiles) +
"\n\t"
+
Environment.GetFolderPath(Environment.SpecialFolde r.Personal) + "\n\t"
+
Environment.GetFolderPath(Environment.SpecialFolde r.CommonProgramFiles)+"\n"
+"\tNo warranty given or implied\n\tUmesh Tangnu
um**********@gmail.com\n");
Console.ReadLine();
System.Environment.Exit(0);
}

else
{
if ((args[1] ==
Environment.GetFolderPath(Environment.SpecialFolde r.System)) ||
(args[1] ==
Environment.GetFolderPath(Environment.SpecialFolde r.Personal)) ||
(args[1] ==
Environment.GetFolderPath(Environment.SpecialFolde r.ProgramFiles)))
{
Console.WriteLine("ERROR: Bad top directory "+
args[1]+" see nweb /?\n");
Console.ReadLine();

System.Environment.Exit(0);
}
if(!dir.Exists)
{
Console.WriteLine("ERROR : Top Directory
"+args[1]+" doesnot exist");
Console.Read();
System.Environment.Exit(0);
}

}
if (port < 0 || port > 60000)
log(msg.ERROR, "Invalid port number (try 1->60000)",
args[0]);
log(msg.LOG, "nweb starting", args[0]);

IPAddress iadd =IPAddress.Parse("192.168.1.2");
IPEndPoint ipe = new IPEndPoint(iadd, port);
Socket sock = new Socket(AddressFamily.InterNetwork,
SocketType.Stream, ProtocolType.Tcp);
sock.Bind(ipe);
sock.Listen(32);
sock = sock.Accept();
web(sock);
sock.Shutdown(SocketShutdown.Both);
sock.Close();
}
}

Dec 1 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Thomas | last post by:
Hi, Sorry for the stupid subject, but here it goes: I need a simple Webserver which can 1. serve xmlrpc-methods 2. send multicast packets on local network to get response from a similar...
2
by: Hazzard | last post by:
I just realized that the code I inherited is using all asp.net server controls (ie. webform controls) and when I try to update textboxes on the client side, I lose the new value of the textbox when...
2
by: Abel Chan | last post by:
Hi there, I just got an assignment to work on server maintenance. It is a weekly task and we have about 7 production servers running Win2K server. The tasks include but not limited to 1)...
7
by: Steven | last post by:
Hello, First, let me state that I am trying to learn asp.net, so I am a beginner. Now on to the issue. I have a webform with a single Textbox and a FileSystemWatcher monitoring a directory for...
5
by: Logickle | last post by:
Hi, all. I'm working on an application which requires communicating session info between separate web apps running on the same web server. The out of process server method sounded ideal, and...
8
by: Martin Randall | last post by:
Hi, I'm trying to get a simple dataview test page working on my hosted site. The hosted site runs ASP.Net 2.0, no problem. The test page works on my development machine, no problem... but when I...
0
by: Link | last post by:
hello i want to make simple server client system that send data like that one : http://www.eggheadcafe.com/articles/20020323.asp just no console app well i want to make form with 2...
4
by: dba_222 | last post by:
Dear Experts, Ok, I hate to ask such a seemingly dumb question, but I've already spent far too much time on this. More that I would care to admit. In Sql server, how do I simply change a...
2
by: heddy | last post by:
Howdy folks. I am trying to build a web service using the following configuration: I have Windows 2003 Server running in VMware. I have IIS set up on it. I installed the .NET 2.0 package on...
1
by: Ted | last post by:
In MS SQL I used the following to create a stored procedure. USE AdventureWorks; GO IF OBJECT_ID ( 'HumanResources.usp_My_Search', 'P' ) IS NOT NULL DROP PROCEDURE HumanResources.usp_My_Search;...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.