Sponsored Content
Full Discussion: Aix Certifications
Operating Systems AIX Aix Certifications Post 302134845 by varungupta on Tuesday 4th of September 2007 03:06:45 AM
Old 09-04-2007
How to approach to register myself for the certification in AIX ?
And what is the amount do they charge for the certification ??
Any Idea ??

Please let me know !!
Smilie
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

UNIX certifications

Are there any nationally recognized UNIX certifications, similar to A+., for basic unix and system admin skills? thanks (1 Reply)
Discussion started by: pacsman
1 Replies

2. What is on Your Mind?

Unix certifications

Hi all, I'm new to this forum also to unix, but eager to learn unix. Can any one gimme the certifications/exams available to validate our unix strengths. (7 Replies)
Discussion started by: sarang
7 Replies

3. UNIX for Dummies Questions & Answers

What Certifications to be done in UNIX

Hello I am a newbie i learnt Shell programming and Unix Internals.Well plz advice me what certifications i shud do as i have free time and want to utilize my time :) (1 Reply)
Discussion started by: strawberry
1 Replies

4. Shell Programming and Scripting

Certifications in Unix?

Guys, I just want information abt certifications available for unix. If they exist can anyone give some info them. Making clear I am pointing to developer level exams, not admin side. Thanks, Sharif.S (0 Replies)
Discussion started by: sharifhere
0 Replies

5. Shell Programming and Scripting

UNIX Certifications

Hi All, Can anybody let me know if there is any Unix certification course which will provide basically programming in Unix. (4 Replies)
Discussion started by: darshakraut
4 Replies

6. What is on Your Mind?

Certifications on Unix and Linux

hi there :) I will study the Linux LPI certification in a few months What do u think about it? Is this certification good enough to work with solaris too actually? I´m not sure because i think is more oriented to linux, and solaris as far as i know, is based on UNix. What else can i... (3 Replies)
Discussion started by: andriusman
3 Replies

7. HP-UX

HP-UX Certifications

Hi, I am planning to get certified on HP-UX. I googled about HPUX Certifications. I understand that I need to pass on exam HP0-A01 but I find many references to HP0-095. I bought this book: HP-UX: HP Certification Systems Administrator, Exam HP0-A01 - Training Guide and Administrator's... (16 Replies)
Discussion started by: psicopunk
16 Replies

8. What is on Your Mind?

Certifications in Linux

Hi , I am working in Perl/Shell Script for past 3 years.I am planning to learn and switch my Career as Linux Admin.So Please suggest some certifications to learn about it.Do we have separate sub categories/area of specifications in Linux Admin ? Like Virtualization ,Vmware,storage. ... (0 Replies)
Discussion started by: Ajaytts123
0 Replies

9. What is on Your Mind?

Are certifications worth it?

I have just been on RedHat SA 3 training course (4 days) and sat exams EX200 (RHCSA) and EX300 (RHCE) The daft thing was that politics meant I wasn't allowed to take courses SA 1 or 2. So I learnt about stuff I would never use (SELinux; iSCSI; NFS Kerberos encrypted with user specific access... (22 Replies)
Discussion started by: rbatte1
22 Replies
Vend::Payment::EFSNet(3pm)				User Contributed Perl Documentation				Vend::Payment::EFSNet(3pm)

NAME
Vend::Payment::EFSNet - Interchange EFSNet Support SYNOPSIS
&charge=efsnet or [charge mode=efsnet param1=value1 param2=value2] PREREQUISITES
Net::SSLeay or LWP::UserAgent and Crypt::SSLeay Only one of these need be present and working. DESCRIPTION
The Vend::Payment::EFSNet module implements the efsnet() routine for use with Interchange. It is compatible on a call level with the other Interchange payment modules. To enable this module, place this directive in "interchange.cfg": Require module Vend::Payment::EFSNet This must be in interchange.cfg or a file included from it. Make sure CreditCardAuto is off (default in Interchange demos). The mode can be named anything, but the "gateway" parameter must be set to "efsnet". To make it the default payment gateway for all credit card transactions in a specific catalog, you can set in "catalog.cfg": Variable MV_PAYMENT_MODE efsnet It uses several of the standard settings from Interchange payment. Any time we speak of a setting, it is obtained either first from the tag/call options, then from an Interchange order Route named for the mode, then finally a default global payment variable, For example, the "id" parameter would be specified by: [charge mode=efsnet id=YourEFSNetID] or Route efsnet id YourEFSNetID or Variable MV_PAYMENT_ID YourEFSNetID The active settings are: id Your EFSNet Store ID, which you can get from the Merchant Services panel after logging in with the username and password supplied to you by Concord when you signed up. http://www.concordefsnet.com/Developers/MerchantLogin.asp (Check the "Credentials" page after login) Global parameter is MV_PAYMENT_ID. secret Your EFSNet Store Key, which you can get from the Merchant Services panel. Global parameter is MV_PAYMENT_SECRET. transaction The type of transaction to be run. Valid values are: Interchange EFSNet ---------------- ----------------- auth CreditCardAuthorize return CreditCardRefund reverse CreditCardRefund sale CreditCardCharge settle CreditCardSettle void VoidTransaction remap This remaps the form variable names to the ones needed by EFSNet. See the "Payment Settings" heading in the Interchange documentation for use. Troubleshooting Try the instructions above, then switch to the test servers. A test order should complete with this test card number: 4111 1111 1111 1111 Enabling the test servers: MV_PAYMENT_HOST testefsnet.concordebiz.com If nothing works: o Make sure you "Require"d the module in interchange.cfg: Require module Vend::Payment::EFSNet o Make sure either Net::SSLeay or Crypt::SSLeay and LWP::UserAgent are installed and working. You can test to see whether your Perl thinks they are: perl -MNet::SSLeay -e 'print "It works "' or perl -MLWP::UserAgent -MCrypt::SSLeay -e 'print "It works "' If either one prints "It works." and returns to the prompt you should be OK (presuming they are in working order otherwise). o Check the error logs, both catalog and global. o Make sure you set your payment parameters properly. o Try an order, then put this code in a page: <XMP> [calc] my $string = $Tag->uneval( { ref => $Session->{payment_result} }); $string =~ s/{/{ /; $string =~ s/,/, /g; return $string; [/calc] </XMP> That should show what happened. o If all else fails, consultants are available to help with integration for a fee. See http://www.icdevgroup.org/ for mailing lists and other information. NOTES
CreditCardCredit transactions (where you apply a credit on a card without the transaction ID of a previous charge) are supported by this module, but disabled by default in new EFSNet accounts. If you need to use this function, call EFSNet. This module supports partial returns, but EFSNet needs to know what the original transaction amount was. You can provide this by passing the value in the original_amount parameter. CHANGES
Concord EFSNet requires all interface code to be certified by them. If you make a change to this module, please contact EFSNet for re- certification. More information at: http://www.concordefsnet.com/Developers/Documentation.asp BUGS
There is actually nothing *in* Vend::Payment::EFSNet. It changes packages to Vend::Payment and places things there. AUTHORS
Chris Wenham <cwenham@synesmedia.com>. Based on code by Mark Stosberg <mark@summersault.com> and Mike Heins <mike@perusion.com>. CREDITS
Jeff Nappi <brage@cyberhighway.net> Paul Delys <paul@gi.alaska.edu> webmaster@nameastar.net Ray Desjardins <ray@dfwmicrotech.com> Nelson H. Ferrari <nferrari@ccsc.com> perl v5.14.2 2011-03-09 Vend::Payment::EFSNet(3pm)
All times are GMT -4. The time now is 04:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy