Cuestiones
ayuda
option
Mi Daypo

TEST BORRADO, QUIZÁS LE INTERESECS_WM_02

COMENTARIOS ESTADÍSTICAS RÉCORDS
REALIZAR TEST
Título del test:
CS_WM_02

Descripción:
Examen wm 2

Autor:
Lalo Onganiza.
(Otros tests del mismo autor)

Fecha de Creación:
03/08/2022

Categoría:
Otros

Número preguntas: 30
Comparte el test:
Facebook
Twitter
Whatsapp
Comparte el test:
Facebook
Twitter
Whatsapp
Últimos Comentarios
No hay ningún comentario sobre este test.
Temario:
The out of the box Service Results cache be made a distributed cache? False True.
What can be used instead of pub.flow:clearPipeline to clean up the pipeline? Use a MAP step within a REPEAT step at the end of the service. In the MAP step drop variables you don’t need Set a Drop property in the service to automatically clean the pipeline Use a LOOP and then drop all unneeded pipeline variables Use a MAP step at the end of you service and drop all unneeded pipeline variables.
Check the correct continuation: An Adapter Service… Is only callable by members of the Administrators group Can only be invoked by an Adapter Can be invoked like any other Service Has an interface defined by the Specification in pub.art:AdapterSpec Is exposed by the Messaging Provider.
Which of the following is not a valid JDBC Adapter Notification? Update Notification Schema Notification Stored Procedure Notification Delete Notification Insert Notification.
When invoking an Integration Server service via an HTML form post, how Will a string named “$xmldata” appear in the pipeline? As an object called node As a document called node As a string called $xmldata It Will not appear , $xmldata is a reserved Word As an object called $xmldata.
Any change that you make to the specification is automatically propagated to all services that reference that specification False True.
The Designer can be used to generate service documentation in which formats? XML only HTML ONLY HTML and XML HTML and UML UML only.
In a webMethods Messaging Trigger, which is the correct syntax to use the Provider Filter (UM only) %block1/field%=’1’ Block1_field=”1 Block1.field=’1’ %block1/field%L_EQUALS ‘1’.
To ensure an IS Document is persisted to disk during transport when using publish/subscribe with a webMethods Messaging Provider, you should... …set the IS Document Type’s Time to live property to Guaranteed …set the IS Document Type’s Storage type property to Guaranteed …set the IS Document Type’s Storage property to Volatile …set the webMethods Messaging Trigger to Guaranteed.
Which of the following Java class combines the functionality of IData, IDataFactory, -IDataUtil, and IDataCursor classes? IDataMap IDataTreeCursor IDataCoder IDataMapper.
Which field[s] within the _env of a publishable Document do you have to set when using joins-? activation and priority activation only appUsername and appPassword priority only businessContext only.
When using Delimited Based parser, what extractor would you use to extract the data from the delimited records? Del-Extractor N Field Nth Field Fixed Position Delimited Extractor.
How do you create a Specification? Using the normal ‘new’ functionality of Designer By importing the corresponding XSLT file You never create a Specification, the System always creates them for you By importing a WSDL file from a UDDI Repository or via a http Request to a WEB Service -End Point By writing a template Service and then extracting the service specification.
To create a Flow service which retrieves an XML file from a web server via HTTP, and then parsers the contents into a document, which two built-in services should be used? (either pub.xml:xmiStringToXMLNode or pub.xml:xmlStringToEnhancedXMLNode) and pub.xml:xmlNodeToDocument Pub.xml:xmlNodeToDocument and pub.xml:”queryXMLNode (either pub.xml:xmlString ToXMLNode or pub.xml:xmlStringToEnhancedXMLNode) and pub.xml:”queryXMLNode (either pub.xml:loadXMLNode or pub.xml:loadEnhancedXMLNode) and pub.xml:xmlNodeToDocument.
When building a publish/subscribe solution on the Integration Server, what built-in service should you use to publish a JMSMessage to a JMS Provider from the Integration Server without waiting for a reply? Pub.jms:reply Pub.jms:sendAndWait Pub.jms:send Pub.publish:publish.
When viewing an IS Document Type, how can you visually tell that it has been made publishable? The icon beside the IS Document Type in the package navigator changes and the IS Document Type will include an_env document reference The Font in the document editor turns to bold black The icon beside the IS Document Type in the package navigator changes The icon beside the IS Document Type in the package navigator will have a green checkmark.
What are the two main types of Web Services? JSON and SOAP REST and JSON WSDC and WSDP SOAP and REST.
Is it important to drop unused variables from the pipeline? Yes, you must do so to avoid duplicate Names No, the system discovers unused variables on its own and drops them as on as possible Yes, for space and performance reasons you want to keep the pipeline as small as possible No, Dropping variables is a not a pipeline related activity Yes, because there is a limit of 64 variables that can be in the pipeline at any time.
What happens if two webMethods Messaging triggers on one IS subscribe to the same Document type and an instance of the Document is published? Both Triggers receive a copy of the Document Each trigger receives a copy of the Document with a different UUIS assigned One Trigger receives a copy of the Document This cannot happen. There can only be one Trigger subscribing to any one Document Type.
An is Document Type contains data that flows through the Integration Server? False True.
A document handling service for a JMS Trigger that receives a single Topic… Must implement the specification given by pub.jms:triggerSpec Will never run in parallel Has a Signature dependent on the Document the Service is supposed to handle Will always receive as many documents as there are available for processing.
Which continuation is FALSE: When using Logged Fields You can specify which Input Variable you want to have logged in the service Audit log You can use transformation services to format output variables You can assign some explanatory text for every logged variable You can select individual fields of a document to be logged You can specify which Output variable you want to have logged in the service audit log.
Which IS built-in service can be used to validate IS Document at runtime? Pub.schema:validateDoc Pub.schema:validate Pub.xml.schema:validate Pub.document.schema:validate Pub.schema:docValidate.
What is default behavior if a Flow Exit step does not specify a “Exit from”? The EXIT will throw an java.lang.NullPointerException $flow will be assumed, and the EXIT will halt operation of the current service and return control to the calling routine The EXIT will not be executed, but no exceptions will be thrown $parent will be assumed, and the EXIT will behave normally $loop will be assumed, and a com.wm.lang.flow.FlowException will be thrown if the EXIT is not in a LOOP.
You are tasked to create a BRANCH which will execute a service only if a string named “partNo” begins with “WEBM”. With the evaluate labels parameter set to “true”, what is the correct syntax for the label of the service? %partNo%==/^WEBM/ %partNo%==/WEBM.*/ %partNo%==”WEBM*” %partNo%==/$WEBM/ %partNo%==/[WEBM]/.
Integration server can receive SOAP requests using which transport protocols? IMAP HTTP, FTP, FTPS HTTP, HTTPS, JMS HTTP, HTTPS, JMS, SMTP HTTP, HTTPS.
Before you (the developer) can create adapter services or adapter notification service using Designer, what has to be created first? A database trigger(s) An enabled adapter connection(s) A webMethods Messaging Trigger to the IS Document A service to publish the IS Document.
Which of the following statements about invoking Transformer services within a Flow MAP step is true? The output of one Transformer can be mapped to the input of another Transformer within the same MAP Only services from the WmPublic package can be used as Transformers Only one Transformer can be used per MAP step Transformer services always run in a specific order Transformers inputs must be manually mapped, even if a variable of the same name exists in the input pipeline.
Assume you created a doc:Valadation publishable document with an IsValid field. You have then used the document type in a webMethods messaging trigger and various Flow services. If you rename the document type to do:Validation and choose the “Update Usages” option, then all of the following will be updated EXCEPT: Variable Substitution of the document type name Trigger’s Document Type Other Document Types Service Inputs and Outputs.
Concerning Perspectives and Views, which of the following statements is TRUE? A perspective contains one or more view(s) A View contains one or more Perspective(s) A View contains exactly one Perspective A Perspective contains exactly one view.
Denunciar test Consentimiento Condiciones de uso