-
asp.net的webservice,与wpf客户端的httpwebrequest通讯
应用背景公司在一个项目中,前端需要和中心通讯,上报状态。中心用的是webservice,类型未知,只知道协议是纯XML格式数据。在用asp.net做了一个虚拟中心后,客户端采用http方式传输用xml对象编好的纯数据。关键技术
xml对象操作,涉及到xmldocument,xmlreader,xmlwriter
sql数据库操作,主要是查询。
wpf中treeview控件的使用
wpf中listview的使用,样式表
httpwebrequest的使用
asp.net的使用
vs2010,sqlservice
- 2022-02-03 13:32:29下载
- 积分:1
-
TRasObject实现了一些主要的函数,允许开发者在其程序中使用RAS功能。它可以管理连接(创建,修改,重命名,删除),对选定的连接拨号或挂断。...
TRasObject实现了一些主要的函数,允许开发者在其程序中使用RAS功能。它可以管理连接(创建,修改,重命名,删除),对选定的连接拨号或挂断。-TRasObject achieved some of the major functions, allowing developers to use in their proceedings RAS features. It can manage to connect (create, modify, rename, delete), the selected dial-up or hang up the connection.
- 2022-05-20 08:58:08下载
- 积分:1
-
we use a lot of TurboC programming tools, use good, we assured download, absolut...
这是大家使用很多的turboc编程工具,很好使用,大家放心下载,绝对真实.无毒.-we use a lot of TurboC programming tools, use good, we assured download, absolutely true. Nontoxic.
- 2022-08-08 23:56:48下载
- 积分:1
-
SCDMA中文标准,对TD
TD-SCDMA中文标准,对TD-SCDMA感兴趣的同学也许会有帮助。-TD-SCDMA Chinese standard, TD-SCDMA for interested students may be helpful.
- 2023-03-04 04:55:03下载
- 积分:1
-
中国电信parlayx webservice开发文档及规范
中国电信parlayx webservice开发文档及规范-China Telecom parlayx webservice development documents and regulations
- 2022-01-26 02:49:58下载
- 积分:1
-
FPGA设计流程,相当经典,好东西大家分享
FPGA设计流程,相当经典,好东西大家分享-FPGA design flow, very classic, good things to share
- 2022-03-12 00:03:25下载
- 积分:1
-
h.264编码器流程图,参考代码版本为jm61
h.264编码器流程图,参考代码版本为jm61-h.264 encoder flowchart, reference code version jm61
- 2023-02-21 22:30:03下载
- 积分:1
-
微信检测被哪些好友删除
资源描述代码的原理是将所有的好友全部拉入群组,如果拉不进来,表明对方将你删除了
- 2022-04-30 18:36:24下载
- 积分:1
-
Script for computing the per symbol peak to average PAPR for
an OFDM transmi...
Script for computing the per symbol peak to average PAPR for
an OFDM transmit waveform (loosely based on IEEE 802.11A
specifications)
Further, Cumulative Distribution Function (CDF) plots of the
PAPR is captured
- Script for computing the per symbol peak to average PAPR for
an OFDM transmit waveform (loosely based on IEEE 802.11A
specifications)
Further, Cumulative Distribution Function (CDF) plots of the
PAPR is captured
- 2022-04-18 07:11:31下载
- 积分:1
-
VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue /////////////////...
VC++ 封装了队列类 /// /// /// ///// //this a example for using Queue ///////////////////////////////////////// #include "Queue.h" //define queue data struct struct QueueData { char data[20] int nId } //define queue typedef TQueue TMyQueue //put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 m_pMyQueue.TryPut(data) } //try put data into queue { QueueData data memset(&data, 0, sizeof(data)) strcpy(data.data, "hello!") data.nId = 0 if(m_pMyQueue.TryPut(data) != 0) { MessageBox("put queue error") } else { MessageBox("put queue success") } } //get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.Get(data) MessageBox(data.data) } //try get data from queue { QueueData data memset(&data, 0, sizeof(data)) m_pMyQueue.TryGet(data) MessageBox(data.data) }-cohort of VC Packaging category /////////////////////////////////////////// this is a example for using Queue ///////
- 2023-07-24 17:35:03下载
- 积分:1