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的源码,陆续上传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,然后需要建立服务端的套接字,然后进行与客户端的连接,当客户端去人响应后就对客户端发送文件,客户端接受文件。 client()为客户端程序,该程序主要是用来实现客户端的建立,首先要启动Winsock,然后需要建立客户端的套接字,然后进行与服务端的连接,当与服务端连接上以后,客户端接受文件。 (2)实现上传功能 在实现了下载功能之后,还要求能实现上传功能,也就是说,能够将客户端的文件发送到服务端去,此时,相当于下载的逆运算,真正实现了客户端与服务端的互通,实现了两台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
为污染源远程监测系统设计开发了Client/Server模式的管理信息系统软件,整套管理软件采用Delphi开发,后台支持数据库采用SQL Server 2000。可完成系统管理、排污企业信息管理、实
上传时间: 2013-07-27
上传用户:nbdedu