Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.480.052 Times

Rpc Implementation software
Filter: All | Freeware | Demo
 

Rpc Implementation

1 2 3 4 5 > 
Added: May 01, 2010 | Visits: 634

Jabber::RPC Jabber::RPC is a Jabber-RPC Implementation. SYNOPSIS See documentation for Jabber::RPC::Server and Jabber::RPC::Client. Jabber::RPC is a library that implements Jabber-RPC for Perl. The library consists of two modules, Jabber::RPC::Server and Jabber::RPC::Client. Please refer to the... Platforms: *nix

License: Freeware Size: 5.12 KB Download (113): Jabber::RPC Download

Added: December 07, 2012 | Visits: 256

FreeDCE 1..7-rc2 This application represents a free implementation of DCE RPC, with development aimed at implementing DCOM for Linux (and other UNIX systems). Platforms: BSD

License: Freeware Download (49): FreeDCE 1..7-rc2 Download

Added: April 29, 2013 | Visits: 341

FreeDCE 1..7-rc2 This application represents a free implementation of DCE RPC, with development aimed at implementing DCOM for Linux (and other UNIX systems). Platforms: BSD

License: Freeware Download (50): FreeDCE 1..7-rc2 Download

Added: June 26, 2013 | Visits: 283

z3c.jsonrpc This package provides an JSON-RPC server implementation for Zope3. JSON is javascript object notation. JSON-RPC performs the same service as XML-RPC, except the transport is JSON instead of XML. Many thanks to Jim Washington for the work on zif.jsonserver. This project uses many code writen by... Platforms: *nix

License: Shareware Cost: $0.00 USD Size: 51.2 KB Download (42): z3c.jsonrpc Download

Added: October 11, 2013 | Visits: 163

DeferredKit DeferredKit is an asynchronous library for cocoa built around the idea of a Deferred Object - that is, "an object created to encapsulate a sequence of callbacks in response to an object that may not yet be available." Besides the core class, DKDeferred, much other functionality is included in... Platforms: Mac

License: Shareware Cost: $0.00 USD Size: 1.28 MB Download (43): DeferredKit Download

Added: May 10, 2013 | Visits: 545

Apache XML-RPC Apache XML-RPC is a Java implementation of XML-RPC, a popular protocol that uses XML over HTTP to implement remote procedure calls. Platforms: Windows, Mac, *nix, Java, BSD Solaris

License: Freeware Download (55): Apache XML-RPC Download

Added: February 10, 2010 | Visits: 1.075

Remote Tea Remote Tea project delivers a fully fledged implementation of the ONC/RPC protocol for the Java 2/1.1 platforms. Complete client and server functionality is available, as is client access to the portmapper. The package contains an rpcgen-like precompiler for converting .x files into Java... Platforms: *nix

License: Freeware Size: 727.04 KB Download (94): Remote Tea Download

Added: February 27, 2010 | Visits: 703

RPC::XML RPC::XML is a set of classes for core data, message and XML handling. SYNOPSIS use RPC::XML; $req = RPC::XML::request->new(fetch_prime_factors, RPC::XML::int->new(985120528)); ... $resp = RPC::XML::Parser->new()->parse(STREAM); if (ref($resp)) { return $resp->value->value; } else {... Platforms: *nix

License: Freeware Size: 122.88 KB Download (91): RPC::XML Download

Added: May 19, 2010 | Visits: 811

DCE::RPC SYNOPSIS use DCE::RPC; use Authen::Perl::NTLM qw(lm_hash nt_hash); use constant DCOM_IREMOTEACTIVATION => pack("H32", "B84A9F4D1C7DCF11861E0020AF6E7C57"); use constant DCOM_IF_VERSION => 0x00; use constant DCOM_XFER_SYNTAX => pack("H32", "045D888AEB1CC9119FE808002B104860"); use constant... Platforms: *nix

License: Freeware Size: 7.17 KB Download (104): DCE::RPC Download

Added: October 20, 2013 | Visits: 422

Redstone XML-RPC Redstone XML-RPC Library is a small but versatile implementation of the XML-RPC specification. It contains the following main features: * An XML-RPC client for accessing XML-RPC services, and an XML-RPC servlet for publishing plain Java objects as XML-RPC services in a web server. Both the... Platforms: Mac

License: Freeware Size: 10.24 KB Download (39): Redstone XML-RPC Download

Added: April 21, 2010 | Visits: 1.367

Automated support for compound RPC calls Automated support for compound RPC calls is a project which augments RPCGEN to support NFSv4-style compound procedures. NFSv4 specifies that the RPC calls be batched into a "compound" call. There is no support for this in RPCGEN. By rearranging the ONC IDL for NFSv4 into AutoGen definitions,... Platforms: *nix

License: Freeware Size: 22.53 KB Download (106): Automated support for compound RPC calls Download

Added: June 25, 2010 | Visits: 835

Jabber::RPC::HTTPgate Jabber::RPC::HTTPgate is an HTTP gateway for Jabber-RPC / XML-RPC. SYNOPSIS use Jabber::RPC::HTTPgate; my $gw = new Jabber::RPC::HTTPgate( server => myserver.org:5701, identauth => jrpchttp.localhost:secret, httpcomp => http, ); $gw->start; Jabber::RPC::HTTPgate is an experimental... Platforms: *nix

License: Freeware Size: 9.22 KB Download (96): Jabber::RPC::HTTPgate Download

Added: January 20, 2010 | Visits: 799

RPC::pClient RPC::pClient is a Perl extension for writing pRPC clients. SYNOPSIS use RPC::pClient; $sock = IO::Socket::INET->new(PeerAddr => joes.host.de, PeerPort => 2570, Proto => tcp); $connection = new RPC::pClient(sock => $sock, application => My App, version => 1.0, user => joe, password... Platforms: *nix

License: Freeware Size: 19.46 KB Download (97): RPC::pClient Download

Added: April 08, 2010 | Visits: 1.141

Event::RPC Event::RPC is a event based transparent Client/Server RPC framework. SYNOPSIS #-- Server Code use Event::RPC::Server; use My::TestModule; my $server = Event::RPC::Server->new ( port => 5555, classes => { "My::TestModule" => { ... } }, ); $server->start;... Platforms: *nix

License: Freeware Size: 31.74 KB Download (114): Event::RPC Download

Added: September 08, 2010 | Visits: 876

RPC::XML::Procedure RPC::XML::Procedure is an object encapsulation of server-side RPC procedures. SYNOPSIS require RPC::XML::Procedure; ... $method_1 = RPC::XML::Procedure->new({ name => system.identity, code => sub { ... }, signature => [ string ] }); $method_2 =... Platforms: *nix

License: Freeware Size: 122.88 KB Download (89): RPC::XML::Procedure Download

Added: February 16, 2010 | Visits: 688

Wily::RPC Wily::RPC is a Perl extension for the Wily RPC interface. SYNOPSIS use Wily::RPC; use Wily::Message; # opens a file in wily and exits when the window is destroyed my $wily = Wily::RPC->new(); my $win = $wily->win(/tmp/file_to_edit, 1); $wily->attach($win, Wily::Message::WEdestroy);... Platforms: *nix

License: Freeware Size: 21.5 KB Download (88): Wily::RPC Download

Added: July 26, 2010 | Visits: 2.162

Bellagio OpenMAX IL Implementation Bellagio is a sample implementation of OpenMAX IL for Linux. It enables software developers and ISVs to familiarize themselves with the OpenMAX IL API and to develop their own OpenMAX multimedia and streaming media components for mobile devices, including codecs, video I/O, and audio mixers.... Platforms: *nix

License: Freeware Size: 501.76 KB Download (128): Bellagio OpenMAX IL Implementation Download

Added: July 01, 2010 | Visits: 1.576

Fast MD5 Implementation in Java Fast MD5 Implementation in Java is a heavily optimized implementation of the MD5 hashing algorithm written in Java. Fast MD5 Implementation in Java includes an optional native method for even greater speed improvements. How Fast Is It? Short answer:Much faster than any other Java... Platforms: *nix

License: Freeware Size: 74.75 KB Download (176): Fast MD5 Implementation in Java Download

Released: July 27, 2012  |  Added: July 27, 2012 | Visits: 447

Routix.RPC Remote procedure call (RPC) is a technology that allows a computer program to cause a subroutine or procedure to execute in another address space (commonly on another computer on a shared network) without the programmer explicitly coding the details for this remote interaction. That is, the... Platforms: Windows

License: Shareware Cost: $299.95 USD Size: 1.99 MB Download (42): Routix.RPC Download

Added: May 10, 2013 | Visits: 416

Bind wxPython and XML-RPC server together This script makes a wxPython application acting as a XML-RPC server, listening to a dedicated port. It presents a GUI logging application, where logging messages come from other applications via xml-rpc calls. Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (50): Bind wxPython and XML-RPC server together Download

1 2 3 4 5 >