Home > Store

Java  Web Services Tutorial, The

Register your product to gain access to bonus material or receive a coupon.

Java Web Services Tutorial, The

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 2002
  • Edition: 1st
  • Book
  • ISBN-10: 0-201-76811-9
  • ISBN-13: 978-0-201-76811-4

The Java™ Web Services Tutorial is a comprehensive, example-driven, "roll up your sleeves and dive in" guide to building Web services applications with Java™ technology. This edition provides a head start on using the Java Web Services Developer Pack (WSDP) from Sun Microsystems. This complete, ready-to-use package includes a variety of technologies and tools required to build and deploy comprehensive Web services applications today.

Web services offer powerful new ways for enterprises to effectively communicate with each other using diverse computing hardware. This paradigm takes the Java platform's "Write Once, Run Anywhere™" capabilities to a new level by providing a completely portable data model. By supporting the latest standards for XML-based Web services, the Java APIs for XML make it easy to build Web services with minimal hand tweaking of data. This tutorial explains these APIs in detail and provides practical examples to reinforce your understanding of key concepts.

The accompanying CD-ROM includes:

  • Java API for XML Messaging (JAXM) 1.0 EA 1
  • Java API for XML Processing (JAXP) 1.2 EA 1 (with XML Schema support)
  • Java API for XML Registries (JAXR) 1.0 EA 1
  • Java API for XML-based RPC (JAX-RPC) 1.0 EA 1
  • JavaServer Pages™ Standard Tag Library (JSTL) 1.0 EA 3
  • Ant Build Tool 1.4.1
  • Java WSDP Registry Server 1.0 EA 1
  • Tomcat Java Servlet and JavaServer Pages container 4.1-dev
  • This package also includes instructions for deploying Web services applications on the Java 2 SDK, Enterprise Edition.



    0201768119B03262002

    Sample Content

    Online Sample Chapter

    An Introductory Tutorial on Web Services, Java and XML

    Table of Contents



    Foreword.


    Preface.


    1. Introduction to Web Services.

    The Role of XML and the Java Platform.

    What Is XML?

    What Makes XML Portable?

    Overview of the Java APIs for XML.

    JAXP.

    The SAX API.

    The DOM API.

    The XSLT API.

    JAX-RPC.

    Using JAX-RPC.

    JAXM.

    Getting a Connection.

    Creating a Message.

    Populating a Message.

    Sending a Message.

    JAXR.

    Using JAXR.

    Sample Scenario.

    Scenario.

    Conclusion.



    2. Understanding XML.

    Introduction to XML.

    What Is XML?

    Why Is XML Important?

    How Can You Use XML?

    XML and Related Specs: Digesting the Alphabet Soup.

    Basic Standards.

    Schema Standards.

    Linking and Presentation Standards.

    Knowledge Standards.

    Standards That Build on XML.

    Summary.

    Designing an XML Data Structure.

    Saving Yourself Some Work.

    Attributes and Elements.

    Normalizing Data.

    Normalizing DTDs.



    3. Getting Started with Tomcat.

    Setting Up.

    Getting the Example Code.

    Checking the Environment Variables.

    Creating the Getting Started Application.

    The Converter Class.

    The Web Client.

    Building and Deploying the Getting Started Application Using Ant.

    Setting the CLASSPATH.

    Creating the Build File for Ant.

    Compiling the Source Files.

    Deploying the Application.

    Running the Getting Started Application.

    Starting Tomcat.

    Running the Web Client.

    Shutting Down Tomcat.

    Modifying the Application.

    Modifying a Class File.

    Modifying the Web Client.

    Reloading the Application.

    Common Problems and Their Solutions.

    Cannot Start the Tomcat Server.

    Compilation Errors.

    Deployment Errors.



    4. Java API for XML Processing.

    The JAXP APIs.

    An Overview of the Packages.

    The Simple API for XML (SAX) APIs.

    The SAX Packages.

    The Document Object Model (DOM) APIs.

    The DOM Packages.

    The XML Stylesheet Language for Transformation (XSLT) APIs.

    The XSLT Packages.

    Compiling and Running the Programs.

    Where Do You Go from Here?



    5. Simple API for XML.

    Writing a Simple XML File.

    Creating the File.

    Writing the Declaration.

    Adding a Comment.

    Defining the Root Element.

    Adding Nested Elements.

    Adding HTML-Style Text.

    Adding an Empty Element.

    The Finished Product.

    Echoing an XML File with the SAX Parser.

    Creating the Skeleton.

    Importing Classes.

    Setting up for I/O.

    Implementing the ContentHandler Interface.

    Setting up the Parser.

    Writing the Output.

    Spacing the Output.

    Handling Content Events.

    Compiling and Running the Program.

    Checking the Output.

    Identifying the Events.

    Compressing the Output.

    Inspecting the Output.

    Documents and Data.

    Adding Additional Event Handlers.

    Identifying the Document's Location.

    Handling Processing Instructions.

    Summary.

    Handling Errors with the Nonvalidating Parser.

    Substituting and Inserting Text.

    Handling Special Characters.

    Using an Entity Reference in an XML Document.

    Handling Text with XML-Style Syntax.

    Handling CDATA and Other Characters.

    Creating a Document Type Definition (DTD).

    Basic DTD Definitions.

    Defining Text and Nested Elements.

    Limitations of DTDs.

    Special Element Values in the DTD.

    Referencing the DTD.

    DTD's Effect on the Nonvalidating Parser.

    Tracking Ignorable Whitespace.

    Cleanup.

    Documents and Data.

    Empty Elements, Revisited.

    Defining Attributes and Entities in the DTD.

    Defining Attributes in the DTD.

    Defining Entities in the DTD.

    Echoing the Entity References.

    Additional Useful Entities.

    Referencing External Entities.

    Echoing the External Entity.

    Summarizing Entities.

    Referencing Binary Entities.

    Using a MIME Data Type.

    The Alternative: Using Entity References.

    Using the Validating Parser.

    Configuring the Factory.

    Changing the Environment Variable.

    Experimenting with Validation Errors.

    Error Handling in the Validating Parser.

    Defining Parameter Entities and Conditional Sections.

    Creating and Referencing a Parameter Entity.

    Conditional Sections.

    Parsing the Parameterized DTD.

    DTD Warnings.

    Handling Lexical Events.

    How the LexicalHandler Works.

    Working with a LexicalHandler.

    Using the DTDHandler and EntityResolver.

    The DTDHandler API.

    The EntityResolver API.



    6. Document Object Model.

    Reading XML Data into a DOM.

    Creating the Program.

    Additional Information.

    Looking Ahead.

    Displaying a DOM Hierarchy.

    Echoing Tree Nodes.

    Convert DomEcho to a GUI App.

    Create Adapters to Display the DOM in a Jtree.

    Finishing Up.

    Examining the Structure of a DOM.

    Displaying A Simple Tree.

    Displaying a More Complex Tree.

    Finishing Up.

    Constructing a User-Friendly JTree from a DOM.

    Compressing the Tree View.

    Acting on Tree Selections.

    Handling Modifications.

    Finishing Up.

    Creating and Manipulating a DOM.

    Obtaining a DOM from the Factory.

    Normalizing the DOM.

    Other Operations.

    Finishing Up.

    Using Namespaces.

    Defining a Namespace.

    Referencing a Namespace.

    Defining a Namespace Prefix.



    7. XML Stylesheet Language for Transformations.

    Introducing XSLT and XPath.

    The XSLT Packages.

    How XPath Works.

    Summary.

    Writing Out a DOM as an XML File.

    Reading the XML.

    Creating a Transformer.

    Writing the XML.

    Writing Out a Subtree of the DOM.

    Summary.

    Generating XML from an Arbitrary Data Structure.

    Creating a Simple File.

    Creating a Simple Parser.

    Modifying the Parser to Generate SAX Events.

    Using the Parser as a SAXSource.

    Doing the Conversion.

    Transforming XML Data with XSLT.

    Defining an Ultra-Simple Article Document Type.

    Creating a Test Document.

    Writing an XSLT Transform.

    Processing the Basic Structure Elements.

    Writing the Basic Program.

    Trimming the Whitespace.

    Processing the Remaining Structure Elements.

    Process Inline (Content) Elements.

    Printing the HTML.

    What Else Can XSLT Do?

    Concatenating XSLT Transformations with a Filter Chain.

    Writing the Program.

    Understanding How it Works.

    Testing the Program.

    Conclusion.



    8. Java API for XML Messaging.

    Overview of JAXM.

    Messages.

    Connections.

    Messaging Providers.

    Running the Samples.

    The Sample Programs.

    The Provider Administration Tool.

    Tutorial.

    Client without a Messaging Provider.

    Client with a Messaging Provider.

    Adding Attachments.

    Code Examples.

    Request.java.

    MyUddiPing.java.



    9. Java API for XML-based RPC.

    What is JAX-RPC?

    A Simple Example: HelloWorld.

    HelloWorld at Runtime.

    HelloWorld Files.

    Overview of Steps.

    Setting Up.

    Coding the Service Definition Interface and Implementation Class.

    Compiling the Service Definition Code.

    Creating the Configuration File.

    Generating the Stubs and Ties.

    Creating the Deployment Descriptor.

    Packaging the Service Definition.

    Deploying the Service Definition.

    Coding the Client.

    Compiling the Client Code.

    Running the Client.

    The Dynamic Invocation Interface.

    When to Use DII.

    A DII Client Example.



    10. Java API for XML Registries.

    Overview of JAXR.

    What is a Registry?

    What Is JAXR?

    JAXR Architecture.

    Implementing a JAXR Client.

    Establishing a Connection.

    Querying a Registry.

    Managing Registry Data.

    Running the Client Examples.

    Using the Registry Browser.

    Querying a Registry.

    Managing Registry Data.



    11. The Java WSDP Registry Server.

    Setting Up the Registry Server.

    Using the JAXR Registry Browser with the Registry Server.

    Adding Organizations.

    Querying the Registry.

    Using the Command Line Client Scripts with the Registry Server.

    Using the JAXR API to Access the Registry Server.

    Using the Indri Tool to Access the Registry Server Database.



    12. Web Applications.

    Web Application Life Cycle.

    Web Application Archives,

    Creating a WAR File.

    Web Application Deployment Descriptors.

    Prolog.

    Context Parameters.

    Filter Mappings.

    Event Listeners.

    Alias Paths.

    Error Mappings.

    References to Environment Entries, Resource Environment Entries, or Resources.

    Deploying Web Applications.

    Specifying the Web Application Context.

    Example.

    Running Web Applications.

    Updating Web Applications.

    Internationalizing and Localizing Web Applications.

    Accessing Databases from Web Applications.

    The Examples.

    Downloading and Starting the Database Server.

    Populating the Database.

    Configuring the Web Application to Use the Database.

    Configuring the Server to Recognize the Database.



    13. Java Servlet Technology.

    What is a Servlet?

    The Example Servlets.

    Troubleshooting.

    Servlet Life Cycle.

    Handling Servlet Life Cycle Events.

    Handling Errors.

    Sharing Information.

    Using Scope Objects.

    Controlling Concurrent Access to Shared Resources.

    Accessing Databases.

    Initializing a Servlet.

    Writing Service Methods.

    Getting Information From Requests.

    Constructing Responses.

    Filtering Requests and Response.

    Programming Filters.

    Programming Customized Requests and Responses.

    Specifying Filter Mappings.

    Invoking Other Web Resources.

    Including Other Resources in the Response.

    Transferring Control to Another Web Component.

    Accessing the Web Context.

    Maintaining Client State.

    Accessing a Session.

    Associating Attributes with a Session.

    Session Management.

    Session Tracking.

    Finalizing a Servlet.

    Tracking Service Requests.

    Notifying Methods to Shut Down.

    Creating Polite Long-Running Methods.



    14. JavaServer Pages Technology.

    What is a JSP Page?

    The Example JSP Pages.

    The Life Cycle of a JSP Page.

    Translation and Compilation.

    Execution.

    Initializing and Finalizing a JSP Page.

    Creating Static Content.

    Creating Dynamic Content.

    Using Objects Within JSP Pages.

    JSP Scripting Elements.

    Including Content in a JSP Page.

    Transferring Control to Another Web Component.

    Param Element.

    Including an Applet.

    Extending the JSP Language.



    15. JavaBeans Components in JSP Pages.

    JavaBeans Component Design Conventions.

    Why Use a JavaBeans Component?

    Creating and Using a JavaBeans Component.

    Setting JavaBeans Component Properties.

    Retrieving JavaBeans Component Properties.



    16. Custom Tags in JSP Pages.

    What is a Custom Tag?

    The Example JSP Pages.

    Using Tags.

    Declaring Tag Libraries.

    Making the Tag Library Implementation Available.

    Types of Tags.

    Defining Tags.

    Tag Handlers.

    Tag Library Descriptors.

    Simple Tags.

    Tags with Attributes.

    Tags with Bodies.

    Tags That Define Scripting Variables.

    Cooperating Tags.

    Examples.

    An Iteration Tag.

    A Template Tag Library.

    How Is a Tag Handler Invoked?



    17. JavaServer Pages Standard Tag Library.

    The Example JSP Pages.

    Using JSTL.

    Expression Language Support.

    Twin Libraries.

    Specifying an Expression Language Evaluator.

    Simplest Possible Expression Language (SPEL).

    Tag Collaboration.

    Core Tags.

    Expression Tags.

    Flow Control Tags.

    Import Tags.

    XML Tags.

    Core Tags.

    Flow Control Tags.

    Transformation Tags.

    Internationalization Tags.

    Messaging Tags.

    Formatting Tags.

    SQL Tags.

    Query Tag Result-Related Interfaces.



    18. The xrpcc Tool.

    Syntax.

    Configuration File.

    Starting with RMI Interfaces.

    Starting with a WSDL Document.

    Specifying the Type Mapping.



    19. HTTP Overview.

    HTTP Requests.

    HTTP Responses.



    Appendix: Java Encoding Schemes.


    About the Authors.


    Index. 0201768119T03262002

    Preface

    The Java™ Web Services Tutorial is a beginner's guide to developing Web services and Web applications using the Java Web Services Developer Pack (Java WSDP). The Java WSDP is an all-in-one download containing key technologies to simplify building of Web services using the Java 2 Platform. The technologies available on the Java WSDP are:

    • Java Servlets
    • JavaServer Pages (JSP)
    • JSP Standard Tag Library (JSTL)
    • Java XML Pack, which includes:
      • Java API for XML Messaging (JAXM)
      • Java API for XML Processing (JAXP)
      • Java API for XML Registries (JAXR)
      • Java API for XML-based RPC (JAX-RPC)

    To provide a development and deployment environment, the Java WSDP includes the:

    • Tomcat servlet and JSP container
    • Ant build tool
    • Java WSDP Registry Server

    Here we cover all the things you need to know to make the best use of The Java™ Web Services Tutorial.

    Who Should Use This Tutorial

    This tutorial is intended for programmers interested in developing and deploying Web services and Web applications on the Java WSDP.

    About the Examples

    This tutorial includes many complete, working examples.

    Prerequisites for the Examples

    To understand the examples you will need a good knowledge of the Java programming language, SQL, and relational database concepts. The following topics in the Java Tutorial are particularly relevant:

    Running the Examples

    This section tells you everything you need to know to obtain, build, deploy, and run the examples.

    Required Software

    If you are viewing this online, you need to download The Java Web™ Services Tutorial from:

    http://java.sun.com/webservices/downloads/webservicestutorial.html

    Once you have installed the tutorial bundle, the example source code is in the <JWSDP_HOME>/docs/tutorial/examples directory, with subdirectories for each of the technologies included in the pack.

    This tutorial documents the Java WSDP EA1. To build, deploy, and run the examples you need a copy of the Java WSDP and the Java 2 Platform, Standard Edition (J2SE™) SDK 1.3.1 or 1.4. You can download the Java WSDP from:

    http://java.sun.com/webservices/downloads/webservicespack.html

    the J2SE 1.3.1 SDK from:

    http://java.sun.com/j2se/1.3/

    or the J2SE 1.4 SDK from:

    http://java.sun.com/j2se/1.4/
    Building the Examples

    Most of the examples are distributed with a configuration file for version 1.4.1 of ant, a portable build tool contained in the Java WSDP. Directions for building the examples are provided in each chapter.

    Deploying the Examples

    Most of the Java WSDP examples run on Tomcat. Before you can run an example you must first deploy it on Tomcat. To deploy an application execute ant deploy. The deploy task usually copies some files into the <JWSDP_HOME>/webapps directory. Some things you need to keep in mind:

    • For this release of the Java WSDP you must be running Tomcat on the same machine that you are developing on.
    • The first time an application is deployed you must start or restart Tomcat (see next section). Thereafter, when you modify an application, you can build, deploy, and then reload the example, as described in the next section.
    Running Tomcat

    You run Tomcat by executing the startup script in a terminal window.

    Reloading the Examples

    You reload an application with the command:

    This command invokes the manager Web application. Before you can use this application you must add your user name and password combination and associate the role name manager with it to <JWSDP_HOME>/conf/tomcat-users.xml, which can be edited with any text editor. This file contains an element <user> for each individual user, which might look something like this:

    <user name="adeveloper" password="secret" roles="manager" />

    The Tomcat reference documentation distributed with the Java WSDP contains information about the manager application.

    Related Information

    For further information on the technologies discussed in this tutorial see the reference documentation contained in the Java WSDP (<JWSDP_HOME>/docs/index.html). References to individual technology homes listed in some chapters map as follows:

    • JAXM-HOME to JWSDP_HOME/docs/jaxm/index.html
    • JAXP-HOME to JWSDP_HOME/docs/jaxp/index.html
    • JAXR-HOME to JWSDP_HOME/docs/jaxr/index.html
    • JAXRPC-HOME to JWSDP_HOME/docs/jaxrpc/index.html


    • 0201768119P03262002

    Updates

    Submit Errata

    More Information

    InformIT Promotional Mailings & Special Offers

    I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

    Overview


    Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

    This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

    Collection and Use of Information


    To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

    Questions and Inquiries

    For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

    Online Store

    For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

    Surveys

    Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

    Contests and Drawings

    Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

    Newsletters

    If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

    Service Announcements

    On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

    Customer Service

    We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

    Other Collection and Use of Information


    Application and System Logs

    Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

    Web Analytics

    Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

    Cookies and Related Technologies

    This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

    Do Not Track

    This site currently does not respond to Do Not Track signals.

    Security


    Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

    Children


    This site is not directed to children under the age of 13.

    Marketing


    Pearson may send or direct marketing communications to users, provided that

    • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
    • Such marketing is consistent with applicable law and Pearson's legal obligations.
    • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
    • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

    Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

    Correcting/Updating Personal Information


    If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

    Choice/Opt-out


    Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

    Sale of Personal Information


    Pearson does not rent or sell personal information in exchange for any payment of money.

    While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

    Supplemental Privacy Statement for California Residents


    California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

    Sharing and Disclosure


    Pearson may disclose personal information, as follows:

    • As required by law.
    • With the consent of the individual (or their parent, if the individual is a minor)
    • In response to a subpoena, court order or legal process, to the extent permitted or required by law
    • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
    • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
    • To investigate or address actual or suspected fraud or other illegal activities
    • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
    • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
    • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

    Links


    This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

    Requests and Contact


    Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

    Changes to this Privacy Notice


    We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

    Last Update: November 17, 2020