61.When you create and save the FLOW "my.pack:myFlow" in the "MyPack" package, where will you find the code?In the "MyPack\ns\my\pack\myFlow\flow.xml" file 62.What is the Branch operation?Branch operation conditionally executes an operation based on the value of a variable at run time 63.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 64.An Integration Server package may have one or more startup services. When does a startup service execute?Whenever the package is loaded or re-loaded 65.How can the webMethods Integration Server logging date format be changed?By editing the watt.server.dateStampFmt parameter in the server.cnf file 66.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 " 67.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 " . 68.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. 69.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. 70.The Integration Server requires access to the Java classes for each JDBC driver that it will use. Typically, where must such Java classes be placed?webMethods6\IntegrationServer\lib\jars 71.The Flow Services are physically stored on the webMethods Integration Server in the form of?Flow Services are physically stored on the webMethods Integration Server as "XML" files. 72.What is the default behavior if a Flow EXIT does not specify a "from"?The EXIT will throw an java.lang.NullPointerException. 73.After a default installation, in order to use the pub.file:getFile service, what needs to be done?pub.file:getFile does not require any modifications to the Integration Server. 74.What happens when the pub.flow:tracePipeline service is invoked?The Integration Server logs the name-value pairs in the pipeline at that time. 75.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. 76.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. Donot 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 retsore your session. 77.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. 78.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 acess to that particular service.Otherwise we can not use it.This is called ACL locking. 79.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 80.When and why should we use transformers and flow services? How are they different from each other?Mapping is the process of performing transformations to resolve data representation differences between services or document formats. By linking variables to each other on the Pipeline tab, you can accomplish name transformations and structural transformations. However, to perform value transformations you must execute some code or logic. Developer provides two ways for you to invoke services: You can insert INVOKE steps or you can insert transformers onto the Pipeline tab. Transformers are the services you use to accomplish value transformations on the Pipeline tab. |