Business Conversation Manager: Facilitating People Interactions in Outsourcing Service Engagements

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Business Conversation Manager: Facilitating People Interactions in Outsourcing Service Engagements
# 1  
Old 09-08-2010
Business Conversation Manager: Facilitating People Interactions in Outsourcing Service Engagements

HPL-2010-106 Business Conversation Manager: Facilitating People Interactions in Outsourcing Service Engagements - Motahari-Nezhad, Hamid R.; Graupner, Sven; Singhal, Sharad
Keyword(s): Ad-hoc Business Processes, Collaborations, Outsourcing Services
Abstract: People involved in outsourcing services work through collaboration, conversations and ad-hoc activities and often follow guidelines that are described in best practice frameworks. There are two main issues hindering the efficient support of best practice frameworks in outsourcing services: lack of v ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Red Hat

Start a service manager process automatically on startup

Hello, I am in the process of learning Linux OS. How do I run the below lines of code automatically as root on server startup. cd /opt/program_folder/ServiceManager/bin nohup ./servce_manager DEV & Currently, as soon as the server is up and running I log in as root (as this... (6 Replies)
Discussion started by: rparavastu
6 Replies

2. Infrastructure Monitoring

Questions about BSM (Business Service Management)

Hi all, management currently has the idea (maybe injected by some nifty salesman ;)), that BSM consists especially of data gathered from systems with heart-beat like messages. In other words, they think about to implement as many systems, that can provide not only status changes from ok to... (2 Replies)
Discussion started by: zaxxon
2 Replies

3. Shell Programming and Scripting

Utilities for handling interactions

Hello all, Greetings~~~ My little knowledge says tat there are tools / utilities available like expect and dialog for handling interactions within the linux CLI for scripting specially during automation of any tasks or building UI in the CLI. Is there any other tools / utilities that you... (0 Replies)
Discussion started by: lampscholar
0 Replies
Login or Register to Ask a Question
OpenECHO(3pm)						User Contributed Perl Documentation					     OpenECHO(3pm)

NAME
Business::OnlinePayment::OpenECHO - ECHO backend module for Business::OnlinePayment SYNOPSIS
use Business::OnlinePayment; #### # One step transaction, the simple case. #### my $tx = new Business::OnlinePayment("OpenECHO"); $tx->content( type => 'VISA', login => '1234684752', password => '43400210', action => 'Normal Authorization', description => 'Business::OnlinePayment test', amount => '49.95', invoice_number => '100100', customer_id => 'jsk', first_name => 'Tofu', last_name => 'Beast', address => '123 Anystreet', city => 'Anywhere', state => 'UT', zip => '84058', card_number => '4005550000000019', expiration => '08/06', cvv2 => '1234', #optional referer => 'http://valid.referer.url/', ); $tx->submit(); if($tx->is_success()) { print "Card processed successfully: ".$tx->authorization." "; } else { print "Card was rejected: ".$tx->error_message." "; } SUPPORTED TRANSACTION TYPES
CC, Visa, MasterCard, American Express, Discover Content required: type, login, password, action, amount, first_name, last_name, card_number, expiration. Check Content required: type, login, password, action, amount, first_name, last_name, account_number, routing_code, bank_name. (...more) PREREQUISITES
URI::Escape Tie::IxHash Net::SSLeay _or_ ( Crypt::SSLeay and LWP ) DESCRIPTION
For detailed information see Business::OnlinePayment. AUTHOR
Original Author Michael Lehmkuhl <michael@electricpulp.com> Special Thanks Jim Darden <jdarden@echo-inc.com> Dan Browning <db@kavod.com> Business::OnlinePayment Implementation Ivan Kohler <ivan-openecho@420.am> SEE ALSO
perl(1). Business::OnlinePayment. perl v5.8.8 2008-03-01 OpenECHO(3pm)