» tagged pages
» logout

sorted by: recent | see : popular
Content Tagged with RPC + protocol

Protocol Buffers – Missing Usage Guide? " Libor.SOUCEK("WEBLog") - Vimperator

Protocol Buffers – Missing Usage Guide? Last week Google released code called Protocol Buffers (PB) under open source license. Code essentially enables hierarchical data serialization base on some IDL like definition to binary form with advantage to be cross languages (presently Python, Java and C++) and cross OS capable. Not long after code release appeared many articles discussing code capability and (dis)advantages compare to XML. The big wave of reaction was also spurred by suggested use of binary message together with RPC method call. Among posts on this topic were such highly respectable people like Ted Neward, Stefan Tilkov, Steve Vinosky here and here or Dare Obasanjo. Unfortunately those “big shooters” failed short with clean recommendation what part of solution (if anything) to use and under which conditions.

XML: del.icio.us/tag/xml

Developer Guide - Protocol Buffers - Google Code

Protocol buffers are a flexible, efficient, automated mechanism for serializing structured data – think XML, but smaller, faster, and simpler. You define how you want your data to be structured once, then you can use special generated source code to easily write and read your structured data to and from a variety of data streams and using a variety of languages. You can even update your data structure without breaking deployed programs that are compiled against the "old" format.

XML: del.icio.us/tag/xml

Burlap

Burlap is a simple XML-based protocol for connecting web services. The com.caucho.burlap.client and com.caucho.burlap.server packages do not require any other Resin classes, so can be used in smaller clients, like applets.

XML: del.icio.us/tag/xml

RESTful JSON (Joe Gregorio | BitWorking)

Kicking off a discussion on using the REST conventions with the JSON data-structure mini-language to make the web a better place.

json: del.icio.us/tag/json

Protocol Buffers - Google Code

Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data – think XML, but smaller, faster, and simpler.

opensource: del.icio.us tag/opensource

NETCONF - osdev-j MMA

>ネットワーク機器構成のためのXMLプロトコル。

XML: del.icio.us/tag/xml

XML-RPC

XML-RPC or XML remote procedure call is a xml-based protocol that uses HTTP to transmit procedure calls.

XML-RPC is a very simple protocol and was created by Dave Winer in 1995, in conjunction with Microsoft.

Microsoft and others later extended XML-RPC into a more complex protocol called SOAP.

A typical XML-RPC message looks like this:

<?xml version="1.0"?>
<methodCall>
<methodName>example.getName</methodName>
  <params>
    <param>
        <value><a>42</a></value>
    </param>
  </params>
</methodCall>

REST-RPC

Working name for the RPC protocol integrated within XINS.

Since this name is considered confusing, it has been changed to POX-RPC.

XINS-internal name for this protocol used to be “the XINS standard calling convention.”