CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - rpc .i
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - rpc .i - List
[
Other resource
]
RemoteProcedureCall(RPC)程序设计指南
DL : 0
RemoteProcedureCall程序设计指南,我在做上个项目的时候就是参考它-RemoteProcedureCall Programming Guide, I came in when the project is its reference
Update
: 2008-10-13
Size
: 33.58kb
Publisher
:
周名
[
JSP/Java
]
json-rpc-java-1.0
DL : 0
json-rpc是和DWR类似的ajax-rpc实现。我比较细化,因为他很简单,而且只作rpc。如果你要实现自己特定的rpc的话,可以参考一下他。-json - rpc and DWR is similar to the ajax - rpc achieve. I am more details, because he was very simple, but only rpc. If you want to realize their own specific rpc, then he can take a look.
Update
: 2008-10-13
Size
: 624.95kb
Publisher
:
一农
[
VC/MFC
]
RemoteProcedureCall(RPC)程序设计指南
DL : 0
RemoteProcedureCall程序设计指南,我在做上个项目的时候就是参考它-RemoteProcedureCall Programming Guide, I came in when the project is its reference
Update
: 2025-02-17
Size
: 33kb
Publisher
:
周名
[
JSP/Java
]
phprpcserver
DL : 0
java 实现 phprpc 服务器端,个人认为比较好.-achieve phprpc java server, I think is good.
Update
: 2025-02-17
Size
: 3kb
Publisher
:
张涛
[
JSP/Java
]
json-rpc-java-1.0
DL : 0
json-rpc是和DWR类似的ajax-rpc实现。我比较细化,因为他很简单,而且只作rpc。如果你要实现自己特定的rpc的话,可以参考一下他。-json- rpc and DWR is similar to the ajax- rpc achieve. I am more details, because he was very simple, but only rpc. If you want to realize their own specific rpc, then he can take a look.
Update
: 2025-02-17
Size
: 625kb
Publisher
:
一农
[
MiddleWare
]
RPC
DL : 0
一个RPC例子,远程调用一个计算阶乘的函数。具体编写过程如下: 1、创建一个.idl文件, 为应用程序的远地函数定义一个接口。(RpcFact.idl文件) 2、应用程序属性配置文件 (RpcFact.acf文件) 3、用MIDL编译器编译RpcFact.idl文件,在Dos中输入命令midl RpcFact.idl。经过编译之后, 会生成这几个文件: RpcFact.h、RpcFact_s.c 和RpcFact_c.c 4、本例中阶层函数的实现(RpcFact.c文件) 5、服务器及客户端程序(分别为RpcFact_s.c,RpcFact_c.c)。 6、实现RPC函数的存储分配(memstub.h) 7、运行时要添加两个RPC运行库(rpcns4.lib和rpcrt4.lib)。 8、运行程序,先打开服务器程序,再打开客户端程序,出现结果120(5!)。 -err
Update
: 2025-02-17
Size
: 4.01mb
Publisher
:
far
[
Communication
]
JsonRpc
DL : 0
自己编写的JSON-RPC封装,使用方法简单,已在工程中多次应用-I have written JSON-RPC package, easy to use, has been repeatedly applied in engineering
Update
: 2025-02-17
Size
: 68kb
Publisher
:
王阿土
[
xml-soap-webservice
]
XML-RPC2001
DL : 0
XML-RPC takes web technology in a new direction, giving you a new way to create simple, but powerful, connections between different kinds of programs. After wasting more hours than I care to admit developing and documenting network formats used to exchange relatively simple kinds of information between programs, I was very happy to discover XML-RPC. It would have made all that work much easier. Whether you integrate systems within a single network or provide services and information to the public as a whole, XML-RPC provides critical layers of abstraction that make it simple to connect different kinds of computing systems without needing to create new standards for every application. Because XML-RPC is built on commonly available HTTP and XML technologies, the costs of implementing it are low. Because XML-RPC focuses sharply on solving a particular kind of problem -- making procedure calls across a network -- it is very easy to learn and implement across a wide variety of systems.-XML-RPC takes web technology in a new direction, giving you a new way to create simple, but powerful, connections between different kinds of programs. After wasting more hours than I care to admit developing and documenting network formats used to exchange relatively simple kinds of information between programs, I was very happy to discover XML-RPC. It would have made all that work much easier. Whether you integrate systems within a single network or provide services and information to the public as a whole, XML-RPC provides critical layers of abstraction that make it simple to connect different kinds of computing systems without needing to create new standards for every application. Because XML-RPC is built on commonly available HTTP and XML technologies, the costs of implementing it are low. Because XML-RPC focuses sharply on solving a particular kind of problem-- making procedure calls across a network-- it is very easy to learn and implement across a wide variety of systems.
Update
: 2025-02-17
Size
: 534kb
Publisher
:
redhat6
[
xml-soap-webservice
]
XML-RPC
DL : 0
我自己动手写的XML-RPC,最近自己写了写关于大规模分布式只是学习的实验,其中用到了python里面的清凉级-I have to write himself a XML-RPC, recently wrote out a large-scale distributed only to learn to write on the experiment, which used the python inside the cool-class
Update
: 2025-02-17
Size
: 2kb
Publisher
:
xieyuxin
[
Industry research
]
AjaxDebugging
DL : 0
Below are some guidelines that I used to debug Ajaxjavascript using ASP.NET 2.0. Based on the method I believe that it will work with ASP.NET 2003. First I must state that for what ever reason, my system, lack of know-how, or beta products, I could not get the "Script Explorer" to function, any typeof breakpoint to function, and except for some immediate window sniffing of the DOM, no actual debugging on client-side script or HTML using ASP.NET 2.0... I could not give up, so I dug and dug. Tested and retested. Finally taking a technique that I learned working with DCOM, VB6 and ActiveX "COM" servers, I succeeded in debugging not only the "javascript", but the "html" as well. I am able to set a breakpoint on a HTML button tag and/or another one in the javascript, then a third in my code-behind "C#" code. Using this technique I can step "F11" thru a Ajax or Script RPC call and watcheverything, well almost. Enough of the talk hereis how. -Below are some guidelines that I used to debug Ajaxjavascript using ASP.NET 2.0. Based on the method I believe that it will work with ASP.NET 2003. First I must state that for what ever reason, my system, lack of know-how, or beta products, I could not get the "Script Explorer" to function, any typeof breakpoint to function, and except for some immediate window sniffing of the DOM, no actual debugging on client-side script or HTML using ASP.NET 2.0... I could not give up, so I dug and dug. Tested and retested. Finally taking a technique that I learned working with DCOM, VB6 and ActiveX "COM" servers, I succeeded in debugging not only the "javascript", but the "html" as well. I am able to set a breakpoint on a HTML button tag and/or another one in the javascript, then a third in my code-behind "C#" code. Using this technique I can step "F11" thru a Ajax or Script RPC call and watcheverything, well almost. Enough of the talk hereis how.
Update
: 2025-02-17
Size
: 199kb
Publisher
:
daidai
[
File Format
]
RPC
DL : 0
i am in donesia, in bandung city.-i am in indonesia, in bandung city.
Update
: 2025-02-17
Size
: 74kb
Publisher
:
dwi rahmat
[
Linux-Unix
]
conrpc
DL : 0
wakeup (transaction)thread if I m the last RPC in the transaction.
Update
: 2025-02-17
Size
: 10kb
Publisher
:
fiukaovj
[
Linux-Unix
]
svc_xprt
DL : 0
RPC server transport I O.
Update
: 2025-02-17
Size
: 13kb
Publisher
:
jfieoit
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.