Tuesday, September 14, 2010

Filerex Api Launched

We are happy to announce the release of Filerex Api.

Now you can easy search in our database and display the result in your website.

The API Service is implemented in PHP using SOAP functions and it is located at address http://api.filerex.com/engine

To see the structure returned by api function use the php function print_r.

Example:
ini_set('default_socket_timeout', 2);

$client = new SoapClient(null, array(
'location' =>"http://api.filerex.com/engine",
'uri' => "http://schemas.xmlsoap.org/wsdl/"));

$result=$client->commandSELECT("winrar");
print_r($result);
?>
You can see a full example at http://forum.filerex.com/general-discussion/filerex-api-launched/msg55/#msg55

You can use SMARTY to display the result.

No comments:

Post a Comment