E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
remoting
[ZZ]
Remoting
基本原理及其扩展机制(上)
.NET
Remoting
是.NET平台上允许存在于不同应用程序域中的对象相互知晓对方并进行通讯的基础设施。调用对象被称为客户端,而被调用对象则被称为服务器或者服务器对象。
·
2015-11-13 00:55
原理
[ZZ]在.NET中使用命名管道完成进程间通信
NET框架提供了几种好的选择来完成进程间通信(IPC):Web Service,
Remoting
。最快的是
Remoting
,因为它使用TCP通道和二进制格式。
·
2015-11-13 00:53
.net
[ZZ]Microsoft .Net
Remoting
系列专题之三:
Remoting
事件处理全接触
前言:在
Remoting
中处理事件其实并不复杂,但其中有些技巧需要你去挖掘出来。正是这些技巧,仿佛森严的壁垒,让许多人望而生畏,或者是不知所谓,最后放弃了事件在
Remoting
的使用。
·
2015-11-13 00:50
Microsoft
[ZZ]Microsoft .Net
Remoting
系列专题之二:Marshal、Disconnect与生命周期以及跟踪服务
Microsoft .Net
Remoting
系列专题之二 一、远程对象的激活 在
Remoting
中有三种激活方式,一般的实现是通过
Remoting
Services类的静态方法来完成。
·
2015-11-13 00:49
Microsoft
[ZZ]Microsoft .Net
Remoting
系列专题之一:.Net
Remoting
基础篇
Microsoft .Net
Remoting
系列专题之一 一、
Remoting
基础 什么是
Remoting
,简而言之,我们可以将其看作是一种分布式处理方式。
·
2015-11-13 00:49
Microsoft
[ZZ]
Remoting
技术:多线程中IpcChannel的性能太逊
但我在多线程测试中发现Ipc通道比Tcp慢了差不多20多倍,测试方法是在IIS6中创建
Remoting
通道,用WAS压力测试工具进行测试。IIS6中Web园设置为100个进程,核心请求队列设
·
2015-11-13 00:46
channel
DWR
DWR(Direct Web
Remoting
)是一个用于改善web页面与Java类交互的远程服务器端Ajax开源框架,可以帮助开发人员开发包含AJAX技术的网站。
·
2015-11-13 00:10
DWR
Remoting
测试
.NET
Remoting
是NET 框架中分布式开发的机制。
·
2015-11-12 23:08
测试
用
Remoting
传输大文件
近来因为项目需要,我们要做一个像分布式的文件存储一样的方案.所以上网来找了一下资料,常见的解决方案有如下两种: 1.将文件内容转换成一个Base64编码的字符串.然后调用WebServices或者.Net
Remoting
·
2015-11-12 22:31
大文件
.Net
Remoting
(应用程序域) - Part.1
原文: http://www.tracefact.net/CLR-and-Framework/
Remoting
-Part1.aspx 引言 在互联网日渐普及,网络传输速度不断提高的情况下,分布式的应用程序是软件开发的一个重要方向
·
2015-11-12 22:31
.net
一步一步学
Remoting
之二:激活模式
&n
·
2015-11-12 22:18
模式
一步一步学
Remoting
之一:从简单开始
nbsp; 一步一步学
Remoting
·
2015-11-12 22:17
in
利用vs.net快速开发windows服务
在很多应用中需要做windows服务来操作数据库等操作,比如 (1)一些非常慢的数据库操作,不想一次性去做,想慢慢的通过服务定时去做,比如定时为数据库备份等 (2)在.net
Remoting
中利用windows
·
2015-11-12 22:16
windows
Remoting
配置格式说明
下面举个例子:<configuration> <system runtime
remoting
> ///配置的都是与
remoting
有关的内容
·
2015-11-12 22:55
配置
.Net
Remoting
技术示例
为了说明.NET
Remoting
是如何运行的,先创建一个简单的类库,以创建远程的对象。
·
2015-11-12 22:54
.net
Remoting
技术使用配置文件示例
1、创建类库工程RemotableType.dll (提供remotable 类型)。 RemotableType.cs using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace MyRemotableType{ public c
·
2015-11-12 22:54
配置文件
Configuration
Configuration The .NET
remoting
infrastructure needs certain information in order to make
remoting
·
2015-11-12 22:53
configuration
Building a Basic .NET
Remoting
Application 之五 Basic
Remoting
Task List
.NET
remoting
is one of several ways to establish communication between application domains using the
·
2015-11-12 22:51
application
.NET
Remoting
Architecture
.NET
Remoting
Architecture The .NET
remoting
infrastructure is an abstract approach to interprocess
·
2015-11-12 22:51
Architecture
Building a Basic .NET
Remoting
Application 之四 Compiling and Running the Basic Application
Application To use the command-line tools that ship with the .NET Framework SDK to compile the basic
remoting
·
2015-11-12 22:50
application
Building a Basic .NET
Remoting
Application 之三 Building a Client Application
Building a Client Application To build a client of the remote type defined in Building a Remotable Type and hosted by the application created in Building a Host Application, your application mu
·
2015-11-12 22:49
application
Building a Basic .NET
Remoting
Application 之二 Building a Host Application
Building a Host Application By itself, the RemotableType class defined in the Building a Remotable Type topic is not special. To enable objects in other application domains to create instances
·
2015-11-12 22:48
application
Building a Basic .NET
Remoting
Application 之一 Building a Remotable Type
To enable objects in other application domains to use an instance of your class, your class must inherit from MarshalByRefObject. The following code example shows a simple object that can be created a
·
2015-11-12 22:47
application
Building a Basic .NET
Remoting
Application
Building a Basic .NET
Remoting
Application Building an application that uses .NET
remoting
to
·
2015-11-12 22:47
application
<>让.NET
Remoting
更快些-IPCChannel的实现
所以,在客户端和服务端在同一台机器时,我们可以通过注册IPCChannel来提高
Remoting
的性能。但如果
·
2015-11-12 22:45
channel
Microsoft .Net
Remoting
系列专题之一:.Net
Remoting
基础篇
前言:关于
Remoting
,我已经写了几篇文章了,就目前掌握的知识而言,差不多都是有关
Remoting
的基础知识。现在的我正准备向
Remoting
的高级用法进阶。
·
2015-11-12 22:29
Microsoft
Microsoft .Net
Remoting
系列专题之二:Marshal、Disconnect与生命周期以及跟踪服务
前言:随着对
Remoting
的逐渐深入学习,觉得
Remoting
技术真是博大精深,很多内容对于我来说均是全新的知识。自知技术造诣浅陋,唯有以勤补拙。
·
2015-11-12 22:28
Microsoft
创建以Microsoft .NET
Remoting
为基础的分布式应用架构
引言 在论坛里经常看见有人问:使用.NET
Remoting
如何从服务器主动发出事件通知客户端?
·
2015-11-12 22:26
Microsoft
.Net
Remoting
实践概述
Remoting
技术的应用 根据需求,我们的系统必须以C/S方式构建,而且是三层架构,这样一来,就出现了服务器端和客户端通信的问题。
·
2015-11-12 21:37
.net
NET
Remoting
双向通信
也是在网上胡乱搜索一片,看到一篇
Remoting
广播事件的博客+
Remoting
觉得这么还可以做。
·
2015-11-12 21:36
net
remoting
最简单的理解
大小项目里面也用到过几次
remoting
远程调用接口。 理解: 先打个比方,有点像产业链模式,从加工到销售再到消费。
·
2015-11-12 21:06
in
.NET的DLL注入后怎么执行
为什么要写这篇文章 1,如果你想注入带窗体的dll,C#写界面比C++容易的多; 2,或许你想利用.net的某些功能,比如利用.Net
Remoting
从外部控制被注入的dll; 3,或许你是一个
·
2015-11-12 20:14
.net
Flash/Flex/.net
remoting
通讯--Fluorine安装
工程师讨论关于flash与后台数据交互的问题,我们以前一般的做法是通过访问aspx文件来获取xml进行交互,但 是这样的做法安全性不高,效率又差.所以转而研究其它方式,正好看到了这篇关于《Flash
remoting
·
2015-11-12 20:04
Flash
Flex与ASP.NET通过
Remoting
方式进行通讯
本文是关于Flex与ASP.NET通过
Remoting
方式进行通讯的内容,过段时间有空还会把其它的通讯方式也描述一下,顺便也会把 Flex3与FluorineFx数据类型转换这方面的内容讲一下,都是通过在网上找资料和自己研究所总结出来的
·
2015-11-12 20:03
asp.net
.net
remoting
构架(part 2)转
源码下载:http://www.tracefact.net/SourceCode/
Remoting
-Part2.rar .Net
Remoting
(基本操作) - Part.2
Remoting
构架
·
2015-11-12 19:53
.net
.Net
Remoting
(基本操作) - Part.2
Remoting
构架 1.客户端(客户应用程序) 客户端的处理包含三个基本的组成部分,代理(Proxy)、格式器(Formatter) 和 通道(Channel)。
·
2015-11-12 19:52
.net
WCF 引论
.NET
Remoting
This topic is specific to a legacy technology that is retained for backward compatibility
·
2015-11-12 19:17
WCF
xml和web Server以及
Remoting
XML(Extensible Markup Language 可扩展标记语句)是一种描述数据和数据结构的语言。XML可以保存任何存储文本,具有可扩展性、跨平台型及传输与存储等优点。 XML和Html都是标记性语言。相同性:是基于SGML,区别:格式、使用性、可扩展性。 1XML文档注意:XML文档是大小写敏感的,对于XML标记,标记头和标记尾 的大小写规则必须匹配。 2XML控件:<a
·
2015-11-12 19:41
server
封装的ADO.NET对数据库操作经典类
using System; using System.Collections; using System.Collections.Specialized; using System.Runtime.
Remoting
.Messaging
·
2015-11-12 19:54
.net
消息队列(Message Queue)简介及其使用
MSMQ与XML Web Services和.Net
Remoting
一样,是一种分布式开发技术。但是在使用XML Web Services或.Net
Remoting
组件时
·
2015-11-12 18:45
message
在.NET中使用命名管道完成进程间通信(转自网络)
NET框架提供了几种好的选择来完成进程间通信(IPC):Web Service,
Remoting
。最快的是
Remoting
,因为它使用TCP通道和二进制格式。
·
2015-11-12 18:46
.net
windows Service 之调试过程
就是启动
remoting
连接,但是调试相对初次写windws service 的我来说,比较烦。没有经验,而且没办法像调试其他windows 程序一样设置断点,无法看到运行过程。
·
2015-11-12 17:57
windows
第三章 用 PowerShell 进行远程管理(
remoting
)
第三章 用 PowerShell 进行远程管理(
remoting
) PowerShell V2 引进了一项强大的新技术,远程(
remoting
),PowerShell V3 进行了完善和扩展。
·
2015-11-12 17:28
powershell
Remoting
3
注:转载 前言:在
Remoting
中处理事件其实并不复杂,但其中有些技巧需要你去挖掘出来。
·
2015-11-12 17:14
in
Remoting
2
注:转载 一、远程对象的激活 在
Remoting
中有三种激活方式,一般的实现是通过
Remoting
Services类的静态方法来完成。工作过程事实上是将该远程对象注册到通道中。
·
2015-11-12 17:13
in
图解DotNet框架之十:WCF(
Remoting
,Webservice)
WCF是对于Webservice,.Net
Remoting
,Enterprise Service,WSE,MSMQ等技术的整合。那么他与
Remoting
和Webservice有什么关系呢?
·
2015-11-12 16:49
webservice
.Net
Remoting
和Web Service浅析
随着.NET的推出,微软引入了一套新的通讯技术:Web Services和.NET
remoting
。.
·
2015-11-12 16:29
web Service
.net
remoting
的两种实现方式
通过
remoting
传递远程对象,可以在客户端激活,也可以在服务端激活。两种实现方式在msdn的资料库中有所提及,个人觉得写得很好,在此记录下。
·
2015-11-12 16:13
.net
封装的ADO.NET对数据库操作经典类
using System.Collections.Specialized; using System.Runtime.
Remoting
.Messaging
·
2015-11-12 16:17
.net
microsoft .net
remoting
系列专题之一
一、
remoting
基础 什么是
remoting
,简而言之,我们可以将其看作是一种分布式处理方式。
·
2015-11-12 15:57
Microsoft
上一页
18
19
20
21
22
23
24
25
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他