Author Archives: Mark Nelson

About Mark Nelson

Mark Nelson is a Developer Evangelist at Oracle, focusing on microservices and AI. Mark has served as a Section Leader in Stanford's Code in Place program that has introduced tens of thousands of people to the joy of programming, he is a published author, a reviewer and contributor, a content creator and a lifelong learner. He enjoys traveling, meeting people and learning about foods and cultures of the world. Mark has worked at Oracle since 2006 and before that at IBM since 1994.

Running the worklist!

This post is part of series on building a custom worklist for BPM/SOA 11g. First of all, congratulations on making it all the way through the walkthrough!  Whether you built the code yourself or downloaded it from Subversion, by now … Continue reading

Posted in Uncategorized | Tagged , , , | 1 Comment

Implementing Task Initiation

This post is part of a series on building a custom worklist for BPM/SOA 11g. In the post we will implement two Controllers and a View that will allow the use to view a list of tasks that they are … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

Implementing Process Task

This post is part of a series on building a custom worklist for BPM/SOA 11g. In this post we will implement a Controller to take an action on a task, or to ‘process’ the task.  Like the Add Comment Controller … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

Implementing Add Comments

This post is part of a series on building a custom worklist for BPM/SOA 11g. We just have a Controller to add comments to a task, no View.  After adding comments to a task, we will return the user to … Continue reading

Posted in Uncategorized | Tagged , , , | 1 Comment

Implementing Task Details

This post is part of a series on building a custom worklist for BPM/SOA 11g. Most of our controllers are fairly similar and not too complicated, so let’s jump right in and take a look at the com.oracle.ateam.TaskDetailController.  Here is … Continue reading

Posted in Uncategorized | Leave a comment

Implementing the Task List

This post is part of a series on building a custom worklist for BPM/SOA 11g. In the previous posts, we built the model and skeleton pages.  Now we will implement the Controller and View for the Task List. Let’s take … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

Setting up security for the worklist

This post is part of a series on building a custom worklist for BPM/SOA 11g. In the previous posts we have created our model and skeleton view.  Now, we want to set up security.  One of our goals was to … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

Building the skeleton worklist

This post is part of a series on building a custom worklist for BPM/SOA 11g. In this post, we will establish the skeleton of the web application by creating the various pages and some JSP fragments to handle the page … Continue reading

Posted in Uncategorized | Tagged , , , | Leave a comment

Creating the domain layer for the worklist

This post is part of a series on building a custom worklist for BPM/SOA 11g. Introduction In the earlier posts in this series we have set up our development environment and created a skeleton project.  Now we are ready to … Continue reading

Posted in Uncategorized | Tagged , , , , | 5 Comments

Creating the worklist project

This post is part of a series on building a custom worklist for BPM/SOA 11g. We are using Maven as our project and build management software.  We used Maven 2 on Mac OS X.  Let’s set up our skeleton project … Continue reading

Posted in Uncategorized | Tagged , , , , | 1 Comment