What should you do?
You write a SOAP extension to monitor a deployed Web service.
You need to deploy the SOAP extension to the Web service without requiring a change to the compiled assemblies.
You cannot use reflection to deploy the SOAP extension.
What should you do?
What should you do?
You write a Web service that processes multiple SOAP headers, including one named HeaderA.
You examine the HTTP log and find that an unknown SOAP header is included in the client application requests.
Your Web service must process all headers.
You need to indicate to the client application that the unknown SOAP header is unexpected.
What should you do?
What should you do?
You are creating a Web service by using ASP.NET.
You need to ensure that the Web Services Description Language (WSDL) file that is generated is Web services interoperability (WS-I) compliant and that it allows message validation.
What should you do?
What should you do?
You are creating a Web service.
The Web service must be configured to receive the following message.
<soap:Envelope xmlns:soap=”http://schemas.xmlsoap.org/soap/envelope/”>
<soap:Body>
<givenName xmlns=”urn:SampleNS”>given name</givenName>
<surname xmlns=”urn:SampleNS”>surname</surname>
</soap:Body>
</soap:Envelope>
You need to ensure that the Web Services Description Language (WSDL) for the Web service describes the message.
What should you do?
Which two actions should you perform?
A Web service exposes the following Web method.
[WebMethod(CacheDuration=60)]
public byte[] GetImage(string imageId)
{
…
}
The Web method generates responses that are greater than 1 MB in size.
You need to configure the Web method to minimize memory usage on the server.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
What should you do?
You build Web services by using Microsoft Visual Studio 2005.
Some of the Web services are hosted in IIS.
You need to ensure that remote systems cannot dynamically discover which Web services are hosted in IIS.
What should you do?
What should you do?
An application contains .NET Framework Web services that are built by using Microsoft Visual Studio 2005.
Discovery information for these Web services must be made available to client applications.
You need to expose the Disco files for all Web services in the application.
What should you do?
Which two actions should you perform?
You write a client application that uses a Web service.
The Web service is hosted in a Windows service application.
The Web service can be called only by using TCP.
You are provided with the proxy that is enabled by Web Services Enhancements (WSE) 3.0.
The proxy was generated by adding a Web reference by using Microsoft Visual Studio 2005.
You need to ensure that the proxy calls the Web service correctly.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
What should you do?
A Web service application provides security data about employees to applications that control access to company facilities.
The Web service is accessed by using TCP and is protected by using Web Services Enhancements (WSE) 3.0 security for message encryption.
The company has added fingerprint readers to grant employees access to the facilities.
Images of employee fingerprints are maintained by the Web service application.
You need to ensure that the existing WSE security encryption policy can be applied to the fingerprint image.
Your solution must minimize the size of the Web service message.
What should you do?
Which three stored procedures should you recommend?
You are an enterprise application developer. You are designing a Web-based application to maintain appointment details.
You consider implementing the following steps to delete an appointment:
Enter a date range or a client ID, or enter a date range and a client ID to get a list of appointments.
Click the Appointment hyperlink. The appointment details are retrieved and displayed.
Click the Delete button.
You need to analyze the requirements and recommend stored procedures. Which three stored procedures should you recommend? (Each correct answer presents part of the solution. Choose three.)