Granite Data Services 1.1.0 RC2 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Granite Data Services 1.1.0 RC2 (Default branch)
# 1  
Old 06-14-2008
Granite Data Services 1.1.0 RC2 (Default branch)

Granite Data Services (GDS) is an alternative to Adobe LiveCycle (Flex 2) Data Services for J2EE application servers. It is not, however, a drop-in replacement: you won't be able to simply deploy a Flex 2 Data Services application into a Granite Data Services server without modifications. The main goal of this project is to provide a framework for Flex 2/EJB3/Spring/Seam/Guice/Pojo application development with full AMF3/RemoteObject benefits. It has a Data Push feature implemented as AMF3 requests sent over HTTP (Comet). License: GNU Lesser General Public License (LGPL) Changes:
This release includes several improvements and bugfixes (gas3, hibernate support, gravity, and spring security), and one new feature (a servlet-based MXML/AS3 compiler).Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
YAZ_ES(3)								 1								 YAZ_ES(3)

yaz_es - Prepares for an Extended Service Request

SYNOPSIS
void yaz_es (resource $id, string $type, array $args) DESCRIPTION
This function prepares for an Extended Service Request. Extended Services is family of various Z39.50 facilities, such as Record Update, Item Order, Database administration etc. Note Many Z39.50 Servers do not support Extended Services. The yaz_es(3) creates an Extended Service Request packages and puts it into a queue of operations. Use yaz_wait(3) to send the request(s) to the server. After completion of yaz_wait(3) the result of the Extended Service operation should be expected with a call to yaz_es_result(3). PARAMETERS
o $id - The connection resource returned by yaz_connect(3). o $type - A string which represents the type of the Extended Service: itemorder (Item Order), create (Create Database), drop (Drop Data- base), commit (Commit Operation), update (Update Record), xmlupdate (XML Update). Each type is specified in the following section. o $args - An array with extended service options plus package specific options. The options are identical to those offered in the C API of ZOOM C. Refer to the ZOOM Extended Services. RETURN VALUES
No value is returned. EXAMPLES
Example #1 Record Update <?php $con = yaz_connect("myhost/database"); $args = array ( "record" => "<gils><title>some title</title></gils>", "syntax" => "xml", "action" => "specialUpdate" ); yaz_es($con, "update", $args); yaz_wait(); $result = yaz_es_result($id); ?> SEE ALSO
yaz_es_result(3). PHP Documentation Group YAZ_ES(3)