• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/14

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

14 Cards in this Set

  • Front
  • Back
____________ is a standard and simple way to present messages in an XML format and provides mechanisms for functional declaration.
Simple Object Access Protocol (SOAP)
All web service files will have a(n) ____ extension that will be referenced by another user or distributed application.
asmx
Name the three important attributes of the WebService declaration
Language, CodeBehind, and Class
What is the Namespace attribute of the WebServiceAttribute used for?
The Namespace is used to uniquely identify the web service to other users.
What namespaces are included by default with the Visual Studio web services template?
System.Web, System.Web.Services, System.Web.Services.Protocols
In a web service declaration, what format is used to declare a class in another assembly?
Class Name, then a comma, then the Assembly Name
The _____ class is the base class for all Web services, and it is included in the _________ namespace.
WebService, System.Web.Services
What are the basic requirements for make an ASP.NET Application a Web Service?
One or more public methods, the WebService processing directive, and the WebMethod attribute attached to each method that will be exposed.
Methods exposed through a Web Service must be declared as ______
public
The _____ attribute must be applied to all public methods that need exposed through a Web Service.
WebMethod
The ______ or _______ in the _______ namespace can be used to format SOAP messages, including setting them to One Way methods
SoapDocumentMethodAttribute, SoapRpcMethodAttribute, System.Web.Protocols
How do you allow your Web Service to participate in a transaction?
Set the TransactionOption property for the WebMethod attribute to either Required or RequiresNew.
What page is used to display a list of links to your Web Service?
Service Help Page
What three methods can be used to verify the results of a Web Service?
Call the web service by browsing to the asmx file.

Using a debugging session within the Web Service Project

Creating an ASP.NET lient application to consume a particular web service method.