Tagged Questions

2
votes
3answers
1k 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 ...
0
votes
0answers
236 views

WCF WebInvoke with query string parameters AND a post body

I'm fairly new to web services and especially WCF so bear with me. I'm writing an API that takes a couple of parameters like username, apikey and some options, but I also need to send it a string ...
0
votes
2answers
495 views

How to load data from HTTPPOST request in server side?

I have a WebInvoke method like this; [OperationContract] [WebInvoke( Method = "POST", UriTemplate = "/go", BodyStyle = WebMessageBodyStyle.Bare, RequestFormat = ...