Tibco BW Interview Questions And Answers Pdf

1. What are the differences between JDBC activities and sql direct?

Answer: Sql direct is capable of executing entire DML operations, such as table deletion and creation, whereas, JDBC activities are capable of executing specific DML operations like insert, modify, and update.

2. What is the use of ESB BUS?

Answer: An enterprise service bus (ESB) is a distributed, message-based integration solution based on open standards. The role of an ESB is to facilitate reliable communications between IT resources such as applications, platforms, and services that are distributed in multiple systems throughout an enterprise.

3. What are the protocols that RV and EMS use?

Answer: EMS uses TCP protocol whereas RV uses TRDP over UDP which will provide TRDP for secure communication.

4. What is the purpose of the inspector activity?

Answer: The Inspector activity is used to write the output of any or all activities and process variables to a file and/or stdout. This is particularly useful when debugging process definitions and you wish to see the entire schema instead of mapping specific elements to the Write File activity.

5. What Is The Difference Between Process Level Variables & Process Input Variables?

Answer: Process level variables can be altered using assign activity and they cannot be mapped to sub-process whereas process input variables cannot be altered and they could be mapped to subprocess.

6. Can We Install Primary & Secondary Administration Servers On The Same Machine?

Answer: No, we cannot install both primary and secondary admin servers on the same machine.

7. What Are The TRA Files You Need To Change The Class-Path Field For Java Method Activity?

Answer: BW Engine. tra & Designer. tra is the TRA files needed to change the classpath field for java method activity.

8. What is parsing Xml and render Xml?

Answer: The Parse XML activity takes a binary XML file or an XML string and processes it, converting it into an XML schema tree based on the XSD specified.

The Render XML activity takes an instance of an XML schema element and renders it as a stream of bytes containing XML or an XML string.

9. Where we define error schema for generating error activity?

Answer: Will have to define in END activity error schema tab so that it will get deflect on generate error tab.

10. If you have installed a particular version of TIBCO software e.g. TIBCO BW X.Y.Z, What are X, Y, and Z number stands for?

Answer:

Integration can be at different application layers:

• X:  Patch
• Y: Major
• Z: Minor

11. How to control the sequence of execution of process instances created by a process starter?

Answer: Use the sequencing key field in the Misc tab of any process starter. Process instances with the same value for this field are executed in the sequence in which they are started.

12. What are the cases where the business process cant proceed correctly after the restart from a checkpoint?

Answer: Sending HTTP response, confirming an email/JMS message, etc. This is because the confirmation or sending HTTP response has to do in the same session. When engine crashes these sessions are closed at their socket level. In such cases send response/confirm before the checkpoint.

13. What is S Programming Language?

Answer:

  • The award-winning S programming language is at the core of both TIBCO Spotfire S+ and R. The only language created specifically for exploratory data analysis and statistical modeling, the S programming language allows you to create statistical applications up to five times faster than with other languages.
  • Object-oriented, interpreted 4GL language.
  • Interactive exploration and fast prototyping.
  • Rich data structures: vector, matrix, array, data frame, list and many more.
  • User-defined functions, objects, classes, methods, and libraries.
  • Library of over 4000 functions for data manipulation, graphics, statistical modeling, and integration.
  • CSAN library of available packages.

14. What is Spotfire Cloud?

Answer: Spotfire Cloud is the leading data visualization and cloud-based business analytics software available today. Spotfire enables users to create beautiful, interactive visualizations from their laptop or tablet. While traditional business intelligence tools force the user to know what question to ask first, Spotfire allows users to explore trends, outliers and previously undiscovered insights in their data.

15. How to install Tibco software components (sequence to install the components)?

Answer:

We can install Tibco software in 3 ways.

a) GUI mode

b) Silent mode

c) Console mode.

And we can install Tibco software in the following sequence.

TRA, BW, Admin, EMS, RV, Adapters, Hawk.

16. When do you get the error “Array Index out of Bounds Exception?

Answer: When the data formats are not specified correctly. If we give a Fixed format instead of delimiter we get this type of error. If we give a fixed format then we need to specify the length in offset as equal to the number of characters as (0, 4, 7) and so on.

17. What is the purpose of a Lock shared configuration resource?

Answer: A Lock is specified for a ‘Critical Section’ group when the scope is ‘Multiple’. It can be used to ensure synchronization across process instances belonging to multiple processes definitions or for process instances across engines(Check multi-engine flag for lock in this case and the BW engine needs to be configured with database persistence while deployment). If synchronization is for process instances belonging to the same process definition inside one engine, just specify the scope as ‘Single’.

18. What are the different types of Transactions TIBCO provides?

Answer: TIBCO Business Works offers a variety of types of transactions that can be used in different situations. You can use the type of transaction that suits the needs of your integration project. When you create a transaction group, you must specify the type of transaction.

TIBCO Business Works supports the following types of transactions:

JDBC

Java Transaction API (JTA) User Transaction

XA Transaction

19. Where to go for JDBC Activities and ADB adapter?

Answer: For the ADB adapter, we should go where the flow of data is synchronous. The integration of data between various databases is needed. JDBC Activities, on the other hand, are used in cases of asynchronous operations without the need for data integration.

20. How to define security to EMS sever Or use of SSL in Tibco EMS?

Answer: By using this SSL we can provide security to the EMS messages for this will have to configure the SSL certification file.

21. How Will You Achieve The Inter-Process Communication Of Two-Process Engines Located On Two Machines?

Answer: Process engines which are with wait/notify activities should be configured in such a way that it will hold state saving mechanism with the database(using admin at deployment time, you have to deploy in such a way)

22. What is Workspace?

Answer:

  • The TIBCO Business Studio ™work space contains one or more application modules.
  • An application module contains one or more Business Works packages
  • A TIBCO Active Matrix Business Works ™ package contains one or more processes, which in turn are main processes or sub-processes
  • A process is stored as a single file with a .bwp extension

23. What is the difference between RVD and RVRD?

Answer: RVD (Rendezvous Daemon): RVD is used to connect only within the network.

RVRD (Rendezvous Routing Daemon): RVRD is used to connect outside the network and also within the network. If we have RVRD then there is no need for RVD.

24. Process engines in a fault-tolerant group can be configured as peers or master secondary. How do these differ?

Answer:

The options for configuring storage for process engine’s checkpoint repository are:

  • Peer means all of them to have the same weight. In this case when one engine fails another one takes over and continues processing till it fails.
  • In master secondary configuration weights are unequal, the secondary starts processing when the master fails. But when master recovers, secondary stops, and master continues processing.

25. What is meant by service and daemon in Rendezvous?

Answer: TIBCO RV Service is the UDP Port number on which Rendezvous messages are sent. Daemon is the port number on which communication takes place between RVD and application.

26. What are the TIBCO BW activities that can participate in transactions?

Answer: Not all TIBCO Business Works activities can participate in a transaction. Only the following types of activities have transactional capabilities:

  • JDBC activities
  • JMS activities
  • Active Enterprise Adapter activities that use JMS transports
  • EJB activities
  • TIBCO iProcess Business Works Connector activity

27. What is the difference between shared variable, job shared variable, process variables and global variables?

Answer: Shared variables can be accessible by multiple process definitions, and can Changeable by any process definition. Job Shared variables can be accessible within the execution jobs, and it will maintain a copy of the variable for every job (execution). Process Variables can only be accessed for a particular process where it gets defined. A global variable can be accessible across the project. A global variable can be edited that runtime too in Tibco administrator.

28. What is the difference between reliable, certified, distributed queues in RV?

Answer:

Reliable: Delivery guarantee in the reliable mode, the subscriber can send the re-transmission request for the lost packets.

Certified: Certified messaging assures that both pub/subs are in the certified mode of message delivery. And packets/messages will be stored on a ledger file. So that lost messages or packets can be delivered as per the re-transmission request.

Distributed: Distribute Queue is to share the load between the workers; this will be handled by the load balancing concept. Whoever is having the highest work will be acting as a scheduler and also we can decide worker capacity as well as DQ-Load balancing!

29. What are the uses of grouping activities?
Answer:

Uses of grouping activities are:

  • Create a set of activities having a common error transition.
  • Repeat a group of activities based on a condition.

1. Iterate over a list.
2. Repeat until the condition true.
3. Repeat on Error until the condition true.

  • Group activities into a transaction.
  • To create a critical section area that synchronizes process instances.
  •  A ‘Pick First Group’ allows you to wait for the occurrence of multiple events and proceed along a path following the first event to occur.

30. What is the purpose of Retrieve Resource activity?

Answer: The Retrieve Resources activity generates a WSDL file containing a concrete service(Concrete WSDL) description of any process definition that has a SOAP Event Source process starter. This allows clients to access the WSDL for a web service. The client can then use the WSDL file to invoke the web service. The Retrieve Resources activity can also be used to retrieve any other resources, including XSDs and WSIL.

31. What Are The Facilities Provided By TIBCO BusinessWorks For Custom Monitoring?

Answer: Alerts & Hawk Rule bases are the facilities provided by TIBCO BW for custom monitoring.

32. You Have A SHELL Program. How Do You Call From A TIBCO Business Process?

Answer: An external command can be used to call a shell program from a TIBCO Business process.

33. What are the common errors during .ear deployment?

Answer: Failed timbre exception, failed tibhawk exception, no memory found are the common errors. Besides, port and connection availability exceptions are also experienced while .ear deployment.

34. What are the differences between global variables, process variables, shared, and job shared variables?

Answer:

  • Shared variables are accessible and changeable through different process definitions.
  • In the case of Job Shared, it is accessible within execution jobs.
  • It maintains a copy for each job execution.
  • The process variables are accessible for a specific process when defined.
  • The global variables are accessible throughout the project.
  • These variables are editable as well in Tibco at runtime.

35. What are the differences between render XML and parsed XML?

Answer: Render XML renders data from the output, providing an XML string depending on the XSD or Schema defined.
Parse XML parses xml content in accordance to the defined XSD, DTD, or Schema.

36. What are the options for configuring storage for the process engine’s checkpoint repository?

Answer: The options for configuring storage for process engine’s checkpoint repository are:

  • Local File
  • Database. Fault-tolerant engines can recover from a checkpoint only when the database is used.

37. What is the difference between TIBCO RV and TIBCO EMS?

Answer:

Below are some major differences between TIBCO RV and TIBCO EMS:

1. TIBCO RV is based on the TRDP/PGM Protocol while TIBCO EMS is based on JMS protocol.

2. TIBCO RV is based on the dynamic subject-based messaging while TIBCO EMS is based on static queues and topic-based messaging.

3. In TIBCO RV, RVD Runs on every machine and hence it doesn’t have a single point of failure. In the case of EMS, the EMS server is a single point of failure.

4. TIBCO RV works on Bus model while TIBCO EMS works on Hub and Spoke model.

38. What are the transactions in Tibco?

Answer: In Tibco, every transaction is a business-related message. We have JNDI, XA transactions available in Tibco.

39. When Would You Select JDBC Adapter & When Would You Choose ADB Adapter?

Answer: If there are only DML operations, then the JDBC adapter could be chosen else if after database updation notification needs to be published to other applications, then the ADB adapter needs to be selected.

40. What are file-based storage and database storage in TIBCO EMS and where we will configure it?

Answer: In file-based store all messages will be saved on disk. Whereas in database storage all messages will write on DB. If we check in stores.conf we can find file storage and database storage. By default, any message will be stored in the file. Note: In EMS 6.0 there is no concept of server or database storage. By default, all the messages get stored on the disc itself.

41. How can unauthorized users be prevented from triggering a process?

Answer: Unauthorized users be prevented from triggering a process by giving ‘write’ access for the process engine to only selected users. Only users with ‘write’ access can do activities like deploying applications, starting/stopping process engines, etc.

Note: Browse Latest  Tibco interview questions and Tibco tutorial. Here you can check Tibco Training details and Tibco training videos for self learning. Contact +91 988 502 2027 for more information.

Leave a Comment

FLAT 30% OFF

Coupon Code - GET30
SHOP NOW
* Terms & Conditions Apply
close-link