⇤ ← Revision 1 as of 2019-05-15 16:17:23
Size: 664
Comment:
|
← Revision 2 as of 2019-05-15 16:18:09 ⇥
Size: 689
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
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.