Java Webservice小例子。應用XFire框架。WSA文件夾下是Server端,WSC下是Client端。
標簽: Webservice Server XFire Java
上傳時間: 2017-01-22
上傳用戶:daoxiang126
Description: Microsoft?Windows?HTTP Services (WinHTTP) provides developers with a server-supported, high-level interface to the HTTP/1.1 Internet protocol. WinHTTP is designed to be used primarily in server-based scenarios by server applications that communicate with HTTP servers. WinHTTP is also designed for use in system services and HTTP-based client applications. WinHTTP is more secure and robust than WinInet. However, single-user applications that need FTP or gopher functionality, cookie persistence, caching, automatic credential dialog handling, Internet Explorer compatibility, or downlevel platform support should still consider using WinInet.
標簽: server-supported Description developers Microsoft
上傳時間: 2017-02-07
上傳用戶:refent
vxworks CS模型的server的源碼,陸續(xù)上傳client的源碼
上傳時間: 2017-02-11
上傳用戶:chenbhdt
A very simple ftp server s source code for demonstration. * It supports PASV/PORT modes and following operations: * ls,pwd,cwd,get,put,dele. * I have tested it using following ftp clients: * 1. Windows XP s command line ftp client, * 2. IE 6.0, * 3. Redhat 9.0 s ftp client, * 4. CuteFTP 8, * I ll introduce more functions and improve its performance
標簽: demonstration supports followi simple
上傳時間: 2013-12-22
上傳用戶:wl9454
(1)實現下載功能 server()為服務端主程序,該程序主要是用來實現服務端的建立,首先要啟動Winsock,然后需要建立服務端的套接字,然后進行與客戶端的連接,當客戶端去人響應后就對客戶端發(fā)送文件,客戶端接受文件。 client()為客戶端程序,該程序主要是用來實現客戶端的建立,首先要啟動Winsock,然后需要建立客戶端的套接字,然后進行與服務端的連接,當與服務端連接上以后,客戶端接受文件。 (2)實現上傳功能 在實現了下載功能之后,還要求能實現上傳功能,也就是說,能夠將客戶端的文件發(fā)送到服務端去,此時,相當于下載的逆運算,真正實現了客戶端與服務端的互通,實現了兩臺PC機的互通。 (3)實現備份傳輸 在傳輸過程中,為了避免文件丟失,或者只是傳到一個地方,所以增加了備份傳輸,相當于加了一個保險,是文件得到了安全保障
上傳時間: 2014-11-08
上傳用戶:teddysha
client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> include <netinet/in.h> include <arpa/inet.h> include <unistd.h> int main() { int sockfd int len struct sockaddr_in address int result char ch = A sockfd = socket(AF_INET, SOCK_STREAM, 0) address.sin_family = AF_INET address.sin_addr.s_addr = inet_addr("127.0.0.1") address.sin_port = 9734 len = sizeof(address) result = connect(sockfd, (struct sockaddr *)&address, len) if(result == -1) { perror("oops: client") exit(1) } write(sockfd, &ch, 1) read(sockfd, &ch, 1) printf("char from server = c\n", ch) close(sockfd) exit(0) }
上傳時間: 2017-07-29
上傳用戶:wab1981
Browser-based (HTTP) file uploading is a great way to transfer arbitrary files from a client machine to the Web server which adds another dimension to Web-based applications.
標簽: Browser-based arbitrary uploading transfer
上傳時間: 2017-08-21
上傳用戶:13188549192
SQL Server 數據庫設計與管理
上傳時間: 2013-05-26
上傳用戶:eeworm
專輯類-網絡及電腦相關專輯-114冊-4.31G SQL-Server-數據庫設計與管理-330頁-13.0M.pdf
標簽: SQL-Server 13.0 330
上傳時間: 2013-05-29
上傳用戶:helmos
為污染源遠程監(jiān)測系統(tǒng)設計開發(fā)了Client/Server模式的管理信息系統(tǒng)軟件,整套管理軟件采用Delphi開發(fā),后臺支持數據庫采用SQL Server 2000。可完成系統(tǒng)管理、排污企業(yè)信息管理、實
標簽: 環(huán)境監(jiān)測 管理信息系統(tǒng) 設計開發(fā)
上傳時間: 2013-07-27
上傳用戶:nbdedu