Differences between revisions 1 and 2
Revision 1 as of 2019-05-15 16:17:23
Size: 664
Editor: scot
Comment:
Revision 2 as of 2019-05-15 16:18:09
Size: 689
Editor: scot
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
ID int primary key identity,
Title varchar(100) NOT NULL,
ReleaseDate  date NOT NULL,
Genre varchar(100) NOT NULL);
ID         int primary key identity,
Title         varchar(100) NOT NULL,
ReleaseDate   date NOT NULL,
Genre         varchar(100) NOT NULL);

HW02: WCF and SOAP Web Services

Reproduce what I did in class In-class Video Demo:

Create a Database with a table called movies

   1 CREATE TABLE movies (    
   2 ID              int primary key identity,
   3 Title           varchar(100) NOT NULL,
   4 ReleaseDate     date NOT NULL,
   5 Genre           varchar(100) NOT NULL);

Requirements:

  • Create a WCF Library that provide Create, Read, Update and Delete methods to manipulate data in the database.
  • Create a Windows forms application that uses the webservice and on a button click, shows the contents of the movies table.

WebServices/ProgrammingHomeworks/HW02 (last edited 2019-05-15 16:18:09 by scot)