Tagged Questions

2
votes
1answer
262 views

WCF REST WebInvoke UriTemplate & https Issue

My WCF service works with WebInvoke attributes and using httpGetEnabled. [OperationContract] [WebInvoke(Method="POST", UriTemplate = "/Function1")] void Function1(Stream input); [OperationContract] ...
1
vote
3answers
835 views

Passing XML string in the body of WCF REST service using WebInvoke

I'm a newbie to WCF, REST etc. I'm trying to write a service and a client. I want to pass xml as string to the service and get some response back. I am trying to pass the xml in the body to the ...
1
vote
1answer
775 views

WCF REST Webinvoke not found

Following is the code i am using in my test app: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ServiceModel; using ...
0
votes
1answer
65 views

How to define attributes to upload data to a REST web service implemented through a WCF service?

I created a WCF service, that returns some data and also allow to post some data to. The methods of the service are as below: [OperationContract] bool UploadStream(Guid key, ...
0
votes
1answer
835 views

passing collection or array type input parameter wcf service

I have written a WCf Service which has a Collection type input body parameter and another parameter as query string as following: [WebInvoke(Method = "PUT", UriTemplate = ...