I am very new to windows azure and need to create a restful wcf application. What I have done is I created a new cloud project by adding one asp.net web role and one wcf web role together to my project. I wrote some restful services in my wcf project. The problem I am facing now is how do I call or consume the wcf service from my asp.net web role. I used to follow call restful services using
HttpResponseMessage response = new HttpClient().Get(currentServiceUri)
but I cannot refer microsfot.http library to my asp.net web role.
Please let me know how to call my wcf service? Am following the correct approach? if not please correct me..
Thanks, Sreelal