WFBean.java.

Architect's Corner
Designing asynchronous J2EE architectures with JMS
by Satagopan Rajagopalan
Listing 2. WFBean.java.


  public String process(InsuranceData data) {
   //code to process the Insurance Data
   //Interface with Vehicle History Server
   //Driving History Information application
   //Credit History Server
   //Criminal /Background Check Server
   //Evaluate the results.
   notifyQueue(data.getSessionId(),resultData);
 }

 public void notifyQueue(String s,ResultData data) {
  QueueSend qs = QueueSend.getInstance();
  qs.send(s,data);
}

Upcoming Training Events

0 AM
Visual Studio Live! San Diego
September 8-12, 2025
Live! 360 Orlando
November 16-21, 2025
Cloud & Containers Live! Orlando
November 16-21, 2025
Data Platform Live! Orlando
November 16-21, 2025
Visual Studio Live! Orlando
November 16-21, 2025