Tags : Browse Projects

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

  • http (1159)

    goshare~

    Compare

      Analyzed 12 months ago

    Go Share your TimeSeries/NameSpace/KeyVal DataStore (using leveldb) over HTTP &/or ZeroMQ

    1.85K lines of code

    0 current contributors

    about 9 years since last commit

    0 users on Open Hub

    Activity Not Available
    0.0
     
    I Use This

    harviewer

    Compare

      Analyzed 12 months ago

    HAR Viewer is a web application that allows to visualize HTTP tracing logs based on HTTP Archive format (HAR). This log can be created by HTTP sniffer tools such as Firebug. For more information about the HAR format visit: ... [More] http://groups.google.com/group/firebug-working-group/web/http-tracing---export-format To see HAR Viewer online visit: http://www.janodvarko.cz/har/viewer/ [Less]

    25.9K lines of code

    3 current contributors

    about 6 years since last commit

    0 users on Open Hub

    Activity Not Available
    0.0
     
    I Use This

    whatmob

    Compare

      Analyzed 12 months ago

    Very fast HTTP-daemon(about 2000 req/sec) for lookup phone model, brand and other device properties by user agent. All source in git repo: http://git.shadanakar.org/?p=dad.git;a=tree Server has RC status.

    1.05K lines of code

    0 current contributors

    over 15 years since last commit

    0 users on Open Hub

    Activity Not Available
    5.0
     
    I Use This

    IOWA

    Compare

      No analysis available

    IOWA is a component/object based web application framework that has been in continuous production use for over 4.5 years, now. Fast, Flexible, Not Greedy with Resources. Supports Mongrel and EventMachine deployment.

    0 lines of code

    0 current contributors

    0 since last commit

    0 users on Open Hub

    Activity Not Available
    0.0
     
    I Use This
    Mostly written in language not available
    Licenses: Ruby_License

    alterator-apache2

    Compare

      Analyzed 12 months ago

    alterator module for apache2

    0 lines of code

    0 current contributors

    almost 17 years since last commit

    0 users on Open Hub

    Activity Not Available
    0.0
     
    I Use This
    Mostly written in language not available
    Licenses: gpl

    misultin

    Compare

      Analyzed 12 months ago

    Misultin (pronounced mee-sul-teen) is an Erlang library for building fast lightweight HTTP servers, which also supports websockets. Check out the Misultin Wiki to get started. You may also find misultin on github here. >-|-|-(°>

    7.37K lines of code

    0 current contributors

    almost 13 years since last commit

    0 users on Open Hub

    Activity Not Available
    0.0
     
    I Use This

    AntEater

    Compare

      Analyzed 12 months ago

    Anteater is an Ant-based functional testing framework for Web applications and Web services.

    4.96K lines of code

    0 current contributors

    about 21 years since last commit

    0 users on Open Hub

    Activity Not Available
    0.0
     
    I Use This

    jsonrpc4j

    Compare

      Analyzed 12 months 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]

    7.88K lines of code

    2 current contributors

    over 1 year since last commit

    0 users on Open Hub

    Activity Not Available
    0.0
     
    I Use This

    redbot

    Compare

      No analysis available

    RED checks HTTP resources to see how they use HTTP, makes suggestions, and finds common protocol mistakes. See redbot.org for a public instance, the redbot-users mailing list for discussion, and RED's tweets for news and updates.

    0 lines of code

    2 current contributors

    0 since last commit

    0 users on Open Hub

    Activity Not Available
    0.0
     
    I Use This
    Mostly written in language not available
    Licenses: mit

    heroshi

    Compare

      Analyzed 12 months ago

    Scalable web crawler in Python

    1.74K lines of code

    1 current contributors

    over 5 years since last commit

    0 users on Open Hub

    Activity Not Available
    0.0
     
    I Use This