2013-06-20 10:19:22 在CCS2.0 的emulator写dsp/bios 的程序,编译链接无错误,而点击LOAD Program下载xxx.out完成时弹出如下对话框: RTDX target application does not match emulation protocol! Loaded program was created with an rtdx library which does not match the target device 这将导致RTDX(…
最近准备系统学习网络相关的知识,主要学习tcp/ip, websocket 知识. 原文地址:http://www.thegeekstuff.com/2011/11/tcp-ip-fundamentals/ Have you ever wondered how your computer talks to other computers on your local LAN or to other systems on the internet? Understanding the intrica…
https://msdn.microsoft.com/en-us/library/aa767914(VS.85).aspx Registering an Application to a URI Scheme   The About Asynchronous Pluggable Protocols article describes how to develop handlers for Uniform Resource Identifier (URI) schemes. In some cas…
原文: https://technet.microsoft.com/en-sg/library/cc958821.aspx 1. 主机到网络层 2.网络互连层(互连这个翻译好) ---------------------------------------- TCP/IP Protocol Architecture TCP/IP protocols map to a four-layer conceptual model known as the DARPA model , named afte…
A method for optimizing the throughput of TCP/IP applications by aggregating user application data and consolidating multiple TCP/IP connection streams into a single optimized stream for delivery to a destination application. Optimization of the inte…
此文转载 XXE VALID USE CASE This is a nonmalicious example of how external entities are used: <?xml version="1.0" standalone="no" ?> <!DOCTYPE copyright [ <!ELEMENT copyright (#PCDATA)> <!ENTITY c SYSTEM "http://www.…
Assignment 2The Trivial File Transfer Protocol (TFTP) is an Internet software utility fortransferring files that is simpler to use than the File Transfer Protocol (FTP) butless capable. It is used where user authentication and directory visibility ar…
原文地址:http://blogs.msdn.com/b/wenlong/archive/2006/11/22/virtual-application-vs-virtual-directory.aspx. People are always confused by these two IIS concepts, especially for the new IIS7/WAS. These are not new concepts. They are available since IIS6 on…
在发布一个运行于 WebSphere Application Server 的 J2EE 应用之前,对服务器进行配置和部署应用是必不可少的一个过程,这个过程是非常复杂的.WAS 为用户提供了可视化的管理控制台(Web Admin Console)来完成这一任务.即便如此,开发或部署人员仍需要接受培训,并花费一定的时间和精力来完成这些配置和部署工作.对于一个开发团队来说,如果每个团队成员都要手工的完成环境配置和应用部署,其代价是比较高的. 本文介绍使用 wsadmin 工具配合 Jython 脚本…
背景介绍 开发过程中,我们会在内网搭建一个测试服务器,开发.测试都是在内网进行的.这样产生脏数据不会影响外网的服务器.外网服务器只有最后发布时才会进行一些必要的测试. 还有就是要对同一份代码生成不同的product,比如一个游戏有100关,要生成一个免费版(只有20关),可以新建一个Target,设置参数就可以实现,如果通过代码来控制就太麻烦了. 怎么办 针对第一个问题,在代码级别,对这个URL的选择,可以使用简单一点的宏来判断.这样所有的请求只要都调用这个宏,就可以做到控制.但是这样写不少限制…