PrepAway - Latest Free Exam Questions & Answers

Tag: Exam 70-513 (update June 30th, 2014)

Exam 70-513: TS: Windows Communication Foundation Development with Microsoft .NET Framework 4 (update June 30th, 2014)

How can this be achieved?

DRAG DROP
Exhibit:
[DataContract]
public class Order {
[DataMember]
public string CustomerName { get; set;}
[DataMember]
public string PhoneNumber { get; set; }
}
There is a WCF (Windows Communication Foundation) process PassGuideProcess.
PassGuideProcess handles orders.
The data contract of Order is displayed in the exhibit.
It includes name of the customer (CustomerName) and their telephone number (PhoneNumber).
The Order data must be transmitted from the client to PassGuideProcess.

PhoneNumber data must not be sent in clear text, but this data must be available for
PassGuideProcess.
How can this be achieved?

How can this be achieved?

DRAG DROP
Exhibit:
[MessageContract]
public class Agent
{

public string PassGuideName { get; set: }
public string PassGuideSecret { get; set; }
}
There is a WCF (Windows Communication Foundation) process PassGuideProcess.
When clients are started the send messages to PassGuideProcess. These messages are
accepted by PassGuideProcess.
The contract of the messages is being displayed in the exhibit.
PassGuideProcess must be able to make sure that the property values is kept unchanged after it
has been sent by the client.
PassGuideName should be sent in clear text while PassGuideSecret must not. PassGuideProcess
must be able to read both.
How can this be achieved?

How can this be ensured?

Exhibit:
[ServiceContract]
public interface IService
{
[OperationContract]
string PassGuide1();
[OperationContract]
string PassGuide2();
}
There is a WCF (Windows Communication Foundation) client PassGuideClient.
The service contract of PassGuideClient is being displayed in the exhibit.
There are two operations PassGuide1 and PassGuide2.

Calls to PassGuide1 and PassGuide2 from PassGuideClient must not be unencrypted.
How can this be ensured? Select all that apply.

How can you ensure that only users that are members of the role named Employees can use the ConfirmOrder metho

DRAG DROP
Exhibit:
service contract [ServiceContract]
public interface IOrderProcessing
{
[OperationContract]
void ConfirmOrder(int id)
}
<ServiceContract>
Public Interface IOrderProcessing
<OperationContract>
Sub ConfirmOrder(ByVal id As Integer)
End Interface

There is a WCF (Windows Communication Foundation) service PassGuideService.
PassGuideService is implementing the service contract being displayed in the exhibit.
How can you ensure that only users that are members of the role named Employees can use the ConfirmOrder method?

How can this be ensured?

Exhibit:
<ServiceContract>
Public Interface lService
<OperationContract>
Function PassGuide1() As String
<OperationContract0>
Function PassGuide2() As String
End Interface
There is a WCF (Windows Communication Foundation) client PassGuideClient.
The service contract of PassGuideClient is being displayed in the exhibit.
There are two operations PassGuide1 and PassGuide2.
Calls to PassGuide1 and PassGuide2 from PassGuideClient must not be unencrypted.
How can this be ensured? Select all that apply.

How can this be achieved?

DRAG DROP
Exhibit:
<DataContract(Namespace:)>
Public Class Item
End Class
<ServiceContract(Namespace)>

Public Interface Catalog <OperationContract>
<WebInvoke(Method = “POST”, UriTemplate = “Item”)>
Function UpdateItem(ByVal item As Item) As Item
End Interface
There is a WCF (Windows Communication Foundation) service that is being consumed.
The interface of the service is displayed in the exhibit.
There is a WebResponse with the name of PassGuideResponse that the client application
receives from the service.
PassGuideResponse must be deserialized into a strongly typed object.
This object represents value that is returned by the method.
How can this be achieved?

How can this be achieved?

Exhibit:
<ServiceContract>
Public Interface ICatalog
<OperationContract>
<WebGet(UriTemplate =”/Catalog/Itemsl{id}’.
ResponseFormat =WebMessageFormatJson)>
Function PassGuideRetrieve(ByVal id As Integer) As String
End Interface
There is a WCF (Windows Communication Foundation) service.
The service is consumed by an ASP. NET Web application PassGuideApp.
/Catalogsvc is used to host the service.
The definition of the service is displayed in the exhibit.
JQuery, with variable EmployeeID, must be used to call the service to obtain data of an item
indicated by EmployeeID.
How can this be achieved?

How can this be achieved?

DRAG DROP
Exhibit:
<MessageContract>
Public Class Agent

Public Property PassGuideName As String
Public Property PassGuideName As String
End Class
There is a WCF (Windows Communication Foundation) process PassGuideProcess.
When clients are started the send messages to PassGuideProcess. These messages are
accepted by PassGuideProcess.
The contract of the messages is being displayed in the exhibit.
PassGuideProcess must be able to make sure that the property values is kept unchanged after it
has been sent by the client.
PassGuideName should be sent in clear text while PassGuideSecret must not. PassGuideProcess
must be able to read both.
How can this be achieved?

How can this be achieved?

DRAG DROP
Exhibit:
<DataContract>
Public Class Order
<DataMember>
Public Property CustomerName As String
<DataMember>
Public Property PhoneNumber As String
End Class
There is a WCF (Windows Communication Foundation) process PassGuideProcess.
PassGuideProcess handles orders.
The data contract of Order is displayed in the exhibit.
It includes name of the customer (CustomerName) and their telephone number (PhoneNumber).
The Order data must be transmitted from the client to PassGuideProcess.
PhoneNumber data must not be sent in clear text, but this data must be available for
PassGuideProcess.
How can this be achieved?


Page 9 of 15« First...7891011...Last »