-
wcf 实现大文件上传(有进度条)实例源码
部分win7/win8用户 运行时报错 可能是 权限问题,所以运行项目的时候 要右键>>以管理员身份运行 部分用户 运行该项目的时候 可能提示:协定需要双工 但是绑定 NetTcpBinding 不支持 这是只需要将host项目app.config中协议部分 改为wsDualHttpBinding 即可,如下代码: 另外使用wcf时,最好不要使用 using 因为使用using会屏蔽掉很多错误,误导用户,参考链接:http://www.codeproject.com/Tips/197531/Do-not-use-using-for-WCF-Clients 相关代码改为:using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;using System.ServiceModel;namespace WcfUploadServiceHost{ static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { try { var host = new ServiceHost(typeof (WcfUploadServiceLib.UpLoadService)); host.Open(); Console.WriteLine("Server is opened..."); Console.Read(); //using (var host = new ServiceHost(typeof(WcfUploadServiceLib.UpLoadService))) //{ // host.Open(); // Console.WriteLine("Server is opened..."); // Console.Read(); //} } catch (Exception ex) { Console.WriteLine(ex.ToString()); Console.Read(); } } }}
- 2015-01-07下载
- 积分:1
-
Client
網路上搜尋而來的龍族client源碼..(Maronite client source)
- 2013-06-24 20:19:13下载
- 积分:1
-
liujiaopei
MFC窗体程序,计算机图形学,在视窗中显示文字并可以移动。(MFC form, computer graphics, display text in a window and can be moved.)
- 2014-01-02 22:47:46下载
- 积分:1
-
KCBJ
说明: 库存仿真,对比各策略,选择优化,相互比较(Stock simulation, comparing the strategy, select the optimization, compared with each other)
- 2010-04-01 13:46:08下载
- 积分:1
-
WINDOWS-VIA-C-CPP
Windows核心编程(第5版)
Windows Via C/C++
by Jeffrey Richter and Christophe Nasarre
(Windows core programming (5th Edition) Windows Via C/C++ by Jeffrey Richter and Christophe Nasarre)
- 2014-05-13 16:57:53下载
- 积分:1
-
MH2.3CODE
11mh的辅助源码,下载研究去吧!!!!(Source of the 11mh the secondary, download study go! ! ! !)
- 2013-03-22 13:06:51下载
- 积分:1
-
所有模块资料
msp430各模块程序,基于一些外设的程序模块例程(MSP430 module program, based on some peripheral program module routines)
- 2020-06-25 09:20:02下载
- 积分:1
-
Layout-Manager_MFC
Layout manager options for MFC apps
- 2014-08-06 02:59:52下载
- 积分:1
-
MDxianquanpan6月20号
实现三菱PLC与上位机MC协议通讯,二进制或者ASCII均可。(Implementation of protocol communication between MITSUBISHI PLC and host computer MC)
- 2018-05-12 22:31:31下载
- 积分:1
-
MQTT
【实例简介】MQTT,本例中包含客户端和服务器端,可以很好的完整进行MQTT的调试,并很方便进行代码复用,具有很好的示例效果。
- 2021-11-25 00:44:44下载
- 积分:1