Saturday, March 14, 2015

Introduction to SQL

1. SQL is a standard language for accessing databases.

INTRODUCTION TO JAVA

1. Java is a high-level and object oriented programming language.

Monday, January 12, 2015

Starting TIBCO Administrator on Windows

1. For launching TIBCO Administrator, first we need to start the administration server.
2. Two Windows services must be running for the server to be available. After creating an administration domain, these two services are installed and set to start automatically.






















3. To start these services first time, traverse to Services dialog and find the TIBCO administration server for your domain.



















4. Click on the start button for TIBCO Administrator and TIBCO Hawk Agent services.
5. You can also start the TIBCO Administrator and TIBCO Hawk Agent services through command prompt.
6. For Starting the Administration server, type the following command in command-line prompt:
-> cd <TIBCO Installation Path>\tibco\administrator\domain\<domain-name>\bin
-> tibcoadmin_<domain-name>.exe
7. Start the TIBCO Hawk Agent, which is used for TIBCO Administrator monitoring functions, by typing below command in command –line prompt:
-> cd <TIBCO Installation Path>\tibco\tra\domain\<domain-name>
-> hawkagent_<domain-name>.exe


Thursday, January 8, 2015

INTRODUCTION TO EMS

JMS Overview:
1. Java message service (JMS) is a Java framework specification for messaging between applications.
2.  The Java framework specification was developed to provide equal messaging interface among enterprise applications.
3. Using a message service allows you to integrate the applications within an enterprise.
4. TIBCO Enterprise Message Service implements JMS and integrates support for connecting other message services, like TIBCO Rendezvous and TIBCO SmartSockets.


JMS Message Models:
1 - Point to Point (Queues)
2 - Publish and Subscribe (Topics)
3 – Multicast (Topics)

1- Point to Point (Queues):
  • It has only one producer and only one consumer per message.
  • The message producer sends message to the EMS queue, the message consumer retrieves the message from the EMS queue and sends acknowledgement that the message was received.
  • More than one producer can send messages to the same queue and more than one consumer can retrieve messages from the same queue.
     Exclusive Property:
  • If the queue is configured with exclusive then all the messages will be retrieved by the first consumer of that queue. By default the queue property is no – exclusive.
  • Exclusive queues are useful only, if you want to send messages to only one application.




Sunday, November 30, 2014

Introduction to TIBCO Administrator

1. TIBCO Administrator is a central administration server for TIBCO products. 









2. You can create the application, deploy the application and manage the application in TIBCO administrator using a web browser based interface.

i. Create Application:
















ii. Deploy Application:

















3. You can also create EAR files and deploying applications using available command line utilities.

Tuesday, November 25, 2014

Overview of Administration

1. A TIBCO ActiveMatrix Business Works project has the following lifecycle:
i. Design
ii. Deploy
iii. Run





















i. Design:
The design phase involves creating and testing the project using TIBCO designer. Below is the example screen shot for creating project:




Below is the example screen shot for testing the project:




ii. Deployment:
Enterprise Archive File (EAR file) will be created by using TIBCO designer for deploying an application. The EAR file contains the required resources for running the project.

.

After build an Archive file, it will create an EAR file in the specified location.




Using TIBCO Administrator GUI, deploy the application to the machine or machines where it will run.

iii. Run:
The TIBCO ActiveMatrix BusinessWorks process engine executes the process instances of the deployed application and TIBCO Administrator can be used to monitor and manage the process engine. 





Saturday, November 15, 2014

TIBCO BW CERTIFICATION

1. You have a repeating structure as follows:
   Customer (*)
   Name (String)
   Surname (String)
   isVIP (Boolean)
 And you want to create an output structure as follows:
  VIP_Customer (*)
  Name (String)
  Surname (String)
To select a list of VIP customers you must perform a For-each mapping between customer and VIP_Customer with which filter?
Ans. [isVIP='true']

2. Which pairs are valid TIBCO Business Works Messaging wire formats?
Ans. TIBCO Rendezvous XML and TIBCO Rendezvous AE
        TIBCO JMS XML and TIBCO Rendezvous RV

3. Where in TIBCO Administrator do you configure an alert for a TIBCO Business Works application?
Ans. In the monitoring tab of the process archive configuration.