Online Access Free 70-513 Exam Questions
| Exam Code: | 70-513 |
| Exam Name: | TS: Windows Communication Foundation velopment with Microsoft .NET Framework 4 |
| Certification Provider: | Microsoft |
| Free Question Number: | 323 |
| Posted: | Jun 03, 2026 |
You have an existing Windows Communication Foundation (WCF) service.
You need to ensure that other services are notified when the service is started.
What should you do?
----
You are creating a Windows Communication Foundation (WCF) service.
You have the following requirements:
Messages must be sent over TCP.
The service must support transactions.
Messages must be encoded using a binary encoding.
Messages must be secured using Windows stream-based security.
You need to implement a custom binding for the service.
In which order should the binding stack be configured?
You develop a Windows Communication Foundation (WCF) service to generate reports. Client applications call the service to initiate report generation but do not wait for the reports to be generated. The service does not provide any status to the client applications.
The service class is defined as follows. (Line numbers are included for reference only.)
01 <ServiceContract()> 02 Public Class ReportGeneratorService 03 04 Private Function GenerateReports( ByVal clientID As Integer) As Integer 05 & 06 Return 0 07 End Function 08 09 End Class
You need to ensure that client applications can initiate reports without waiting for status.
Which two actions should you perform (Each correct answer presents part of the solution. Choose two.)
A Windows Communication Foundation (WCF) service interacts with the database of a workflow engine. Data access authorization is managed by the database, which raises security exceptions if a user is unauthorized to access it.
You need to ensure that the application transmits the exceptions raised by the database to the client that is calling the service.
Which behavior should you configure and apply to the service?
A Windows Communication Foundation (WCF) client application is consuming an RSS syndication feed from a blog. You have a SyndicationFeed variable named feed. The application iterates through the items as follows. (Line numbers are included for reference only.)
01 foreach (SyndicationItem item in feed.Items)
02 {
03 }
You need to display the content type and body of every syndication item to the console.
Which two lines of code should you insert between lines 02 and 03?