登录
首页 » Visual C++ » Desktop

Desktop

于 2012-03-06 发布 文件大小:1567KB
0 297
下载积分: 1 下载次数: 396

代码说明:

  onvif协议ptz服务端和客户端程序,可以实现服务端服务和客户端访问(onvif ptz server client program)

文件列表:

PTZC
....\PTZC
....\....\ptz.h,880322,2012-03-03
....\....\PTZBinding.nsmap,988,2012-03-03
....\....\PTZC.cpp,372,2012-03-05
....\....\PTZC.vcproj,5483,2012-03-03
....\....\PTZC.vcproj.lxc-PC.Administrator.user,1409,2012-03-05
....\....\ReadMe.txt,932,2012-03-03
....\....\soapC.cpp,6723516,2012-03-03
....\....\soapH.h,1686621,2012-03-03
....\....\soapPTZBindingProxy.cpp,41848,2012-03-03
....\....\soapPTZBindingProxy.h,11359,2012-03-03
....\....\soapStub.h,635089,2012-03-03
....\....\stdafx.cpp,209,2012-03-03
....\....\stdafx.h,276,2012-03-03
....\....\stdsoap2.cpp,477061,2012-03-03
....\....\stdsoap2.h,91109,2012-02-20
....\PTZC.sln,877,2012-03-03
PTZS
....\PTZS
....\....\onvif.xsd,291196,2011-08-09
....\....\ptz.h,880322,2012-03-03
....\....\ptz.wsdl,40895,2011-08-12
....\....\PTZBinding.nsmap,988,2012-03-03
....\....\PTZS.cpp,242,2012-03-03
....\....\PTZS.vcproj,4995,2012-03-03
....\....\PTZS.vcproj.lxc-PC.Administrator.user,1409,2012-03-05
....\....\ReadMe.txt,932,2012-03-03
....\....\soapC.cpp,6723516,2012-03-03
....\....\soapH.h,1686621,2012-03-03
....\....\soapPTZBindingService.cpp,42608,2012-03-05
....\....\soapPTZBindingService.h,7599,2012-03-03
....\....\soapStub.h,635089,2012-03-03
....\....\stdafx.cpp,209,2012-03-03
....\....\stdafx.h,276,2012-03-03
....\....\stdsoap2.cpp,477061,2012-03-03
....\....\stdsoap2.h,91109,2012-02-20
....\PTZS.sln,877,2012-03-03

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • client2
    客户端连接服务器的程序,以此测试客户端是否连接上。(client programming source)
    2013-09-02 16:17:04下载
    积分:1
  • chat实例
    说明:  基于VC++的局域网聊天室,能够实现多人房间聊天。(LAN chat room based on VC++ can realize multi-room chat.)
    2019-02-15 10:30:43下载
    积分:1
  • GetWebSource
    通过 afxinet库中函数 获得网页发过来的代码 并保存(Obtained by afxinet library functions and the code page sent me to save)
    2011-07-12 14:11:51下载
    积分:1
  • VS2005-IPAddressControlLib-rev-10
    VS很好用的IP类文件,外国人编写的哦,很实用的命名空间(IP class files VS good use of foreigners prepared oh, Very practical namespace)
    2020-12-18 11:19:11下载
    积分:1
  • haisanids
    VC++网络连接监控程序源代码,适合编写网络监控的编程者参考,选择监听的网络IP地址后才可以开始监听里程。并包括了IDS过滤器参数设置,几点提示:   1.初始状态只监听连接,不捕获IP数据   2.鼠标右击列表选择或取消监控某端口数据   3.为防止ping攻击,一般情况ping数据全部监控   4.监控某端口数据时,不监控ping包   5.数据超过20k将被清空   6.右边窗口停止抓包后显示十六进制数(VC++ source code network connection monitoring, network monitoring program for the preparation of reference, select the monitor s network IP address before you can start listening mileage. And includes IDS filter parameter settings, a few tips: 1. Initial state only listen for connections, do not capture IP data 2 Right-click the list to select or deselect a port monitoring data 3 To prevent ping attacks, general ping all monitoring data 4 When a port monitoring data, no monitoring of ping packets 5 The data will be cleared over 20k 6 right window displays the hexadecimal number stopped after capture)
    2014-07-02 10:17:36下载
    积分:1
  • client111
    基于socket 的网络编程 客户端 具有上传下载文件功能(Socket-based network programming for clients with upload and download files function)
    2011-05-15 09:39:04下载
    积分:1
  • AutoUpdater
    通过客户端与服务器端文件对比,实现自动升级功能。(Through the client and server-side document comparison, automatic update feature.)
    2009-10-27 12:22:34下载
    积分:1
  • client-server
    多协议文件传输c/s网络应用设计与实现,程序用 TCP/UDP 两个协议模拟多协议服务器。首先服务器端要将两种协议的套接字创建好,并且监听 TCP 端口的连接。必要时使用select函数来进行多连接处理和非阻塞处理。而客户端直接可以按照发送的地址和端口号来进行通讯。 首先要运行服务器端,服务器会监听 TCP 端口。然后运行客户端,根据事先设定好的 IP和端口,就可以进行连接传输数据了。 程序实现的关键步骤: 以TCP协议为例 服务器端: 1.创建套接字;2.绑定端口;3.进入无穷的循环;4.接收请求;5.处理请求;6.应答。 客户端: 1.找到服务器的IP地址和协议的端口号;2.创建套接字;3.确定连接需要任意的,没有使用的端口号允许TCP去选择一个;4.将套接字和服务器连接;5.使用应用层协议和服务器交互;6.关闭连接。 (Multi-protocol file transfer c/s network application design and implementation of programs simulate multi-protocol server with TCP/UDP both protocols. First socket server to create a good two protocols, TCP port and listens for connections. If necessary, use the function to handle multiple connections and non-blocking treatment. And the client can follow directly address and port number to communicate. First run on the server side, the server listens on TCP port. Then run the client, according to pre-configured IP and port, you can connect the data transmission. The key step program implementation: In TCP protocol as an example Service-Terminal: 1. Create a socket 2 bound port 3 enter an infinite loop 4. receiving a request 5. processing requests 6 response. Clients: 1. Locate the server s IP address and protocol port number 2 creates a socket 3 connections need to determine arbitrary, unused port allows TCP to choose a 4 and the socket server connections 5 using appli)
    2016-07-11 10:19:07下载
    积分:1
  • DevSearch
    1.局域网内设备IP搜索 2.发送广播包出去,同时启动侦听接收 3.支持局域网内跨网断搜索(1.IP search in local network 2.send broadcast packet, and receive request 3.support different gateway.)
    2015-08-19 11:58:11下载
    积分:1
  • hperation-ophratgon
    Implementing push-to talk with hotkey operation(Implementing a push- to talk with hotkey operation)
    2017-03-31 00:14:05下载
    积分:1
  • 696516资源总数
  • 106428会员总数
  • 7今日下载