上一页 1 ··· 212 213 214 215 216 217 218 219 220 ··· 337 下一页
摘要: 目的:让服务器支持大量并发访问。 注:以下内容 ASP/ASP.NET IIS 用不成。另外要精通Linux,TCP/IP。 摘要:本文主要介绍利用单台PC服务器来实现可支持百万级用户并发访问的WEB服务器的实践工作。意在提出一些手段来发掘设备的潜力,充分利用设备资源,以求达到降低硬件投入成本和维护成本的目的。 随着硬件技术的飞速发展,当前单台PC 服务器的性能得到了显著提升,反之,硬... 阅读全文
posted @ 2012-11-17 16:29 emanlee 阅读(6787) 评论(0) 推荐(0)
摘要: 当前路径下 (mat和m文件在一起): load ***.mat; 在下一级路径下: load .\下一级路径的文件名\***.mat; 在上一级路径下: load ..\***.mat; 在平行文件夹内: load ..\平行的文件夹\***.mat; 例如,读写当前目录下aaaa文件夹中的x.txt文件 fid = fopen('.\aaaa\x.... 阅读全文
posted @ 2012-10-17 20:41 emanlee 阅读(43117) 评论(0) 推荐(1)
摘要: 调用WCF时,出现下面的错误: System.ServiceModel.Security.SecurityNegotiationException : The caller was not authenticated by the service. System.ServiceModel.FaultException : The request for security token ... 阅读全文
posted @ 2012-10-01 10:47 emanlee 阅读(1310) 评论(0) 推荐(0)
摘要: 现象:Login failed for user 'sss'. The user is not associated with a trusted SQL Server connection. 原因: SQL Server服务器没有启用混合认证,将认证方式从集成认证改为混合认证即可解决。 阅读全文
posted @ 2012-09-25 18:42 emanlee 阅读(2243) 评论(0) 推荐(0)
摘要: 我的数据库连接字符串是这样的:server=MachineName\SQLEXPRESS;database=test;trusted_connection=true 感到很是奇怪,当单独部署运行web service时没问题,但把它发布到IIS, 访问就有问题了,查了下资料,如下: SYMPTOMS When you create a trusted connection from M... 阅读全文
posted @ 2012-09-25 18:35 emanlee 阅读(2188) 评论(0) 推荐(0)
摘要: 浏览网页出现错误: Server Application Error The server has encountered an error while loading an application during the processing of your request. Please refer to the event log for more detail informatio... 阅读全文
posted @ 2012-09-25 18:07 emanlee 阅读(1397) 评论(0) 推荐(0)
摘要: Cab 文件项目 - Visual Studio 中的部署 Cab 文件项目 (http://technet.microsoft.com/zh-cn/windows/fwb783c5) 使用 Cab 项目,可以创建 .Cab 文件,以便对可以从 Web 服务器下载到 Web 浏览器的 ActiveX 控件进行打包。 与其他部署项目类型不同,没有提供处理 CAB 项目的编辑器。文件和项目输... 阅读全文
posted @ 2012-09-23 15:34 emanlee 阅读(2469) 评论(0) 推荐(0)
摘要: Visual Studio 中的部署 合并模块介绍 (http://technet.microsoft.com/zh-cn/magazine/6771e4ch(VS.90).aspx) 合并模块是 Windows Installer 的一个功能,它提供了传送组件的标准方法,从而确保安装组件的正确版本。合并模块包含 .dll 这样的组件以及任何相关的文件、资源、注册表项和安装逻辑。 合并... 阅读全文
posted @ 2012-09-23 15:03 emanlee 阅读(5061) 评论(0) 推荐(0)
摘要: 遇到这个错误 Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints. 请参考msdn文章来debug找出错误的地方: http://msdn.microsoft.com/en-us/library/system... 阅读全文
posted @ 2012-09-15 10:50 emanlee 阅读(2831) 评论(0) 推荐(0)
摘要: C#接口是一个让很多初学C#者容易迷糊的东西,用起来好像很简单,定义接口,里面包含方法,但没有方法具体实现的代码,然后在继承该接口的类里面要实现接口的所有方法的代码,但没有真正认识到接口的作用的时候就觉得用接口是多此一举,当然你这样想那是绝对绝对错误的。 我们定义一个接口: public interface IBark { ... 阅读全文
posted @ 2012-09-13 20:20 emanlee 阅读(1213) 评论(0) 推荐(0)
上一页 1 ··· 212 213 214 215 216 217 218 219 220 ··· 337 下一页