WfXML XPDL Workflow for JBoss 2.1-1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News WfXML XPDL Workflow for JBoss 2.1-1 (Default branch)
# 1  
Old 01-14-2008
WfXML XPDL Workflow for JBoss 2.1-1 (Default branch)

WfMC XPDL Workflow for JBoss is a flexible and extensible WfMC XPDL and OMG Workflow Management Facility compliant Java Workflow Engine. Process definitions are based on WfMC-XPDL (XML Process Definition Language) without proprietary extensions. XPDL process definitions can easily be created using the open-source graphical XPDL editor Enhydra JaWE. For execution of server-side system activities, the WfMC Tool Agents API is supported. Many standard tool agents for common tasks are included.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Red Hat

How to get jboss pid?

I am writing SSH (actually Python via SSH) commandline to get jboss PID from a remote machine (Redhat), how can I do it? I usually have the patten like: run('some_linux_command') What should be 'some_linux_comand' be here? I also tried a shell script (I found in internet) local on... (3 Replies)
Discussion started by: pbsdis
3 Replies

2. Shell Programming and Scripting

How to trigger workflow manager through shell script?

I am new to siebel workflow manager. Can anyone help me regarding the shell script which will trigger siebel workflow manager. I want a sample shell script to trigger workflow manager. Thanks in advance. (2 Replies)
Discussion started by: siri_886
2 Replies

3. Shell Programming and Scripting

Display workflow engine which are not running

Hi , We have 6 informatica workflow engine running on our server , so if we do a ubnf0010% ps -ef |grep workflow |grep "TCPP01 TCPP01" atlmsts 12721 1 0 06:52:18 ? 14:58 workflow TCPP01 TCPP01 1 atlmsts 14415 1 0 06:52:44 ? 14:56 workflow TCPP01 TCPP01 2 ... (8 Replies)
Discussion started by: viv1
8 Replies

4. UNIX for Advanced & Expert Users

XML WorkFlow Loader - Plz help

hi i've got a problem in Uploading Business Event System XML Definitions to a Database using the command - oracle.apps.fnd.wf.WFXLoad -u <user> <password> <connect_string> <protocol> <lang> <source_file> . Running it in Unix env at command prompt it says - "NO object is loaded to the... (0 Replies)
Discussion started by: VanithaS
0 Replies
Login or Register to Ask a Question
TAP::Parser::Iterator::Process(3)			User Contributed Perl Documentation			 TAP::Parser::Iterator::Process(3)

NAME
TAP::Parser::Iterator::Process - Iterator for process-based TAP sources VERSION
Version 3.28 SYNOPSIS
use TAP::Parser::Iterator::Process; my %args = ( command => ['python', 'setup.py', 'test'], merge => 1, setup => sub { ... }, teardown => sub { ... }, ); my $it = TAP::Parser::Iterator::Process->new(\%args); my $line = $it->next; DESCRIPTION
This is a simple iterator wrapper for executing external processes, used by TAP::Parser. Unless you're writing a plugin or subclassing, you probably won't need to use this module directly. METHODS
Class Methods "new" Create an iterator. Expects one argument containing a hashref of the form: command => @command_to_execute merge => $attempt_merge_stderr_and_stdout? setup => $callback_to_setup_command teardown => $callback_to_teardown_command Tries to uses IPC::Open3 & IO::Select to communicate with the spawned process if they are available. Falls back onto "open()". Instance Methods "next" Iterate through the process output, of course. "next_raw" Iterate raw input without applying any fixes for quirky input syntax. "wait" Get the wait status for this iterator's process. "exit" Get the exit status for this iterator's process. "handle_unicode" Upgrade the input stream to handle UTF8. "get_select_handles" Return a list of filehandles that may be used upstream in a select() call to signal that this Iterator is ready. Iterators that are not handle based should return an empty list. ATTRIBUTION
Originally ripped off from Test::Harness. SEE ALSO
TAP::Object, TAP::Parser, TAP::Parser::Iterator, perl v5.16.3 2013-05-02 TAP::Parser::Iterator::Process(3)