I’m currently trying to access a REST API for the first time using visual web developer 2008 express edition.
Every article I have found says you have to install the WCF REST starter kit which is a .msi file, which would suggest that I have to install it on my machine and presumably our server too.
My question is this. Is there a non installable version that I can use, e.g. just by dropping DLLs into the Bin directory and then using the classes contained. Or is there more to it than that and am I just getting very confused about how it works?
Jon
You’ll find that the msi just installs/registers the dlls and the Visual Studio project templates for common REST scenarios. See the first section of this article.
EDIT: Once referenced (you will have to browse to the install folder of the starter kit to add the reference), the dlls will be be copied to the output directory (because the CopyLocal property of the reference in VS will be true) so when you publish the project via VS (or compile) the dlls will be included in the bin folder (so no you will not have to install the starter kit on the server also).