Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
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
273 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
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 = ...
1
vote
1answer
48 views

Is it possible to change the UriTemplate at runtime

I have the following WebInvoke Attribute: [OperationContract] [WebInvoke( Method = "POST", UriTemplate = "", BodyStyle = ...
1
vote
3answers
853 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
784 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
0answers
59 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
69 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
196 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
0answers
80 views

USING GSon to send a list of objects

I'm using the GSon library to sync databases between an Android mobile client and a remote database. It's super easy for WebGets(), but I can't figure out how to send a list of object to the service. ...
0
votes
1answer
846 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
68 views

OData Client for Obj-C and Parsing Out Scalar Return Values

I can't seem to find a way for the Objective-C OData client to return the value of a web service function that just returns something simple, like an integer. For example, [WebInvoke] public Int32 ...
0
votes
0answers
181 views

WCF WebInvoke with UTF-16

I have a simple POX WCF service that has a single operation and this operation accepts a single parameter of type XElement. If I pass an xml infoset with a encoding, everything works fine. If I pass ...
0
votes
1answer
85 views

How to do ad-hoc testing of web service PUT methods?

I've written a web service and it's nice that you can just navigate to http://whatever... and see the response to GETs. Is there some nifty way I can do something similar for PUTs? (presumably ...
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
482 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
540 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 ...