70-595 Exam Details

  • Exam Code
    :70-595
  • Exam Name
    :TS: Developing Business Process and Integration Solutions by Using Microsoft BizTalk Server 2010
  • Certification
    :Microsoft Certifications
  • Vendor
    :Microsoft
  • Total Questions
    :50 Q&As
  • Last Updated
    :Apr 25, 2020

Microsoft 70-595 Online Questions & Answers

  • Question 41:

    A BizTalk Server 2010 application sends purchase orders. Current applications use an existing mail server to send mail. The purchase order application should use a distribution list that is managed by a new mail server. Company IT policy does not allow you to create a new host for the new mail server. You need to create a BizTalk port that sends orders to the email distribution list through the new mail server.

    What should you do?

    A. Create an SMTP send port configured to send to the email distribution list. Create a filter on the send port with the SMTP.SMTPHost context property equal to the new mail server.
    B. Create an SMTP send port configured to send to the email distribution list. Specify the name of the new mail server in Microsoft Internet Information Services (IIS) Manager.
    C. Create an SMTP send port configured to send to the email distribution list. Override the current SMTP send handler settings by entering the new mail server in the SMTP server name field in the Handler Override section of the port.
    D. Create a send port group with an SMTP send port configured to send to the email distribution list. Create a filter on the send port group with the SMTP.SMTPHost context property equal to the new mail server.

  • Question 42:

    A BizTalk Server 2010 solution transmits messages to a suppliers FTP server. The solution uses an FTP send port. The transport URI points to the main FTP server location. The supplier needs to receive the message immediately if the connection with the main FTP server cannot be established. You need to enable transmission redirection to an alternative FTP server.

    What should you do?

    A. Set the Retry count to 1. Set the Backup Transport Type to FTP and the Backup Transport URI to the alternative FTP server location.
    B. Enable ordered delivery for the send port.
    C. Set the Retry count to 0. Set the Backup Transport Type to FTP and the Backup Transport URI to the alternative FTP server location.
    D. Enable failed message routing for the send port.

  • Question 43:

    A BizTalk Server 2010 solution receives invoices in XML format. The solution receives only two types of files: XML files that contain only a single invoice. The filename of these files starts with the letter S.XML files that contain multiple invoices. The filename of these files starts with the letter M. You create a receive port with two FILE receive locations. Both receive locations point to the same folder on the file system but each receive location has a different file mask. You configure each receive location to pick up one type of invoice XML. You need to ensure that the single-invoice XML files are processed as soon as possible, and the multiple-invoice XML files are only processed outside of office hours.

    What should you do?

    A. In the receive port, delete one of the receive locations. Configure the other receive location to pick up both types of files. Set the service window to reflect the outside office hour time range.
    B. Set the service window of the receive location that picks up the multiple-invoice XML files to reflect the outside office hour time range. Enable both receive locations.
    C. Set the schedule start date and stop date of the receive location that picks up the multiple- invoice XML files to reflect the outside office hour time range.
    D. Set the service window of the receive location that picks up the multiple-invoice XML files to reflect the outside office hour time range. Make sure this receive location is disabled.

  • Question 44:

    You change the host-level settings of a BizTalk Server 2010 group named Group1 to optimize the group for a low-latency scenario. You install and configure another BizTalk Server 2010 group, named Group2. Both BizTalk groups use identical hardware. You need to ensure that the same low-latency optimizations are applied to Group2 as to Group1.

    What should you do?

    A. From Microsoft SQL Server Management Studio, create a backup of the BizTalk management database of Group1. Restore this backup on Group2.
    B. From the Administration console, export all applications as Microsoft Windows Installer (MSI) files from Group1. Import the applications on Group2.
    C. From the Administration console, export the host-level settings for Group1. Import the settings on Group2.
    D. From the Administration console, export the default application as MSI file from Group1. Import the application on Group2.

  • Question 45:

    You create a BizTalk Server 2010 application that consumes a Microsoft Windows Communication Foundation (WCF) service. This service uses BasicHttpBinding. An orchestration in the application occasionally processes messages of variable size. You need to accommodate the variable message sizes by specifying the timeout value.

    Which context property should you use?

    A. WCF.OpenTimeout
    B. WCF.SendTimeout
    C. WCF.TimeToLive
    D. WCF.LeaseTimeout

  • Question 46:

    You are developing a BizTalk Server 2010 orchestration that consumes a web service located at http://localhost/ProcessData.asmx. The orchestration contains a non-transactional scope with an exception handler that handles any SOAP exceptions returned from the web service. The orchestration then completes successfully. After the orchestration completes with exceptions, you notice that the original messages posted to the web service are suspended in the BizTalk Administration console. You need to ensure that the messages are not suspended but are saved in an archive file on a shared server.

    What should you do?

    A. In the Administration console, modify the SOAP send port and enable routing for failed messages. Create a FILE send port with filters ErrorReport.ErrorType==FailedMessage and ErrorReport.OutboundTransportLocation==http://localhost/ProcessData.asmx.
    B. In Orchestration Designer, set Delivery Notification to Transmitted on the request/response port that sends the SOAP message. Create an exception handler with exception type DeliveryFailureException. In the handler, send a copy of the original message to a new send port that will transmit the message as a file.
    C. In the Administration console, change the send pipeline to PassThruTransmit and enable Ordered delivery in the transport options.
    D. In Orchestration Designer, modify the SOAP exception handler to send a copy of the original message to a new send port that will transmit the message as a file.

  • Question 47:

    You are developing a solution for BizTalk Server 2010. You deploy the solution to the runtime environment. The solution includes one orchestration with a direct bound send port that sends a message to the BizTalk MessageBox database for routing to a folder. After starting the BizTalk application for testing, you notice that the following error is logged in the servers event log: The published message could not be routed because no subscribers were found. This error occurs if the subscribing orchestration or send port has not been enlisted, or if some of the message properties necessary for subscription evaluation have not been promoted. Please use the BizTalk Administration console to troubleshoot this failure. You need to resolve the error without changing the code in the orchestration and without redeploying the solution.

    What should you do?

    A. Add a send port that uses the XmlTransmit pipeline.
    B. Add a send port that has a filter that matches the message type.
    C. Add a receive port that uses the XmlReceive pipeline.
    D. Add a dynamic send port.

  • Question 48:

    You are developing a BizTalk Server 2010 orchestration that processes messages received from the BizTalk FILE adapter. You need to retrieve the original file name of the message and store it in a variable named FileName for future processing.

    What should you do?

    A. Inside a message assignment shape in the BizTalk Orchestration Designer, use the WSS.Filename context property to assign the FileName variable.
    B. Inside an expression shape in the BizTalk Orchestration Designer, use the LEGACY.FilePath context property to assign the FileName variable.
    C. Inside a message assignment shape in the BizTalk Orchestration Designer, use the BTS.MessageType context property to assign the FileName variable.
    D. Inside an expression shape in the BizTalk Orchestration Designer, use the FILE.ReceivedFileName context property to assign the FileName variable.

  • Question 49:

    A BizTalk Server 2010 solution contains an orchestration that sends messages through a logical port with the Binding property set to Specify later. You need to change the orchestration so that the logical port is not bound to a physical port.

    What should you do?

    A. Change the Binding property of the port to Specify now.
    B. Change the Binding property of the port to Direct.
    C. Set the Type Modifier property of the port type to Private.
    D. Set the Type Modifier property of the port type to Public.

  • Question 50:

    You are developing a BizTalk Server 2010 orchestration. In the Business Rule Composer, you create and save a policy named BonusPolicy that calculates an employees bonus based on year- to-date sales. You add a Call Rules shape to the orchestration. In the BizTalk Orchestration Designer, BonusPolicy is not listed in the menu of available policies to call. You need to make the policy available in the Orchestration Designer.

    What should you do?

    A. Use the Rule Engine Deployment Wizard to export BonusPolicy.
    B. In the Business Rules Composer, publish BonusPolicy.
    C. In the Business Rules Composer, create a vocabulary with a definition that references the XML schema used to evaluate BonusPolicy. Publish the vocabulary.
    D. In the Business Rules Composer, use the Rule Store menu and load policies from the BizTalkRuleEngineDb database.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Microsoft exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your 70-595 exam preparations and Microsoft certification application, do not hesitate to visit our Vcedump.com to find your solutions here.