Main > Free Download Search >

Free api standards software for linux

api standards

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3788
Amazon API Search 1.0.0

Amazon API Search 1.0.0


Amazon API Search is a script to search Amazon. more>>
Amazon API Search is the beginnings of a perl script to search Amazon.

It interfaces with Amazons API interface and performs whatever search the user desires, it then parses the data returned and inserts it in to an MySQL table.

Currently the script only deals with basic returned data, and does not have a user interface. In future releases I hope to correct this.

The script is certainly worth a look for anyone interested in using Amazons API interface.
<<less
Download (0.002MB)
Added: 2006-02-27 License: GPL (GNU General Public License) Price:
1341 downloads
Standard Portable Library 0.1.5

Standard Portable Library 0.1.5


Standard Portable Library is a pointer friendly C/C++ STL substitute. more>>
Standard Portable Library is a pointer friendly C/C++ STL substitute. The API is similar to Java or .NET and includes common data structures, networking, and database support.

<<less
Download (0.50MB)
Added: 2007-03-21 License: LGPL (GNU Lesser General Public License) Price:
948 downloads
C++ WSDL Parser 1.9.3

C++ WSDL Parser 1.9.3


C++ WSDL Parser is an efficient C++ Web services library. more>>
C++ WSDL Parser is an efficient C++ Web services library that includes a standards compliant WSDL parser API, a Schema parser and validator, an XML parser and serializer, and an API for dynamically inspecting and invoking WSDL Web services.
Enhancements:
- Many WSDLs can now be dynamically invoked.
- Added documentation (doxygen for the API).
- Better error reporting when types are found missing.
<<less
Download (0.56MB)
Added: 2005-10-06 License: LGPL (GNU Lesser General Public License) Price:
1483 downloads
Java 2 Standard Edition Runtime Environment 6u2

Java 2 Standard Edition Runtime Environment 6u2


Java 2 SE Runtime Environment 6 offers a feature complete version of Suns next major release of the Java SE platform. more>>
Java 2 Standard Edition Runtime Environment 6 (Mustang) offers a feature complete version of Suns next major release of the Java SE platform.
Sun has endeavored to foster the highest level of transparency and collaboration on the platform with the Java community through the Mustang Project, and expects to ship the final release of Java SE 6 the fall of 2006.
Main features:
New Security features and enhancements:
- Native platform GSS/Kerberos integration
- Java Authentication and Authorization Service (JAAS) login module that employs LDAP authentication
- New Smart Card I/O API
Integrated Web Services:
- New API for XML digital signature services for secure web services
- New Client and Core Java Architecture for XML-Web Services (JAX-WS) 2.0 APIs
- New support for Java Architecture for XML Binding (JAXB) 2.0
Enhanced Management & Serviceability:
- Improved JMX Monitoring API
- Runtime Support for dTrace (Solaris 10 and future Solaris OS releases only)
- New custom deployment facilities
Increased Developer Productivity:
- Improved memory usage analysis and leak detection
- Significant library improvements
- Improvements to the Java Platform Debug Architecture (JPDA) & JVM Tool Interface
Improved User Experience:
- Look and feel updates to better match underlying platforms
- Improved desktop performance and integration
- Enhanced internationalization support
<<less
Download (17.6MB)
Added: 2007-07-08 License: SUN Community Source License Price:
843 downloads
Monitoring API 2.0 Beta 1

Monitoring API 2.0 Beta 1


Monitoring API project is a multi-user programming interface. more>>
Monitoring API project is a multi-user programming interface designed to simplify the development of network monitoring software and allows users to express their monitoring needs in a device-independent way.
The main abstraction provided by MAPI is the network flow. Although flows have been used before in network monitoring systems, MAPI gives flows a first-class status. Applications that uses MAPI can specify what flows or flow statistics they are interested in by applying functions to flows.
A MAPI function can be a BPF filter, string search, packet counter or more advanced like a NetFlow generator. These function will automatically run in hardware if there is support for it on the hardware being used.
MAPI currently supports the following hardware:
- Normal NICs through libpcap
- DAG cards without co-processor
- SCAMPI adapter
Enhancements:
- This release includes support for distributed monitoring, several new MAPI functions, demo applications, and a lot of bugfixes.
<<less
Download (1.2MB)
Added: 2006-09-21 License: GPL (GNU General Public License) Price:
1133 downloads
eBay::API 0.22

eBay::API 0.22


eBay::API is a Perl SDK for eBay Web services Interface. more>>
eBay::API is a Perl SDK for eBay Web services Interface.

SYNOPSIS

# 1. GeteBayOfficialTime use eBay::API::XML::Call::GeteBayOfficialTime;
my $pCall = eBay::API::XML::Call::GeteBayOfficialTime->new();
$pCall->execute();
my $sOfficialTime = $pCall->getEBayOfficialTime();
# 2. GetUser use eBay::API::XML::Call::GetUser; use eBay::API::XML::DataType::Enum::DetailLevelCodeType;
my $pCall = eBay::API::XML::Call::GetUser->new();
$pCall->setDetailLevel( [eBay::API::XML::DataType::Enum::DetailLevelCodeType::ReturnAll] );
$pCall->setUserID(userId);
$pCall->execute();

my $pUser = $pCall->getUser();
my $sStatusCode = $pUser->getStatus();
my $sSiteCode = $pUser->getSite();
# 3. VerifyAddItem use eBay::API::XML::Call::VerifyAddItem; use eBay::API::XML::DataType::ItemType; use eBay::API::XML::DataType::CategoryType; use eBay::API::XML::DataType::Enum::CountryCodeType; use eBay::API::XML::DataType::Enum::CurrencyCodeType; use eBay::API::XML::DataType::Enum::ListingTypeCodeType; use eBay::API::XML::DataType::Enum::BuyerPaymentMethodCodeType;
my $pItem = eBay::API::XML::DataType::ItemType->new();
$pItem->setCountry(eBay::API::XML::DataType::Enum::CountryCodeType::US);
$pItem->setCurrency(eBay::API::XML::DataType::Enum::CurrencyCodeType::USD);
$pItem->setDescription(item description.);
$pItem->setListingDuration(eBay::API::XML::DataType::Enum::ListingTypeCodeType::Days_1);
$pItem->setLocation(San Jose, CA);
$pItem->setPaymentMethods(eBay::API::XML::DataType::Enum::BuyerPaymentMethodCodeType::PaymentSeeDescription);
$pItem->setQuantity(1);
$pItem->getStartPrice()->setValue(1.0);
$pItem->setTitle(item title);

my $pCat = eBay::API::XML::DataType::CategoryType->new();
$pCat->setCategoryID(357);
$pItem->setPrimaryCategory($pCat);

my $pCall = eBay::API::XML::Call::VerifyAddItem->new();

$pCall->setItem($pItem);
$pCall->execute();

$sItemId = $pCall->getItemID()->getValue();

<<less
Download (0.097MB)
Added: 2007-05-25 License: Perl Artistic License Price:
883 downloads
PDL::API 2.4.3

PDL::API 2.4.3


PDL::API is a Perl module for making piddles from Perl and C/XS code. more>>
PDL::API is a Perl module for making piddles from Perl and C/XS code.

A simple cookbook how to create piddles manually. It covers both the Perl and the C/XS level. Additionally, it describes the PDL core routines that can be accessed from other modules. These routines basically define the PDL API. If you need to access piddles from C/XS you probably need to know about these functions.

SYNOPSIS

use PDL;
sub mkmypiddle {
...
}

<<less
Download (2.1MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
Asterisk Soap API 0.0.1 Alpha

Asterisk Soap API 0.0.1 Alpha


Asterisk Soap API is an extensible SOAP (Web services) API with the goal to create and support all Asterisk configuration featur more>>
Asterisk-Soap is an extensible SOAP (Web services) API with the goal to create and support all Asterisk configuration features.

Asterisk Soap APIs mainly feature is to provide a framework between asterisk core api and multi-platform frontends.
<<less
Download (MB)
Added: 2007-07-05 License: GPL (GNU General Public License) Price:
847 downloads
libstldb4 0.4.6

libstldb4 0.4.6


libstldb4 is a C++ wrapper for the sleepycat db4 database. more>>
libstldb4 library is a C++ wrapper for sleepycat db4 database.
It uses the STL in the API where sensible, allows standard IOStreams for data access where sensible, e.g. getting the value of a key should be able to use an istream interface to allow simple partial value retreival, and moves the transaction parameter to be the last optional parameter or provides two versions of the same method for trans/nontrans.
The API has been modified to use more standard types. Operator overloading is used to allow quick and dirty coding (mydb[ "key" ] = "value";) to set and cerr.
Enhancements:
- A memory allocation bug in find_partial() was fixed.
<<less
Download (2.7MB)
Added: 2007-02-12 License: GPL (GNU General Public License) Price:
985 downloads
FEAR::API 0.489

FEAR::API 0.489


FEAR::API is a tool that helps reduce the time you spend creating site scraping scripts. more>>
FEAR::API is a tool that helps reduce the time you spend creating site scraping scripts and helps you do it in a much more elegant way.
FEAR::API combines many strong and powerful features from various CPAN modules, such as LWP::UserAgent, Template::Extract, WWW::Mechanize, Encode, HTML::Parser, etc.
Enhancements:
- This release adds allow_domains() and deny_domains().
<<less
Download (0.068MB)
Added: 2006-06-27 License: Perl Artistic License Price:
1222 downloads
Gtk2::api 1.145

Gtk2::api 1.145


Gtk2::api is a mapping the Gtk+ C API to perl. more>>
Gtk2::api is a mapping the Gtk+ C API to perl.

ABSTRACT
The Gtk2 module attempts to stick as close as is reasonable to the C API, to minimize the need to maintain documentation which is nearly a copy of the C API reference documentation. However, the world is not perfect, and the mappings between C and perl are not as clean and predictable as you might wish. Thus, this page described the basics of how to map the C API to the perl API, and lists various points in the API which follow neither the C API documentation nor the mapping principles.

The canonical documentation is the C API reference at http://developer.gnome.org/doc/API/gtk/ and http://developer.gnome.org/doc/API/gdk/
There are two main sections: BINDING BASICS describes the principles on which the bindings work; understanding these can lead you to guess the proper syntax to use for any given function described in the C API reference.

The second section lists various specific points of difference which dont necessarily correspond with what you expect; this section is in three main parts: missing methods, renamed methods, and different call signatures.

<<less
Download (0.64MB)
Added: 2007-07-16 License: Perl Artistic License Price:
832 downloads
KInterbasDB 3.2

KInterbasDB 3.2


KInterbasDB is a Python extension package that implements Python Database API 2.0-compliant support. more>>
KInterbasDB project is a Python extension package that implements Python Database API 2.0-compliant support for the open source relational database Firebird and some versions of its proprietary cousin Borland Interbase.
In addition to the minimal feature set of the standard Python DB API, KInterbasDB also exposes nearly the entire native client API of the database engine.
Enhancements:
- At concurrency_level 1, it was possible for a deadlock to occur if KInterbasDB simultaneously raised an exception in one thread while executing a SQL statement in another. This problem did not affect concurrency_level 2. Thanks for Atsuo Ishimoto for reporting this bug.
- The official implementation of the automagic TEXT_UNICODE type translator (in the kinterbasdb.typeconv_text_unicode module) was missing support for the new character sets introduced in Firebird 2.0 (namely, the corrected version of UTF8, plus KOI8-R, KOI8-U, and WIN1258). Thanks to Oleg Deribas for bringing this to my attention.
<<less
Download (0.31MB)
Added: 2006-08-11 License: BSD License Price:
1170 downloads
Inline-API 0.44

Inline-API 0.44


Inline-API is a Perl module that teach you how to bind a programming language to Perl using Inline.pm. more>>
Inline-API is a Perl module that teach you how to bind a programming language to Perl using Inline.pm.

SYNOPSIS

#!/usr/bin/perl

use Inline Foo;
say_it(foo); # Use Foo to print "Hello, Foo"

__Foo__
foo-sub say_it {
foo-my $foo = foo-shift;
foo-print "Hello, $foon";
}

So you think Inline C is pretty cool, but what you really need is for Perl to work with the brand new programming language "Foo". Well youre in luck. Inline.pm has support for adding your own Inline Language Support Module (ILSM), like Inline::Foo.

Inline has always been intended to work with lots of different programming languages. Many of the details can be shared between implementations, so that Inline::Java has a similar interface to Inline::ASM. All of the common code is in Inline.pm.

Language specific modules like Inline::Python are subclasses of Inline.pm. They can inherit as much of the common behaviour as they want, and provide specific behaviour of their own. This usually comes in the form of Configuration Options and language specific compilation.

The Inline C support is probably the best boilerplate to copy from. Since version 0.30 all C support was isolated into the module Inline::C and the parsing grammar is further broken out into Inline::C::grammar. All of these components come with the Inline distribution.

This POD gives you all the details you need for implementing an ILSM. For further assistance, contact inline@perl.org See "SEE ALSO" below.
Well examine the joke language Inline::Foo which is distributed with Inline. It actually is a full functioning ILSM. I use it in Inlines test harness to test base Inline functionality. It is very short, and can help you get your head wrapped around the Inline API.

<<less
Download (0.089MB)
Added: 2007-06-16 License: Perl Artistic License Price:
521 downloads
libsrvtab 0.0.4

libsrvtab 0.0.4


libsrvtab provides a simple API to Kerberos v4 srvtab handling. more>>
libsrvtab is a library that provides a simple API to Kerberos v4 srvtab handling, and offers reliable handling of the srvtab file to insure against corruption.

To compile: smake -gnu wash mk install
<<less
Download (0.016MB)
Added: 2006-11-24 License: GPL (GNU General Public License) Price:
1064 downloads
WWW::Facebook::API::REST::Client::Errors 0.0.3

WWW::Facebook::API::REST::Client::Errors 0.0.3


WWW::Facebook::API::REST::Client::Errors is a Perl module with errors class for Client. more>>
WWW::Facebook::API::REST::Client::Errors is a Perl module with errors class for Client.

SYNOPSIS

use WWW::Facebook::API::REST::Client::Errors;

Error methods and data used by WWW::Facebook::API::REST::Client::Base

SUBROUTINES/METHODS

debug

A boolean set to either true or false, determining if debugging messages should be carped to STDERR for REST calls.

throw_errors

A boolean set to either true of false, signifying whether or not log_error should carp when an error is returned from the REST server.

last_call_success

A boolean. True if the last call was a success, false otherwise.

last_error

A string holding the error message of the last failed call to the REST server.

log_debug

Logs debugging message by carping parameters and xml returned by REST server. Only called if debug is true.

log_error

Logs an error, and if throw_errors is true, carps with the error code and message.

meta

From Moose

<<less
Download (0.010MB)
Added: 2007-01-25 License: Perl Artistic License Price:
1002 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5