perl api


 
Thread Tools Search this Thread
Top Forums Programming perl api
# 1  
Old 02-08-2012
perl api

Does anyone have any example of how to use the perl api within Build Forge
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Web Development

Face-api.js — JavaScript API for Face Recognition in the Browser with tensorflow.js

Ref: https://itnext.io/face-api-js-javascript-api-for-face-recognition-in-the-browser-with-tensorflow-js-bcc2a6c4cf07 (0 Replies)
Discussion started by: Neo
0 Replies

2. Shell Programming and Scripting

perl: CURL REST API Query

I have not used cUrl before, but I have noticed that in my Perl script I give a query and it takes the format: URL?query={field;field} But, when I try this with cUrl, it will not query at all: curl: (3) nested braces not supported at pos 88 I have tried moving the braces etc etc, it... (1 Reply)
Discussion started by: 3246251196
1 Replies

3. Shell Programming and Scripting

Need to run an API from a script and extract fields from output of API

Hi, I need to call an API (GetUsageDetails)from inside a shell script which takes an input argument acct_nbr. The output of API will be like : <usageAccum accumId="450" accumCaptn="PM_125" inclUnits="1410.00" inclUnitsUsed="744.00" shared="true" pooled="false" prorated="false"... (1 Reply)
Discussion started by: rkrish
1 Replies

4. Programming

Help With API or Code

Hi: Well, i need to do a program for control the labs time of the students in my university. This program that I have to do it got to be on C++ or C, and have to do a several things like, check all the process that the user execute when he star his session on KDE or console, sometime close an no... (0 Replies)
Discussion started by: leonel06033
0 Replies

5. Linux

New collectl API

If anyone is interested I just released a new version that contains an API for collecting any kind of data you want and to include it in the user interface, data files and even be able to send it via sockets to other tools. Of course you need to be a perl programmer to use it... A second... (0 Replies)
Discussion started by: MarkSeger
0 Replies

6. Programming

LDAP - is there an API

Hi, I've just been experimenting with AIX's ldapsearch utility - I've been successfully using it to retrieve information from an Active Directory, however, I need to make similar calls from a C program. Is there a suitable LDAP API on AIX which will give me similar capabilties to the... (3 Replies)
Discussion started by: phykell
3 Replies

7. UNIX for Dummies Questions & Answers

tyoes of API

What is Low-Level API and High-Level API? (1 Reply)
Discussion started by: sumsin
1 Replies

8. AIX

API question

Machine and OS : IBM 7044-170 AIX 4.3.3 Hi, everyone I have a question , pls help me to resolve. In IBM AIX , how to obtain the CPU Load and other infomations by System API Fuction. Wait for your reply ......., Thanks. (0 Replies)
Discussion started by: q30
0 Replies
Login or Register to Ask a Question
libapache2-mod-perl2-2.0.7::docs::api::Apache2::ConnectiUseriContributed Perl Dlibapache2-mod-perl2-2.0.7::docs::api::Apache2::ConnectionUtil(3pm)

NAME
Apache2::ConnectionUtil - Perl API for Apache connection utils Synopsis use Apache2::Connection (); use Apache2::ConnectionUtil (); use Apache2::RequestRec (); # grab the connection object; my $c = $r->connection; # share perl objects like $r->pnotes $old_val = $c->pnotes($key => $value); Description "Apache2::ConnectionUtil" provides the Apache connection record object utilities API. API
"Apache2::ConnectionUtil" provides the following functions and/or methods: "pnotes" Share Perl variables between requests over the lifetime of the connection. $old_val = $c->pnotes($key => $val); $val = $c->pnotes($key); $hash_ref = $c->pnotes(); obj: $c ( "Apache2::Connection object" ) opt arg1: $key ( string ) A key value opt arg2: $val ( SCALAR ) Any scalar value (e.g. a reference to an array) ret: (3 different possible values) if both, $key and $val are passed the previous value for $key is returned if such existed, otherwise undef is returned. if only $key is passed, the current value for the given key is returned. if no arguments are passed, a hash reference is returned, which can then be directly accessed without going through the "pnotes()" interface. since: 2.0.3 See ("Apache2::RequestUtil::pnotes") for the details of the "pnotes" method usage. The usage is identical except for a few differences. First is the use of $c instead of $r as the invocant. The second is that the the data persists for the lifetime of the connection instead of the lifetime of the request. If the connection is lost, so is the data stored in "pnotes". See Also Apache2::Connection. Apache2::RequestUtil::pnotes. mod_perl 2.0 documentation. Copyright mod_perl 2.0 and its core modules are copyrighted under The Apache Software License, Version 2.0. Authors The mod_perl development team and numerous contributors. perl v5.14.2 2011-02-08 libapache2-mod-perl2-2.0.7::docs::api::Apache2::ConnectionUtil(3pm)