tibco bwce interview questions

Frequently asked Tibco Bw interview questions
  • Q1) What are the differences between JDBC activities and sqldirect? …
  • Q2) What are the differences between global variables, process variables, shared, and job shared variables? …
  • Q3) In . …
  • Q4) Where to go for JDBC Activities and ADB adapter?

Please note: Your successful completion of these sample questions is not a guarantee of passing TIBCOs actual certification exam.

Tibco Interview Questions and Answers

What are affirmation modes and where do you set them and what is the appropriateness of every mode? Ans: The recognize mode for approaching messages. Can be one of the accompanying: • Auto — the message is naturally recognized when it is gotten. • Client — the message will be recognized at a later point by utilizing the Confirm action. In the event that the message isn’t affirmed before the interaction case closes, the message is redelivered and another cycle occasion is made to deal with the new approaching message. Guarantee that your interaction definition affirms the message while utilizing this recognize mode. • TIBCO EMS Explicit Client Acknowledge — this mode acts precisely equivalent to the Client mode, aside from the meeting isn’t impeded and one meeting can deal with every single approaching message. • Dups OK — the message is recognized naturally when it is gotten. JMS gives this mode to languid affirmation, yet TIBCO BusinessWorks recognizes messages upon receipt. • Value-based — this mode is utilized when an exchange that can interaction JMS messages is remembered for the cycle definition. The message is recognized when the exchange commits. See TIBCO BusinessWorks Process Design Guide for more data about making exchanges that JMS exercises can take an interest in.

Competitors applying for the test should have one-year improvement experience with Web administration conventions and guidelines (REST, JSON, HTTP, SOAP). It is additionally important to have a half year of involvement in creating TIBCO BusinessWorks Container Edition applications.

Ans) This movement creates a mistake and makes a prompt change any blunder advances. In the event that there are no mistake changes, the cycle occurrence stops execution. This movement is valuable in a gathering or in a called cycle. On the off chance that you might want to catch and raise your own mistake conditions, you can utilize this movement to do as such.

Competitors applying for the test ought to have knowledge of other significant advancements like XML, JSON Schemas, XPath, and microservices. They ought to have the option to comprehend distributed computing, virtual machines, and compartment-based arrangements. They likewise know how to utilize various conventions to fabricate administrations, cycles, and applications.

Ans) The assessor action is utilized to acquire the result of any action or every one of the exercises and interaction factors. Situation: You can utilize the reviewer movement to compose the result of any action or cycle variable in the ongoing system. Exercises and interaction factors in a subprocess are not accessible to the Inspector movement (but rather the result of a Call Process action can be composed utilizing the Inspector action). In the event that you wish to acquire the result from at least one exercises or interaction factors in a subprocess, place the Inspector action in the process meaning of the subprocess.

Subscribe to our youtube channel to get new updates..!

Ans:

  • Shared variables: The shared variable can be accessible by multiple process definitions, and these can be changeable by any process definitions.
  • Job shared variables: this type of variable can be accessed within the execution jobs and helps to maintain a variable copy for every job execution.
  • Process variables: this type of variable can also be accessed for a particular process where it gets defined.
  • Global variable: Global variable can be accessible across the Tibco project. Users can also edit this type of variable at runtime.
  • Ans: The file adapters are used to read the file and process the binary output or text.

    File pollers are used to make any changes in an event and synchronize them as per the requirements.

    Ans: Tibco transactions are used to store the message related business transactions in Tibco BW. The transactions are like JNDI and XA.

    Ans: Render XML is used to render the output data by providing an XML string mechanism. This is done with the help of XSD or schema definitions.

    Parsed XML used to parse only XML contents that depend on XSD, DTD, or Schema.

    Ans: Concrete WSDL contains transport details and this also abstracts the WSDL.

    Abstract WSDL contains port messages and information about the port type.

    Ans: Confirm activities are used to provide the client acknowledgments.

    Checkpoints are mainly used during the time of BW engine failure occurs, and also helps to avoid duplications while saving the data.

    Ans: HAWK is used to monitor the BW tool to maintain the consistent performances and health of the application software. HAWK consists of three major components such as HAWK micro agents, HAWK Agents, and HAWK Display.

    Ans:The following are the common errors during .ear deployment such as;

  • Failed tibrv exception
  • Failed tibhawk exception
  • No memory
  • Port connection failure
  • Connection availability failure
  • Ans:

    Tibco business works perform field mapping well. BW makes it easy to map fields between cumbersome documents, loop over repeating nodes, and apply XPath.

    BW also makes it easy to establish a logical flow. BW offers an icon-based designer to design the logical flow.

    Tibco BW runs very efficiently. General development time on business works is quick.

    Ans:TIBCO means the information Bus Company since it transfers the messages only in the form of the bus from one source to destinations.

  • Batch starts on 24th Oct 2022, Weekday batch
  • Batch starts on 28th Oct 2022, Fast Track batch
  • Batch starts on 1st Nov 2022, Weekday batch
  • If you want to prepare yourself for TIBCO RV only, you can refer to TIBCO RV Top 10 Interview Questions and Answers also:

    Ans: TIBCO provides Inspector activity which can be used for debugging purposes while developing applications in TIBCO designer. Inspector activity can be used to write all output information of designer activities to a local file including process variables and other details.

    Vcrepo.dat file is used to store certain properties like TIBCO RV encoding, display name; description etc. vcrepo.dat file gets created automatically when a TIBCO BW project is saved for the first time. This file can be used for identification purposes.

    Ans: Following are the three levels of validations supported by TIBCO BW: 1. Activity level validation

    Ans: In TIBCO Designer Processes, transitions between activities are always uni-directional. This means that we can’t go back to a previous transition from any point.

    Q What is the critical section in TIBCO Business works and what is it used for?

    Ans: A critical section is used to sync process instances so that only one process instance executes the grouped activities at any given time. Any concurrently running process instances that contain a corresponding critical section group wait until the process instance that is currently executing the critical section group completes. Particularly used for controlling access to shared variables. A critical section is one of the group actions. Others are iterating, repeat until true, repeat on error until true, while true, pick first and transaction. If we select the critical section as the group, then we get two options. Single group and multiple groups.

    Single Group

    If you wish to synchronize process instances for a single process definition in a single process engine (only one ear(instance) is deployed), perform the following:

  • Create a group around the activities you wish to synchronize.
  • Specify the Critical Section for the Group Action field.
  • Specify Single Group for the Scope field.
  • Only one process instance at any given time will execute the activities contained in the Critical Section group.
  • Multiple Groups

    If you wish to synchronize process instances for multiple process definitions, or if you wish to synchronize process instances across multiple process engines, perform the following:

  • Create a Lock shared configuration resource and specify a name for the resource.
  • To perform the synchronization across multiple process engines, check the Multi-Engine field of the Lock resource. When the process instances are executed by the same process engine, locking is performed in memory. When the process instances are executed across multiple engines, the process engines must be configured to use a database for storage, and a database transaction is performed to ensure that only one process instance is executing the critical section group at any given time.
  • Create a group around the activities you wish to synchronize.
  • Specify Critical Section for the Group Action Field.
  • Specify Multiple Groups for the Scope field.
  • Use the Browse button in the Lock Object field to locate the Lock shared configuration resource you created in Step 1.
  • Perform steps 3 to 6 for any process definitions you wish to synchronize. Make sure you specify the same Lock shared configuration object for all Critical Section groups.
  • FAQ

    What is the difference between JMS and EMS?

    The difference between JMS and TIBCO EMS is that JMS provides two types of delivery modes which are Persistent and Non-Persistent while TIBCO EMS adds another type of delivery model which is RELIABLE delivery mode.

    What is Tra In Tibco?

    which is the TIBCO Runtime Agent. The TRA is a set of executables and shared libraries for many of the 4.1 products, including Designer. It is a new required infrastructure product for. Designer, and includes internal components such as the TIBCO.

    How many process starters can exist in a process in Tibco BW?

    There can be only one activator process for an application module. However, the activator process can invoke one or more sub-processes.

    Related Posts

    Leave a Reply

    Your email address will not be published. Required fields are marked *