WebMethods Interview Questions and Answers

Ratings:
(4.3)
Views:2693
Banner-Img
  • Share this blog:

WebMethods Interview Questions

How to find dependents of a selected element on the server?

Right click on the element for which you have to find the dependents in the navigational panel and click on the option find dependents.

What is EAI?

EAI or Enterprise Applications Integration can be defined as data that can be integrated from disparate applications regardless of the platform, allowing the sharing of business processes amongst multiple.

What is the primary function of the built-in pub.flow:savePipeline service?

Save the current pipeline to a named memory location on the Integration Server.

What Is webMethods Developer?

WebMethods Developer is a graphical development tool that you use to build, edit, and test integration logic. It provides an integrated development environment in which to develop the logic and supporting objects that carry out the work of an integration solution. It also provides tools for testing and debugging the solutions you create.

How to invoke a service from a browser?

http://servername:port/invoke/folder.subFolder.subsubFolder/serviceName (the package name is not part of the URL in any way).

What happens when the pub.flow:tracePipeline service is invoked?

The Integration Server logs the name-value pairs in the pipeline at that time.

How to remove a system lock from an element?

System locks can be removed by making the server side files of the element as readable.right Click on the element in developer which is system locked.and choose the lock properties. It will display the server side files for the element. Make the files as readable and click the refresh button in the developer.You will find that the element is no more locked.

What is the primary purpose of a Web Service Connector?

The purpose of Web Service Connector is to invoke a Web Service on a different web server Start up service will execute whenever the package is loaded or re-loaded

How to Restore a Session on a Server?

Developer gets disconnected from the server if the server goes down or if there is a problem in the network. Do not close the developer. If you close the developer you wont be able to save the changes.Once the server come up or the network problem is resolved. you will be automatically connected to the server and then you can restore your session.

How do I change the JVM used by Integration Server?

To change to the JDK used by webMethods you will need to edit the IntegrationServer\bin\server.bat or IntegrationServer/bin/server.sh file used to start up Integration Server. Edit the file and change the following line to point to the JDK path

SET JAVA_DIR=C:\opt\j2sdk1.4.2

What are Structural transformations in WebMethods?

Splitting one field into several or merging fields, reordering portions of a message or renaming fields are known as structural transformations.

What Is a Startup Service?

A startup service is one that Integration Server automatically executes when it loads a package into memory.

What are the main companies which provide EAI tools / software?

The below companies are provide EAI tools:

  • TIBCO
  • WebMethods
  • Vitria
  • iPlanet
  • MQSeries (IBM)
  • iPlanet
  • BizTalk (Microsoft)
  • WebLogic (BEA)

What Is a Flow Service?

A flow service is a service that is written in the webMethods flow language. This simple yet powerful language lets you encapsulate a sequence of services within a single service and manage the flow of data among them.

What is the default behavior, if a Flow EXIT does not specify a “from”?

$loop will be assumed, and a com.wm.lang.flow.FlowException will be thrown if the EXIT is not in a LOOP.

How to preserve existing pipeline before a restorePipeline step?

Set the “$merge” variable in restorePipeline or “merge” in restorePipelineFromFile to be true. This will ensure that everything in the pipeline before a restorePipeline step is preserved.

By default, the webMethods Integration Server has an HTTP listener assigned to which port?

5555

How to open a session on a different server?

Select “session” from the menu in toolbar and click open. key in the server IP and port on which you have to open the connection.The user name and password on that server.

How do I debug the Developer IDE itself ?

Start the developer up in debug mode, similar to the Integration server-

cd pathToWMInstall/Developer/bin developer.bat -debug 10

How do I sort using the JDBC select adapter service?

Although there is no tab to specify “order by” the same functionality is able to be specified in the “SELECT” tab. One of the columns in the is labelled “Sort Order” which will allow you to specify the column(s) you wish to sort by. To alter the order: simply alter the order of the columns selected.

What is the Branch operation?

Branch operation conditionally executes an operation based on the value of a variable at run time.

How do I throw an exception when using a try-catch block?

Set a flag in your catch block or leave a variable holding the error message in the pipeline. Outside the catch block put a branch on that variable or flag and if it is non-null then exit with failure or call the service that generates the exception.

If the webMethods Integration Server is started with from the server root directory with this command, “bin\server.bat -debug 9 -log none”, what does this tell the server to do?

Start in level 9 debug mode and write all server log information to the screen.

How do I see the java code for my flow service?

Flow is not turned into java code. It resides on disk as XML representing the flow operations which is then parsed and turned into an in-memory java tree of the operations. Although the underlying code that implements the flow operations is java, it is stored on disk as XML.

WebMethods Interview Questions For Experienced

When creating Flow services, what is the purpose of a SEQUENCE operation?

The purpose of Sequence operation is to group a subset of Flow operations so that they are treated as a unit.

What Is the Pipeline?

The pipeline is the general term used to refer to the data structure in which input and output values are maintained for a flow service. It allows services in the flow to share data.The pipeline starts with the input to the flow service and collects inputs and outputs from subsequent services in the flow. When a service in the flow executes, it has access to all data in the pipeline at that point.

What is WebMethods?

A company that provides integration tools. The key products include Integration Server, Enterprise Server, Business Integrator, Workflow and Mainframe Integration Server. WebMethods is a company, not a product.

For a REPEAT operation to execute as long as the specified repeat condition remains true, the count parameter needs to be set to:?

The count parameter needs to be set to “-1 ” .

What are the Advantages of EAI?

Advantages of EAI solutions are:

  1. Streamlines business processes and helps raise organizational efficiency.
  2. Real time information access among systems.
  3. Maintains information integrity across multiple systems.
  4. Speedier transactions at reduced costs.

If one of the applications misbehaves and requires to be shut down for maintenance, then with EAI, we can easily “decouple” it from rest of the systems. Which avoids having to bring down other systems.

When creating a BRANCH flow element, what is the purpose of the “scope” field on the properties tab?

To restrict pipeline access to only the data in this document.

What are the modules of webMethods Product Suite?

WebMethods Product Suite Modules:

Integration and B2B

Service Oriented Architecture

Business Process Management

Business Activity Monitoring

What are the tools of webMethods Integration?

WebMethod Tools:

  1. webMethods Adapters
  2. webMethods Developer
  3. webMethods Integration Server
  4. webMethods Integration Platform
  5. webMethods Broker
  6. webMethods Monitor
  7. webMethods Optimize for Infrastructure
  8. webMethods Trading Networks
  9. webMethods EDI Module
  10. webMethods EDIINT
  11. webMethods eStandards Modules
  12. webMethods PIM

How to Change the Order of Steps in a Flow Service?

We can change the Order of steps in a Flow Service of Various other services which are called in sequence within Flow service using “Shift Up and Shift Down” buttons exists at top of Editor Panel.

As well we can move any service or Map inside a SEQUENCE or BRANCH using “Shift Left and Shift Right” buttons

How should I organize connection pools?

If you have adapter notifications and adapter services then you will need to have two separate connections. Otherwise you may get strange errors about transactions and the like. You should also avoid having connection pools shared across different functional areas, even if they are pointing to the same database. The reason for this is that tuning the size of the pool becomes quite difficult if you have multiple types of usage of a pool. You are also unable to easily change the database settings for one without impacting on the other. One approach that seems to work quite well is to have separate pools for each package (generally.. not a hard and fast rule though), as your packages should generally be divided up according to functional area too.

What are the disadvantages of EAI?

The main disadvantages of using EAI systems:

  1. Constant change: The very nature of EAI is dynamic and requires dynamic project managers to manage their implementation.
  2. Lack of EAI experts : EAI requires knowledge of many issues and technical aspects.
  3. EAI is a tool paradigm: EAI is not a tool, but rather a system and should be implemented as such.
  4. Building interfaces is an art : Engineering the solution is not sufficient. Solutions need to be negotiated with user departments to reach a common consensus on the final outcome. A lack of consensus on interface designs leads to excessive effort to map between various systems data requirements.
  5. Loss of detail : Information that seemed unimportant at an earlier stage may become crucial later.
  6. Accountability : Since so many departments have many conflicting requirements, there should be clear accountability for the system’s final structure.

How ACLs Affect locking?

ACLS are used to give the authorization to the particular user groups. If u give ACL to administrator then the admin group users who are there in that group they can have the access to that particular service. Otherwise we can not use it. This is called ACL locking.

How to use SEQUENCE as the Target of a BRANCH?

Set evaluate label property of branch step to true. Then set the label property of sequence with the value on which it needs to be processed.

How to Find Elements in the Navigation Panel?

Just right click on the element which you want to see then u click Locate in navigation option then u can see that element in the navigation panel.

What Is an Element?

An element is an item that exists in the Navigation panel in webMethods Developer. Elements include folders, services, specifications, IS document types, triggers, and ISschemas. In the Navigation panel, servers and packages are not considered to be elements.

How can the webMethods Integration Server logging date format be changed?

By editing the watt.server.dateStampFmt parameter in the server.cnf file.

How to get the current index of the List in a loop?

There is a special variable on the pipeline called $iteration which will be incremented as the loop operator works up through the list.

When coding IS Services, how can a variable of type Document Type be represented in Java?

Variable of type Document Type be represented as "IData".

You liked the article?

Like : 1

Vote for difficulty

Current difficulty (Avg): Medium

Recommended Courses

1/15

About Author
Authorlogo
Name
TekSlate
Author Bio

TekSlate is the best online training provider in delivering world-class IT skills to individuals and corporates from all parts of the globe. We are proven experts in accumulating every need of an IT skills upgrade aspirant and have delivered excellent services. We aim to bring you all the essentials to learn and master new technologies in the market with our articles, blogs, and videos. Build your career success with us, enhancing most in-demand skills in the market.


Stay Updated


Get stories of change makers and innovators from the startup ecosystem in your inbox