Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Channels ▼
RSS

Applying .Net to Web Services (Web Techniques, May 2001)


<%@ WebService Language="C#" Class="DBDemo" %>
/* dbdemo.asmx */

using System.Data.ADO;          /* Needed for ADO* objects.    */
using System.Web.Services;      /* Needed by all web services. */
using System.Xml.Serialization; /* Provides SoapServiceStyle.  */
using System.Collections;       /* Provides StringCollection.  */

[SoapService(Style=SoapServiceStyle.RPC)]
public class DBDemo: WebService {

  /*
   * Make a connection to an Access database 
   */
  public ADOConnection getConnection() {

    /* 
     * Create a connection string for the bjepson.mdb file that is
     * located in the db/ subdirectory of my virtual home directory.
     *
     */
    string mdb_file = Server.MapPath("\\bjepson\\db\\bjepson.mdb");
    string conn_str = "Driver={Microsoft Access Driver (*.mdb)};DBQ=" +
                      mdb_file + ";Persist Security Info=False";

    /* 
     * Open a connection and return it 
     */
    ADOConnection conn = new ADOConnection(conn_str);
    conn.Open();
    return conn;

  }

  /* 
   * This WebMethod provides a list of acceptable choices that can
   * be passed to getURL().
   *
   */
  [ WebMethod ]
  public string[] enumerateChoices() {

    ADOConnection conn = getConnection();

    /* 
     * Create a command that retrieves all the sitenames from the
     * site table.
     *
     */
    ADOCommand cmd = new ADOCommand("SELECT sitename FROM site", conn);

    /*
     * Create a data reader to process each row, then execute the
     * command.
     */
    ADODataReader dr;
    cmd.Execute(out dr);

    /* Fetch each row and insert the value of sitename into
     * a StringCollection.
     */
    int i = 0;
    StringCollection sc = new StringCollection();
    while( dr.Read() ) {
      sc.Insert(i++, dr.GetString(0).Trim());
    }

    /* Close the data reader and the connection. */
    dr.Close();
    conn.Close();

    /* 
     * Convert the StringCollection to an array and return it. 
     */
    string[] result = new string[sc.Count];
    sc.CopyTo(result, 0);
    return result;

  }

  /* 
   * This WebMethod retrieves the URL that corresponds to 
   * a given site.
   */
  [ WebMethod ]
  public string getURL(string choice) {

    ADOConnection conn = getConnection();

    /*
     * Fetch the URL that corresponds to the selected sitename. 
     */
    string sql = 
      "SELECT url FROM site WHERE sitename = " + "'" + choice + "'";
    ADOCommand cmd = new ADOCommand(sql, conn);
    ADODataReader dr;
    cmd.Execute(out dr);

    /* Put the URL into a string. */
    string result;
    if( dr.Read() ) {
      result = dr.GetString(0);
    } else {
      result = "unknown site";
    }

    /* Close the data reader and the connection. */
    dr.Close();
    conn.Close();

    /* Return the result */
    return result;

  }

}

Related Reading


More Insights






Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

Dr. Dobb's encourages readers to engage in spirited, healthy debate, including taking us to task. However, Dr. Dobb's moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing or spam. Dr. Dobb's further reserves the right to disable the profile of any commenter participating in said activities.

 
Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.