Home > Articles > Web Services > XML

Like this article? We recommend

Like this article? We recommend

Executing SQL via HTTP

Up to this point, we've given a lot of examples to show how the HTTP protocol is used to request XML documents from SQL Server. We've never really given a formal definition of the syntax. Table 4.3 gives the formal definition. We'll also cover some more details of querying via a URL, such as stored procedures, templates in depth, utilizing XSLT stylesheets, and so on.

Here's the formal syntax for URL access accepted by the SQL ISAPI extension:

http://iisserver/virtualroot/virtualname[/pathinfo][/XPathExpression]
 [?param=value[&param=value]...n]

or:

http://iisserver/virtualroot?{sql=SqlString | template=XMLTemplate}
 [&param=value[&param=value]...n]

Table 4.3 HTTP Syntax Explanation

Keyword

Description

iisserver

The IIS server to access.

For example: http://www.newriders.com.

virtualroot

The virtual root configured with the Virtual Directory Management utility (graphically or programmatically).

virtualname

A virtual name defined when the virtual root was configured. It will be one of three types: template, schema, or dbobject.

[/pathinfo]

Path information to locate template or schema files in addition to the path information specified during virtualname configuration. Not needed for a dbobject type.

[/XPathExpression]

Specified if necessary for schema files or dbobject types.

?sql

Delimits an SQL query string.

SqlString

An SQL query or stored procedure name. Usually contains the FOR XML extension unless the returned data is already in XML format. For example, a stored procedure that returns XML data.

?template

Delimits a SQL query string formatted as an XML document.

param

This is either a parameter name or one of the following:

 

contenttype

Specifies the content format of the returned document to allow a Web browser to pick the proper display method. Specified in two parts, the contenttype and subtype. It's sent in the HTTP header to become the MIME type of the document. text/XML, text/HTML, and image/gif designate an XML document, an HTML document, and a GIF image, respectively.

 

outputencoding

The character set used to render the generated XML document. The default is UTF-8. Templates specified directly in a URL via template= are rendered in Unicode. Template files can specify the outputencoding themselves because they are XML documents.

 

root

When specified, the returned data is bracketed with the element name given to generate a well-formed XML document.

 

xsl

The URL of an XSLT stylesheet used to process the returned data. By default, output documents are UTF-8 encoded unless overridden by an encoding instruction in the XSL file. If outputencoding is specified, it overrides the XSL specified encoding.


Character encodings are specified with the encoding= attribute in the XML declaration. The XML specification explicitly says XML uses ISO 10646, the international standard 31-bit character repertoire that covers most human languages. It is planned to be a superset of Unicode and can be found at http://www.iso.ch.

The spec says (2.2) "All XML processors must accept the UTF-8 and UTF-16 encodings of ISO 10646... ." UTF-8 is an encoding of Unicode into 8-bit characters: The first 128 are the same as ASCII; the rest are used to encode the rest of Unicode into sequences of between 2 and 6 bytes. UTF-8 in its single-octet form is therefore the same as ISO 646 IRV (ASCII), so you can continue to use ASCII for English or other unaccented languages using the Latin alphabet. Note that UTF-8 is incompatible with ISO 8859-1 (ISO Latin-1) after code point 126 decimal (the end of ASCII). UTF-16 is like UTF-8 but with a scheme to represent the next 16 planes of 64k characters as two 16-bit characters.

Regardless of the encoding used, any character in the ISO 10646 character set can be referred to by the decimal or hexadecimal equivalent of its bit string. So, no matter which character set you personally use, you can still refer to specific individual characters by using &#dddd; (decimal character code) or &#xHHHH; (hexadecimal character code in uppercase). The terminology can get confusing, as can the numbers: See the ISO 10646 Concept Dictionary at http://www.cns-web.bu.edu/djohnson/web_files/i18n/ISO-10646.html.

Well-Formed Documents, Fragments, and &root

As promised, the &root=root parameter used in some of the URLs and template files in the previous section requires a little explanation.

Think back to our discussion of well-formedness and XML documents. One of the conditions that must be met for an XML document to be well-formed is that it must contain a single top-level element. Remember our RESUMES shown in the following example:

<RESUMES xmlns='http://www.myorg.net/tags'>
 <PERSON PERSONID="p1">
  <NAME>
...
</RESUMES>

Our document contains the single top-level element <RESUMES>. Although there are other requirements for well-formed documents, if this one isn't met, the document fails the test.

How does this relate to the &root parameter in the URL? The &root parameter specifies the name of the document ROOT element. The result is an XML document with that all-important single top-level element. Let's look at some examples by reusing some of the code we have given previously:

http://IISServer/Nwind?sql=SELECT+*+FROM+Employees+FOR+XML+AUTO&root=root

Here we specify &root=root. This will generate a document that contains that single top-level element, and the element will be <ROOT>. In the following example, you would expect a document fragment to be returned because no root element is specified. You actually receive an error message stating, "Only one top-level element is allowed in an XML document." Because the root element is missing, all employee elements are assumed to be at the top level, which isn't allowed.

http://IISServer/Nwind?sql=SELECT+*+FROM+Employees+FOR+XML+AUTO

When template files are used, the same conditions hold true. Let's say we have the template file shown in Listing 4.4.

Listing 4.4 Template File Without a Root Element

<ROOT XMLNS:SQL="urn:schemas-microsoft-com:xml-sql">
 <sql:query>
  SELECT *
  FROM  Employees
  FOR XML AUTO
 </sql:query>
</ROOT>

Let's say we employ this template file via this URL:

http://IISServer/Nwind/TemplateVirtualName/template.xml

The template file will provide the single top-level element via the <ROOT> element declaration.

Just to make sure we understand the root declaration, if I make the specification root=EMPS in the template file, the following fragment shows how the resulting document's root element has changed.

<EMPS xmlns:sql="urn:schemas-microsoft-com:xml-sql">
 <Employees EmployeeID="1" LastName="Davolio" ...
...
</EMPS>

Queries on Multiple Tables

Querying multiple tables has implications that you need to consider carefully if you want to generate your resulting documents with the proper element order. Here's the rule of thumb: "The order in which tables are specified in the SQL query determines the element nesting order." We'll take a look at the Orders and Employees tables in Northwind in a couple of ways (also refer to Appendix A, "Northwind Database Schema").

Here's the first query:

http://iisserver/Nwind?sql=SELECT+TOP+2+Orders.OrderID,+Employees.
 LastName,+Orders.ShippedDate+FROM+Orders,+Employees+WHERE+Orders.
  EmployeeID=Employees.EmployeeID+Order+by+Employees.EmployeeID,
   OrderID+FOR+XML+AUTO& root=ROOT

This returns the results in Listing 4.5.

Listing 4.5 Results of Querying Multiple Tables

<?xml version="1.0" encoding="utf-8" ?>
<ROOT>
 <Orders OrderID="10258" ShippedDate="1996-07-23T00:00:00">
  <Employees LastName="Davolio" />
 </Orders>
 <Orders OrderID="10270" ShippedDate="1996-08-02T00:00:00">
  <Employees LastName="Davolio" />
 </Orders>
</ROOT>

Let's do this again with three tables, this time adding the Order Details table.

http://iisserver/Nwind?sql=SELECT+TOP+2+Orders.OrderID,+Employees.
 LastName,+Orders.ShippedDate,+[Order+Details].UnitPrice,+[Order+
  Details].ProductID+FROM+Orders,+Employees,+[Order+Details]+WHERE+Orders.
   EmployeeID=Employees.EmployeeID+AND+Orders.OrderID=[Order+Details].OrderID
    +Order+by+Employees.EmployeeID,Orders.OrderID+FOR+XML+AUTO&root=ROOT

Listing 4.6 shows the results of this query.

Listing 4.6 Results of Querying Three Tables

<?xml version="1.0" encoding="utf-8" ?>
<ROOT>
 <Orders OrderID="10258" ShippedDate="1996-07-23T00:00:00">
  <Employees LastName="Davolio">
   <Order_x0020_Details UnitPrice="15.2" ProductID="2" />
   <Order_x0020_Details UnitPrice="17" ProductID="5" />
  </Employees>
 </Orders>
</ROOT>

Listing 4.7 shows the results obtained when we execute the same SQL expression but move the Employees.LastName element to the last element specified.

Listing 4.7 Results of Moving Employees.LastName to the Last Element

<?xml version="1.0" encoding="utf-8" ?>
<ROOT>
 <Orders OrderID="10258" ShippedDate="1996-07-23T00:00:00">
  <Order_x0020_Details UnitPrice="15.2" ProductID="2">
   <Employees LastName="Davolio" />
  </Order_x0020_Details>
  <Order_x0020_Details UnitPrice="17" ProductID="5">
   <Employees LastName="Davolio" />
  </Order_x0020_Details>
 </Orders>
</ROOT>

The key point I want you to grasp here is that the placement of elements in the result XML document depends on their placement in the SQL expression. This should be especially evident in the difference between Listings 4.6 and 4.7.

Passing Parameters

It is possible to pass parameters to SQL queries in URLs. This is known as run-time substitution as opposed to design-time substitution. In this case, we use a placeholder to specify the location where the parameter is to be substituted at execution time. The placeholder is a ?, which must be specified as %3F in a URL. Here's an example:

http://iisserver/Nwind?sql=SELECT+TOP+4+OrderID+FROM+Orders+WHERE+
 EmployeeID=%3F+FOR+XML+AUTO&EmployeeID=5&root=ROOT

Listing 4.8 is the resulting document.

Listing 4.8 Results of Parameter Substitution in Our URL

<?xml version="1.0" encoding="utf-8" ?>
<ROOT>
 <Orders OrderID="10248" />
 <Orders OrderID="10254" />
 <Orders OrderID="10269" />
 <Orders OrderID="10297" />
</ROOT>

Passing multiple parameters would just consist of more than one item with a question mark and a separate parameter for each. This URL passes two parameters:

http://iisserver/Nwind?sql=SELECT+TOP+4+OrderID+FROM+Orders+WHERE+
 EmployeeID=%3F+AND+CustomerID=%3F+FOR+XML+AUTO&EmployeeID=5&CustomerID=
  'VINET'&root=ROOT

This might not seem like a big deal here, and perhaps it's not to you, but wait until we start specifying template files in URLs that have parameters queries designed into them. We'll get to these shortly.

The XSL Keyword

Now we get to make use of what we learned in Chapter 2. Utilizing XSLT stylesheets gives us the much-needed flexibility to manipulate the XML output we generate. We can create HTML on-the-fly for immediate or later display, or we can change the returned XML document to a different one for further processing. The latter occurs more often than you would think, as with Electronic Data Interchange (EDI) related messages. Let's take the following SQL query and generate an HTML page:

http://iisserver/Nwind?sql=SELECT+TOP+4+OrderID,EmployeeID,Shipname+FROM+
Orders+WHERE+EmployeeID=5+FOR+XML+AUTO&xsl=order.xsl &root=ROOT

In this example, the XSL file is located in the virtual root directory. The resulting XML document is given in Listing 4.9, followed by the XSLT stylesheet in Listing 4.10.

Listing 4.9 XML Document Containing Order Information

<?xml version="1.0" encoding="utf-8" ?>
<ROOT>
 <Orders OrderID="10248" EmployeeID="5" Shipname="Vins et alcools  Chevalier" />
 <Orders OrderID="10254" EmployeeID="5" Shipname="Chop-suey Chinese" />
 <Orders OrderID="10269" EmployeeID="5" Shipname="White Clover Markets" />
 <Orders OrderID="10297" EmployeeID="5" Shipname="Blondel père et fils" />
</ROOT>

Listing 4.10 XSLT Stylesheet to Apply to Order Information

<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl='http://www.w3.org/XSL/Transform/1.0'>
<xsl:output media-type="text/html"/>

 <xsl:template match="/">
  <HTML>
  <BODY>
   <TABLE width='400' border='1'>
   <TR>
   <TD><B>Order ID</B></TD>
   <TD><B>Ship Name</B></TD>
   </TR>
   <xsl:apply-templates/>
   </TABLE>
  </BODY>
  </HTML>
 </xsl:template>

 <xsl:template match="Orders">
  <TR>
   <TD>
    <xsl:value-of select="@OrderID"/>
   </TD>
   <TD>
    <xsl:value-of select="@Shipname"/>
   </TD>
  </TR>
 </xsl:template>
</xsl:stylesheet>

This results in a simple table of Order ID versus Shipname, as shown in Table 4.4.

Table 4.4 HTML Table of Results

Order ID

Shipname

10248

Vins et alcools Chevalier

10254

Chop-suey Chinese

10269

White Clover Markets

10297

Blondel per´e et fils


Again, the result in this case might be simple, but the potential is enormous. Data can be retrieved from a database and presented in real-time to the viewer via a thin-client browser. Static pages can be generated and stored for viewing as needed by the client. In this case, the XSLT stylesheet functions as an HTML template. (Templates are much easier to maintain than rewriting HTML documents.) Business-to-business e-commerce documents can be generated from existing queries without having to modify the query itself. The XSLT stylesheet can manipulate the data in any way desired to create the required new XML document.

Next we change our focus to using template files to generate XML documents. We'll discuss them in a lot more detail than we have so far.

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