What is the next step that he must take to accomplish the task?
John works as a Windows Application Developer for PassGuide.com. The company uses
Microsoft Visual Studio .NET 2010 as its application development platform for creating
applications. He has been given a task of creating a WCF service based on Framework 4.0. He
has finished creating the WCF service and must now configure the bindings. He requires using
WSHttpBinding binding. He has already defined and implemented the service contract on the
application. What is the next step that he must take to accomplish the task?
Which of the following properties does the service require, in order to configure endpoints?
John works as a Windows Application Developer for PassGuide.com. The company uses Visual
Studio .NET 2010 as its application development platform. John has been given a task to create a
WCF service for his company using .NET Framework 4.0. Which of the following properties does
the service require, in order to configure endpoints?
Each correct answer represents a part of the solution. Choose all that apply.
What should John do to accomplish the task?
John works as a Windows Developer for PassGuide.com. John has been given a task to create a
WCF 4.0 by using the Microsoft .NET Framework 4.0. The client applications are unable to use
SSL feature.
John here needs to make sure that a client is authenticated by using a token mentioned by a
Security Token Service (STS).
What should John do to accomplish the task?
You need to recognize the cause of the error
You work as a Windows Developer for PassGuide.com. You need to generate a Windows
Communication Foundation service by using Microsoft .NET Framework 4.0. You set up tracing for
the service. The tracing fails because of an error in the service configuration. You need to
recognize the cause of the error. What should you do to accomplish the service without any error?
What should you do to accomplish the task?
You work as a Windows Developer for PassGuide.com. You have a task to create a WCF service
4.0 by using Microsoft .NET Framework 4.0. The WCF service will be hosted in a managed
console application of the Framework. The WCF 4.0 service endpoint has an address that is
comparative to the base address of the WCF service. You are required to programmatically add
and manage the base address to the WCF service.
What should you do to accomplish the task?
What should you do to accomplish this task?
You work as a Windows Developer for PassGuide.com. You are required to create a WCF service
by using Microsoft .NET Framework 4.0. The WCF service uses the net.tcp transport. You are
required to ensure that when the company’s server starts, the service also starts and continues to
run. What should you do to accomplish this task?
Which of the following are the main requirements to self-host your services?
Which of the following are the main requirements to self-host your services?
Each correct answer represents a complete solution. Choose two.
Which of the following implementations would you use?
You work as a Windows Developer for PassGuide.com. You are required to handle orders placed
for the company’s IT department. You are required to write the following code for a service
contract:
<ServiceContract>
Public Interface IOrderManager
<OperationContract>
Sub OrderPlaced(ordered As Integer)
EndSub
End Interface
You want to make sure that the OrderPlaced method uses transactions, and if no exception
occurs, then regulates and commits automatically. Which of the following implementations would
you use?
Which of the following values for the session instance will You use to accomplish the task?
You work as a Windows Developer for PassGuide.com. You are required to create a WCF 4.0
service that will be used by multiple clients afterwards. According to the requirements, one service
object should handle all service calls and this service object should not be recycled.
Which of the following values for the session instance will You use to accomplish the task?
Which of the following code statements should you insert at the beginning of the above mentioned code segment?
You work as an Application Developer for PassGuide.com. You have been assigned to create a
WCF service for the Business School of Management. You write the following code segment to
define the service:
Public Interface ISchoolService
<OperationContract()>
Sub FindStudent(int StudentID)
End Interface
Public Class School
Implements ISchoolService
<OperationBehavior(TransactionAutoComplete:=False, TransactionScopeRequired:=True)
>
Public Sub FindStudent(int studentnumber)
End Sub
End Class
Your next task is to set the <ServiceContract> attribute for the transaction behavior of this service.
Which of the following code statements should you insert at the beginning of the above mentioned
code segment?