BEA Logo BEA WLI Release 2.1

  BEA Home  |  Events  |  Solutions  |  Partners  |  Products  |  Services  |  Download  |  Developer Center  |  WebSUPPORT

 

   WLI Doc Home   |   Application Integration Topics   |   Using Application Integration   |   Previous Topic   |   Next Topic   |   Contents   |   Index   |   View as PDF

Using Application Views by Writing Custom Code

 

If you are a developer, you may want to modify an application view by writing custom code. You can use most application view features by using its Web-based GUI, but there are some application view features you can use only by custom coding.

This section contains information on the following subjects:

 


Scenario 1: Connecting Using Specific Credentials

If necessary, you can invoke methods on an application view that let you set the security level before invoking services on the application view.

Use the new ApplicationView methods setConnectionSpec() and getConnectionSpec() to set the credentials for an EIS. Both methods use a ConnectionSpec object. To instantiate a ConnectionSpec object, you can use the ConnectionRequestInfoMap class provided by the BEA WebLogic Integration Adapter Development Kit (ADK), or you can implement your own class. If you implement your own class, you must include the interfaces ConnectionSpec, ConnectionRequestInfo, Map, and Serializable.

Implementing ConnectionSpec

Before you can use setConnectionSpec() or getConnectionSpec(), you must instantiate a ConnectionSpec object. Use the ConnectionRequestInfoMap class provided by the ADK, or derive your own class.

To implement ConnectionSpec:

  1. Decide whether to use the ConnectionRequestInfoMap class, provided by the ADK, or implement your own class.

  2. If you are implementing your own ConnectionSpec class, include the following interfaces in it:

Calling setConnectionSpec() and getConnectionSpec()

After you implement the ConnectionSpec class and instantiate a ConnectionSpec object, you can use it in conjunction with the following two new ApplicationView methods:

Using the ConnectionSpec

To set the ConnectionSpec, pass it a properly initialized ConnectionSpec object. To clear the ConnectionSpec, pass it a ConnectionSpec object with a null value.

Listing 4-3 shows a specific example for using ConnectionSpec.

Listing 4-3 An Example That Uses ConnectionSpec

Properties props = new Properties();
ApplicationView applicationView = new ApplicationView(getInitialContext(props),"appViewTestSend");

ConnectionRequestInfoMap map = new ConnectionRequestInfoMap();
// map properties here
map.put("PropertyOne","valueOne");
map.put("PropertyTwo","valueTwo");
.
.
.
//set new connection spec
applicationView.setConnectionSpec(map);

IDocumentDefinition requestDocumentDef = applicationView.getRequestDocumentDefinition("serviceName");

SOMSchema requestSchema = requestDocumentDef.getDocumentSchema();

DefaultDocumentOptions options = new DefaultDocumentOptions();
options.setForceMinOccurs(1);
options.setRootName("ROOTNAME");
options.setTargetDocument(DocumentFactory.createDocument());
IDocument requestDocument = requestSchema.createDefaultDocument(options);

requestDocument.setStringInFirst("//ROOT/ElementOne","value");
requestDocument.setStringInFirst("//ROOT/ElementTwo","value");
.
.
.
// the service invocation will use the connection spec set to connect to the EIS
IDocument result = applicationView.invokeService("serviceName", requestDocument);
System.out.println(result.toXML());

 


Scenario 2: Custom Coding a Business Process

Although the primary way to use application views in business processes is to use business process management (BPM), an alternate way is to write custom Java code to represent the business process. If you are a developer who uses the custom coding method, this section uses a simple example to demonstrate how to custom code a business process.

For a thorough comparison of the two ways to use application views, see Deciding Which of the Two Methods to Use.

About this Scenario

In the simple example used throughout this section, the following business logic is implemented:

An enterprise has a customer relationship management (CRM) system and an order processing (OP) system. You want a business process that coordinates the synchronization of customer information between these two systems. That means that whenever a customer is created on the CRM system, it should trigger the creation of a corresponding customer record on the OP system. The attached Java class SyncCustomerInformation implements this business logic.

This example does not cover everything you can do using custom code. It only demonstrates the basic steps you take when you implement your own organization's business processes.

Your role is to use this example code as a template for custom coding your own business processes.

This scenario uses a concrete example class called SyncCustomerInformation to explain how to write custom code. In general, you must do the following two steps to create custom code that uses an application view in a business process:

  1. Make sure a Java class exists to represent the application that implements the business process.

  2. Within this Java class, supply the code to implement the business logic.

Before You Begin

The following prerequisites must be met before you write custom code to implement a business process:

In addition, this particular scenario assumes the following prerequisites are already complete:

Creating the SyncCustomerInformation Class

When writing custom code, a Java class must exist to represent each application required for the business process. Create the necessary Java classes if they do not exist already. This example calls for one application class called SyncCustomerInformation. Of course, your own code will use different variable names. To create the SyncCustomerInformation Java class:

  1. See Example Code for SyncCustomerInformation for the complete source code for the Java application class.

    Note: For your own projects, use the SyncCustomerInformation code as a template or guide. The SyncCustomerInformation example code is thoroughly commented.

  2. Make sure the code does the following things (steps 3 through 11):

  3. Create code to listen for East Coast.New Customer.

  4. Obtain a reference to the NamespaceManager (variable name m_namespaceMgr) and ApplicationViewManager (variable name m_appViewMgr) within WebLogic Server. Accomplish this using a JNDI lookup from WebLogic Server.

  5. Using the NamespaceManager, obtain a reference to the "root" namespace by calling nm.getRootNamespace(). This reference is stored in a variable called root.

  6. Using the root variable, obtain a reference to the East Coast namespace by calling root.getNamespaceObject("East Coast"). This reference is stored into a variable called eastCoast.

  7. Using the eastCoast variable, obtain a temporary reference to the Customer Management ApplicationView and store it into a variable called custMgmtHandle.

  8. This custMgmtHandle temporary reference will be used to obtain an actual reference to an ApplicationView instance for Customer Management. Do this by calling the ApplicationViewManager as avm.getApplicationViewInstance (custMgmtHandle.getQualifiedName()). Store the returned reference into a variable called custMgmt.

  9. Begin listening for New Customer events by calling custMgmt.addEventListener("New Customer", listener), where listener is an object that can respond to New Customer events (see the application integration API for a full discussion of event listeners and the EventListener interface).

  10. Implement the onEvent method of the listener class used in the step above.

    When a New Customer event is received, the onEvent method of the listener is called.

    The onEvent method should then call a method to respond to the event. In this example, the onEvent method provides the event object that contains the data associated with the event. The method is called handleNewCustomer.

  11. Implement the handleNewCustomer method that will respond to the New Customer event.

    The following things happen:

    1. The handleNewCustomer method transforms the XML document in the event to the form expected by the East Coast.Order Processing.Create Customer service. This transformation may be performed using XSLT or manually using custom transformation code. The end result of the transformation is an XML document that conforms to the schema for the request document of the East Coast.Order Processing.Create Customer service. Store this document in a variable called createCustomerRequest.

    2. handleNewCustomer will then obtain a reference to an instance of the East Coast.Order Processing ApplicationView in the same way described for the East Coast.Customer Management ApplicationView. This reference is stored into a variable called orderProc.

    3. handleNewCustomer will then invokes the Create Customer service on the East Coast.Order Processing ApplicationView by calling orderProc.invokeService("Create Customer", createCustomerRequest). Recall that createCustomerRequest is the variable holding the request document for the Create Customer service. The response document for this service is stored in a variable named createCustomerResponse.

    4. handleNewCustomer is finished and returns, leaving itself ready to handle the next incoming New Customer event.

    When you are finished, a new Java class exists called SyncCustomerInformation. This class implements the Sync Customer Information business logic. This SyncCustomerInformation class uses the application integration API to get events from the CRM system and to invoke services on the OP system.

Example Code for SyncCustomerInformation

The following code listing is the full source code for the SyncCustomerInformation Java class. It implements the business logic for the scenario described earlier in this chapter. Use this example code as a guide for writing your own custom code to implement your enterprise's business processes.

Listing 4-4 Full Class Source Code for SyncCustomerInformation

import java.util.Hashtable;
import javax.naming.*;
import java.rmi.RemoteException;
import com.bea.wlai.client.*;
import com.bea.wlai.common.*;
import com.bea.document.*;

/**
* This class implements the business logic for the 'Sync Customer Information'
* business process. It uses the WLAI API to listen to events from the CRM
* system, and to invoke services on the OP system. It assumes that there
* are two ApplicationViews defined and deployed in the 'EastCoast'
* namespace. The application views and their required events and services
* are shown below.
*
* CustomerManagement
* events (NewCustomer)
* services (none)
*
* OrderProcessing
* events (none)
* services (CreateCustomer)
*/

public class SyncCustomerInformation
implements EventListener
{
/**
* Main method to start this application. No args are required.
*/
public static void
main(String[] args)
{
// Check that we have the information needed to connect to the server.

if (args.length != 3)
{
System.out.println("Usage: SyncCustomerInformation ");
System.out.println(" <server url> <user id> <password>");
return;
}

try
{
// Create an instance of SyncCustomerInformation to work with

SyncCustomerInformation syncCustInfo =
new SyncCustomerInformation(args[0], args[1], args[2]);

// Get a connection to WLAI

InitialContext initialContext = syncCustInfo.getInitialContext();

// Get a reference to an instance of the 'EastCoast.CustomerManagement'
// Application View

ApplicationView custMgmt =
new ApplicationView(initialContext, "EastCoast.CustomerManagement");

// Add the listener for 'New Customer' events. In this case we have
// our application class implement EventListener so it can listen for
// events directly.

custMgmt.addEventListener("NewCustomer", syncCustInfo);

// Process up to 10 events and then quit.

syncCustInfo.setMaxEventCount(10);
syncCustInfo.processEvents();
}
catch (Exception e)
{
e.printStackTrace();
}

return;
}

/**
* EventListener method to respond to 'New Customer' events
*/
public void
onEvent(IEvent newCustomerEvent)
{
try
{
// Print the contents of the incoming 'New Customer' event.

System.out.println("Handling new customer: ");
System.out.println(newCustomerEvent.toXML());

// Handle it

IDocument response = handleNewCustomer(newCustomerEvent.getPayload());

// Print the response

System.out.println("Response: ");
System.out.println(response.toXML());

// If we have processed all the events we want to, quit.

m_eventCount++;
if (m_eventCount >= m_maxEventCount)
{
quit();
}
}
catch (Exception e)
{
e.printStackTrace();
System.out.println("Quitting...");
quit();
}
}

/**
* Handles any 'New Customer' event by invoking the 'Create Customer'
* service on the 'Order Processing' ApplicationView. The response
* document from the service is returned as the return value of this
* method.
*/
public IDocument
handleNewCustomer(IDocument newCustomerData)
throws Exception
{
// Get an instance of the 'OrderProcessing' ApplicationView.
if (m_orderProc == null)
{
m_orderProc =

 

back to top previous page next page