Projects tagged ‘serialization’ and ‘web’


Jump to tag:

Projects tagged ‘serialization’ and ‘web’

Filtered by Project Tags serialization web

Refine results Project Tags json (4) library (4) java (3) ajax (3) xml (2) jruby (2) springframework (2) framework (2) spring (2) rubygem (2) ruby (2) ioc (1)

[7 total ]

11 Users
 

JSON-lib is a java library for transforming beans, maps, collections, java arrays and XML to JSON and back again to beans and DynaBeans. It is based on the work by Douglas Crockford in ... [More] http://www.json.org/java. Includes support for Groovy and JRuby as well. [Less]
Created over 2 years ago.

3 Users
 

Reverspring is a Java library that allows you to create Spring IoC XML files from POJO at runtime, with detailed configuration about what to add in the descriptor and how to write it.
Created over 2 years ago.

1 Users

JSON-JRuby is a port of Florian Frank's native json library to JRuby.
Created about 1 year ago.

0 Users

GWT Freeze Dry is a very simple framework for passsing compile time or start time objects to your GWT application. It has two operating modes: a Compile time factory and a Run time Dictionary mode. ... [More] In each mode the first task is to create an interface that extends Freezer and has no-args methods returning Objects that implement IsSerializable. If you want to build the objects at compile time, you need to write a YourFreezerInterfaceNameFactory class. This will be executed at compile time and the value it returns encoded into your GWT source file. If you want to build the objects at run time, you can pass them in via a Dictionary JavaScript var. For example: ; var com_totsp_freezedry_example_client_DictionaryFreezer = { getObject: unescape( '<%=URLEncoder.encode( SimpleSerializer.serializeObject( o ), 'UTF-8' )%>' ) }; ;Where the var name is the fully qualified name of your Freezer interface and the key names are the object names you need to return. The SimpleSerializer class is included to make this easier to do from the server. Finally, inherit the FreezeDry module: And use the GWT class to create your instance: ExampleFreezer freezer = (ExampleFreezer) GWT.create( ExampleFreezer.class );Note: This is only for use with GWT 1.4+ More here. [Less]
Created 12 months ago.

0 Users

A lightweight JSON serializer and deserializer for the .NET Compact Framework (v2.0). This library is very early in development and should be used with caution. There has been very little testing. ... [More] Unless you specifically need access from the compact framework, a more mature JSON library is recommended, such as Json.NET (http://www.codeplex.com/Json) [Less]
Created 10 months ago.

0 Users

NoTube CollectorA plugin based framework meant to collect, aggregate, enrich and query cross data about Social Web users. AuthorsDavide Palmisano (dpalmisano@gmail.com) Michele Minno ... [More] (michele.minno@gmail.com) Michele Mostarda (michele.mostarda@gmail.com)IntroductionThis project contains the source code of the collector module (part of BeanCounter) developed in the NoTube European project context. DocumentationThe project javadoc snapshot is available here. Statistics .gadget-title { margin-bottom: 2px; } function resizeIframeHandler(opt_height) { var elem = document.getElementById(this.f); if (!elem) return; if (!opt_height) { elem.style.height = undefined; } else { opt_height = Math.max(10, opt_height); elem.style.height = opt_height + 'px'; } } gadgets.rpc.register("resize_iframe", resizeIframeHandler); gadgets.rpc.register('set_title', function(title) { var elem = document.getElementById(this.f + '_title'); if (elem) { elem.innerHTML = gadgets.util.escape(title); } }); LicenseThe MIT License Copyright (c) 2009 Asemantics S.r.L. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. [Less]
Created about 1 month ago.

0 Users
 

An implementation of the JSON specification according to RFC 4627 for Ruby. Includes a (very fast) native implementation, written in C, and a pure Ruby implementation. Also includes a GTK+ GUI tool ... [More] for editing JSON. This library is part of Ruby 1.9's standard library. [Less]
Created about 1 year ago.