Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 1
Compare

Red5 is an Open Source Flash Server written in Java that supports: - Streaming Audio/Video (FLV and MP3) - Recording Client Streams (FLV only) - Shared Objects - Live Stream Publishing - Remoting

4.4
   
  0 reviews  |  54 users  |  590,608 lines of code  |  5 current contributors  |  Analyzed 5 months ago
 
 

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 http://www.json.org/java. Includes support for Groovy and JRuby as well.

4.71429
   
  0 reviews  |  16 users  |  34,204 lines of code  |  0 current contributors  |  Analyzed over 1 year ago
 
 

Clustered Remoting For Spring Framework(Cluster4Spring) is open source project that represents alternative implementation of Spring framework remoting subsystem and supports different schemes of remote communication between client and server (1-1, 1-many, dynamic services discovering). The major ... [More] features of Cluster4Spring library are: * Support of one-to-one scheme of remoting; * Support of one-to-many scheme of remoting, which assumes that one client selects remote service for invocation from one of predefined locations; * Support of one-to-many scheme of remoting with dynamic discovering of remote services; * Several built-in policies for selecting remote service for invocation are included (they are applied if service is available in several locations) [Less]

3.33333
   
  2 reviews  |  3 users  |  77,534 lines of code  |  0 current contributors  |  Analyzed 10 days ago
 
 

Spring Python is an offshoot of the Java-based SpringFramework and AcegiSecurityFramework, targeted for Python. Spring provides many useful features, and I wanted those same features available when working with Python. Several key features include: * Inversion of control * Aspect oriented ... [More] programming * DatabaseTemplate * Database transaction management * Distributed remoting * Security You can pick and choose which parts to use. Visit the web site for more details. The main library of Spring Python as well the sample applications are released under Apache License 2.0, making it a business friendly library. The SpringWiki sample application reuses a set of style sheets written for mediawiki that are GPL. [Less]

5.0
 
  0 reviews  |  2 users  |  20,771 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

SpringRemoting integration for SIMON (Simple Invocation of Methods Over Network) done by tuxedo

0
 
  0 reviews  |  1 user  |  2,567 lines of code  |  0 current contributors  |  Analyzed about 2 years ago
 
 

Empty J2EE application that provides a starting point for any developer to bootstrap from. Provides a basic enterprise java application including configuration. Includes Hibernate, Spring, Struts 2, Spring MVC, BlazeDS, Tiles2, and jQuery all pre-configured and ready to start developing. Can be ... [More] used as a starting point for learning or to start developing a large application easily. Excellent working examples of getting the following technologies up and running included: Spring/Hibernate Flex Remoting using Penne Framework Struts2/Tiles2 Struts2/Spring Integration Hibernate Criteria/Restrictions BlazeDS/Spring Integration jQuery/Struts2 [Less]

0
 
  0 reviews  |  1 user  |  5,798 lines of code  |  0 current contributors  |  Analyzed about 9 hours ago
 
 

Spring remoting transfer xfire,hessian,httpInvoker,Demo

0
 
  0 reviews  |  0 users  |  1,993 lines of code  |  0 current contributors  |  Analyzed about 8 hours ago
 
 

jsonrpc4j - JSON-RPC for JavaThis project aims to provide the facility to easily implement JSON-RPC for the java programming language. At the heart of jsonrpc4j is JsonEngine. JsonEngine is used to convert java objects to and from json objects (and other things related to JSON-RPC). JsonEngine is ... [More] an interface and therefore makes the underlying JSON implementation pluggable. Currently the only implementation available uses Jackson (JacksonJsonEngine). What's Missing?Here's a list of things that need to be implemented: GET support as per the spec (currently only POST is supported) Create portable javascript library MavenThis project is built with Maven. Be sure to check the pom.xml for the dependencies if you're not using maven. If you're already using spring you should have most (if not all) of the dependencies already - outside of maybe the Jackson library. The jsonrpc4j maven repository is located at http://jsonrpc4j.googlecode.com/svn/maven/repo/. Add the following to your pom.xml if you're using maven: In : jsonrpc4j-webdav-maven-repo jsonrpc4j maven repository http://jsonrpc4j.googlecode.com/svn/maven/repo/ default In : com.googlecode jsonrpc4j 0.1-SNAPSHOT JSON-RPC specificationThere doesn't seem to be an official source for the JSON-RPC specification. With that said, the guys over at json-rpc google group seem to be fairly active so the specification that they've outlined is what was used. Spring Frameworkjsonrpc4j provides a RemoteExporter to expose java services as JSON-RPC over HTTP without requiring any additional work on the part of the programmer. The following example explains how to use the JsonServiceExporter within the Spring Framework. Create your service interface: package com.mycompany; public interface UserService { User createUser(String userName, String firstName, String password); User createUser(String userName, String password); User findUserByUserName(String userName); int getUserCount(); }Implement it: package com.mycompany; public class UserServiceImpl implements UserService { public User createUser(String userName, String firstName, String password) { User user = new User(); user.setUserName(userName); user.setFirstName(firstName); user.setPassword(password); database.saveUser(user) return user; } public User createUser(String userName, String password) { return this.createUser(userName, null, password); } public User findUserByUserName(String userName) { return database.findUserByUserName(userName); } public int getUserCount() { return database.getUserCount(); } }Configure your service in spring as you would any other RemoteExporter: Your service is now available at the URL /UserService.json. Type conversion of JSON->Java and Java->JSON will happen for you automatically. This service can be accessed by any JSON-RPC capable client, including the JsonProxyFactoryBean provided by this project: In the case that your JSON-RPC requies named based parameters rather than indexed parameters an annotation can be added to your service interface (this also works on the service implementation for the ServiceExporter): package com.mycompany; public interface UserService { User createUser(@JsonRpcParamName("theUserName") String userName, @JsonRpcParamName("thePassword") String password); } [Less]

0
 
  0 reviews  |  0 users  |  5,016 lines of code  |  1 current contributor  |  Analyzed 4 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.