XML Import tool from ARIS to IBM WebSphere Business Modeler


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News XML Import tool from ARIS to IBM WebSphere Business Modeler
# 1  
Old 02-21-2008
XML Import tool from ARIS to IBM WebSphere Business Modeler

An Eclipse plug-in for WebSphere Business Modeler that imports business process models created using ARIS. (NEW: 02/21/2008 in eclipse)

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need help updating my AIX shell script that uses IBM tape tool.

I have a shell script that interfaces with our tape library using IBM's Tape Diagnostic tool called "itdt". The script does some basic stuff, it queries the tape library, loads tape to/from drive; it knows which inventory slot to pick the tape from based on SLOT=$(($BASESLOT + $TODAY)). The... (10 Replies)
Discussion started by: c3rb3rus
10 Replies

2. AIX

IBM business partner login

I'm looking to download some docs and test software from IBM web site. My login stated I'm not a IBM Business partner. Does anyone know of a guest or temp login I could use to access this site information? (1 Reply)
Discussion started by: soupbone38
1 Replies

3. SCO

XML Import & HTTP Post

this may be very basic to some but all new to me I have an application running on SCO Unix server which issues an HTTP Post request to a server with the results being returned in I.E browser window in XML format I need to import these results into my customers application and dont know how to... (1 Reply)
Discussion started by: ccarcher
1 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)