Tagged Questions
6
votes
1answer
5k views
Accepting form fields via HTTP Post in WCF
I need to accept form data to a WCF-based service. Here's the interface:
[OperationContract]
[WebInvoke(UriTemplate = "lead/inff",
BodyStyle = WebMessageBodyStyle.WrappedRequest)]
int Inff(Stream ...
3
votes
1answer
4k views
How pass multiple body parameters in wcf rest using webinvoke method(Post or PUT)
I have written a REST Service in WCF in which I have created a method(PUT) to update a user. for this method I need to pass multiple body parameters
[WebInvoke(Method = "PUT", UriTemplate = ...
3
votes
0answers
2k views
Get client IP address for WCF, post operation
I am trying to determine the client's IP address following this link: http://www.danrigsby.com/blog/index.php/2008/05/21/get-the-clients-address-in-wcf/. I have operationContracts of WebInvoke/Post ...
2
votes
1answer
310 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]
...
2
votes
3answers
997 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
59 views
Is it possible to change the UriTemplate at runtime
I have the following WebInvoke Attribute:
[OperationContract]
[WebInvoke(
Method = "POST",
UriTemplate = "",
BodyStyle = ...
1
vote
1answer
883 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
90 views
bad request from WCF web invoke
All my GET endpoints work like a champ, but I'm trying to implement a webinvoke method="POST".
I think there is something wrong with my format, but I can't tell what it is, could someone help?
...
0
votes
1answer
95 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
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
1answer
968 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 = ...
0
votes
1answer
1k views
WCF RequestFormat for WebGet and WebInvoke
I have WCF services exposed using WebGet and WebInvoke that require the data to be wrapped in xml. I would prefer to be able to return raw data without it being wrapped in xml and also allow clients ...
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 = ...
0
votes
1answer
544 views
WebInvoke/DataContractJsonSerializer, '1,6276' cannot be parsed as 'double'
I am using WCF WebInvokeAttribute for declarative JSON requests (DataContractJsonSerializer),
with DataContractAttribute/DataMemberAttribute based serialization.
I'm using a service that supports ...