Projects tagged ‘ajax’, ‘http’, and ‘xml’


Jump to tag:

Projects tagged ‘ajax’, ‘http’, and ‘xml’

Filtered by Project Tags ajax http xml

Refine results Project Tags javascript (9) php (5) web (5) programming (4) mysql (4) framework (4) json (3) html (3) database (3) xmlhttprequest (3) oop (3) library (3)

[10 total ]

2 Users

Open Source Framework for PHP5, find simplicity, multiple-choices and fast development cycle. * Framework Component-based * Small Footprint * Pluggable system * for PHP 5.2.3+ ... [More] * Fast and easy to install and use. * Multiple OO Models: o internal (tdbo) o doctrine | propel * Multiple Templating and View System: o HTML::Template o Zope-Tal o PHP Embeded o Savant o CREOLE Wiki Syntax parser o SVG output o DocBook? output o RSS and Atom ready * Multiple Controllers: o Cli (Console) Controllers o SOA-WOA Controllers (RPC) o REST Controllers o XUL Interfaces o XHTML | HTML5 [Less]
Created 5 months ago.

1 Users

The REST plugin enables the usage of HTTPBuilder on a Grails application.
Created 5 months ago.

1 Users
 

Un framework en PHP escrito en español. --- A PHP framework in spanish.
Created about 1 year ago.

1 Users

Simple to use library that handles a lot of things for you.
Created over 3 years ago.

0 Users
 

Zoop is a recursive acronym which stands for Zoop Object Oriented PHP Framework. Far from being Yet Another PHP Framework or Rails clone, Zoop has been in development since 2001 and in use for the ... [More] last 6 years in a number of different production environments. While it predates the recent proliferation of PHP frameworks, it's based on solid MVC principles, including separation of display, logic, and data layers. It's designed to be efficient, modular, and extensible, striking a balance between lightweight and fully-featured. With Zoop an inexperienced coder can make secure web applications quickly. More experienced coders will appreciate the design and flexibility. Both will benefit from the shortcuts it provides to handle common and mundane tasks. [Less]
Created about 1 year ago.

0 Users

JaxLook is an AJAX-based dictionary. Its backend is powered by PHP. JaxLook is still in an early-beta stage. Read NightlySnapshots for more information on obtaining the latest snapshot of JaxLook.
Created about 1 year ago.

0 Users

Javascript Ajax and XML codes for light-weight projects Feature: Cross browser HEAD, GET, POST, PUT, DELETE, OPTIONS Synchronous, Asynchronous User-callback functions Request header customization ... [More] Additional xml parse, xpath functionalities Working Example [Less]
Created about 1 year ago.

0 Users

XML HTTP Request WrapperSimple Javascript Wrapper for the XMLHttpRequest Object. Supports IE5.5+, Firefox 1.0+, Opera, Safari. For IE6- it will use the IE's XMLHttpRequest ActiveX Object and cache ... [More] the version for faster Instantiation (though it doesn't really matter compared to HTTP latency). The HTTP Requests use HTTP/1.1 where available which will persist the TCP connection and reduce the overhead of constructing and destructing the TCP connection for each HTTP Request. By default the requests url encoded GET and POST requests. (ie: it automatically urlencodes the POST data). The Content-Type needs to be overridden if you need to send RAW HTTP POST requests such as XML or Binary Data etc. ExamplesIn these examples, the URL is set to http://example.com. This URL would have to be changed to your domain. You can also use relative URLs. Full Examples can be found in SVN. Send a HTTP Get Request and show the HTTP Response Textnew fiji.xhr('get', 'http://example.com/?param=value', function() { if (this.readyState == 4 && this.status == 200) { alert(this.responseText); } }).send();The callback function is scoped to the XMLHttpRequest Instance so you can use this in the callback function to reference the XHR instance. Send a HTTP POST Request with some URL encoded Datanew fiji.xhr('post', 'http://example.com/', function() { if (this.readyState == 4 && this.status == 200) { alert(this.responseText); } }).send({'param': 'value'});HTTP Polling// fiji.xhr instance var XHR = new fiji.xhr(); // callback function callback = function() { if (this.readyState == 4) { if (this.status == 200) { // poll server every 1/2 seconds setTimeout(function() { XHR.req('post', 'echo.php', callback); XHR.send({'param': 'value'}); }, 500); } else { alert('HTTP Error: '+this.status); } } }; // set the request parameters XHR.req('post', 'http://example.com/', callback); // send initial request XHR.send({'param': 'value'});Send a Different Content-Type// fiji.xhr instance var XHR = new fiji.xhr(); // set the request XHR.req('post', 'http://example.com/', function() { if (this.readyState == 4 && this.status == 200) { alert(this.responseText); } }); // override the request content-type header with an XML content-type XHR.xhr.setRequestHeader("Content-Type", "text/xml"); // send HTTP POST Request with XML body XHR.send('');DownloadsCheckout the latest version from SVN. [Less]
Created about 1 year ago.

0 Users

Clouded Sunday is a bundle of restful web services written in java, available for everyone to download and deploy on their own web server. The most important feature of the software is a web service ... [More] that enables users to manage net-centric databases (such as MySQL, MS SQL, Oracle, etc.) using simple HTTP methods. [Less]
Created about 1 year ago.

0 Users

The idea behind Ajax Class is to allow creation of cross-browser request objects in order to make Asynchronous/Synchronous HTTP request calls. Basically, it should provide Clean-Easy-Fast OOP way to ... [More] make HTTP request calls. Without wasting developer time in handling of trivial errors while doing the process at the same time giving full control over the process making every bit of it customizable. If you have changes you want to the Ajax Class, send an email to the project owner/s and I/We will add you to the project. [Less]
Created about 1 year ago.