Tagged Questions
The wcf-rest tag has no wiki summary.
11
votes
3answers
880 views
RESTful services: WCF versus ASP.NET MVC
A very common approach to implementing RESTful services is by utilizing ASP.NET MVC to do so over WCF.
ASP.NET MVC has excellent RESTful support by via flexible URL routing and flexible HTTP Method ...
6
votes
3answers
692 views
WCF 4.0 REST username password authentication
I have been struggling with username/password authentication/authorization in a WCF 4.0 RESTfull service using the ASP.Net membership/role providers.
Having spent two days trying to find something ...
6
votes
2answers
478 views
CORS Support within WCF REST Services
I have a WCF REST service hosted within a Windows service and I would like to send the Access-Control-Allow-Origin HTTP header (defined as part of CORS) with every response.
My attempted solution ...
5
votes
1answer
2k views
Access HttpContext inside WCF RequestInterceptor
I am using the WCF REST stater kit to build a plain xml over HTTP service. As part of this Im using a RequestInterceptor to do authentication. Inside of the RequestInterceptor I have access to a ...
4
votes
1answer
114 views
Communicating between 2008 SQL Server DB and Android App
I've been doing a lot of reading about this subject and I am now of the conclusion that to communicate between a 2008 SQL Server database and an Android application, I need to create a RESTful Service ...
4
votes
2answers
2k views
HttpClient & HttpResponseMessage missing in VS 2010 - its for consume REST services
does anyone know if HttpClient & HttpResponseMessage classes are available in VS 2010? I can't seem to get them to work, do i need to add a reference or using namespace?
These classes were ...
3
votes
2answers
57 views
WCF REST Service: How to make query parameters required and return HTTP 400 on wrong values?
1. Required parameter
In the following example URI definition
[WebGet(UriTemplate = "GetData?value={value}")]
[OperationContract]
string GetData(int value);
{
return string.Format("You entered: ...
3
votes
2answers
88 views
azure architecture - handling security
Planning to migrate our existing application to Azure.
Our existing architecture with security flow is as follows
ASP MVC 3.0 UI layer that takes user name password from the user
We are planning ...
3
votes
1answer
175 views
How to enable GZip compression in a self-hosted RESTful WCF webservice?
I have a RESTful WCF web service written in C# using .NET 4.0, and I'd like the responses to be compressed using GZip or deflate. (I might need to support compression for requests too, but that is not ...
3
votes
2answers
2k views
wcf REST Services and JQuery Ajax Post: Method not allowed
Anyone knows what's wrong with this? I cant get the json response from my wcf rest service.
Jquery
$.ajax({
type: 'POST',
url: "http://localhost:8090/UserService/ValidateUser",
data: ...
3
votes
1answer
196 views
Why use WCF REST when you have JsonResult in ASP.NET MVC?
I'm building an ASP.NET MVC application and still consider myself new to ASP.NET MVC. I come from a WCF REST background, so I initially set up a number of services that my jQuery-based client would ...
3
votes
3answers
1k views
Transaction in REST WCF service
We are having a REST WCF service.
we want the save operation on this REST service to be in transaction.
Is there a way to pass Transaction object over the wire to REST WCF service?
2
votes
2answers
78 views
Async REST Services using WCF WebApi
I want to know what is the opinion of you fellow Developers regarding WCF WebApi services.
In an N-tier application we can have multiple layers of services. We can have services consuming data from ...
2
votes
1answer
54 views
RESTful service issue
I am new in RESTful and WCF services and I'm making a RESTful with a JSON message format. When I run this service it gives no response.
This is my code:
[ServiceContract]
public interface IPersonas
...
2
votes
1answer
167 views
Requiring SSL certificates and client certificates throws exception in WCF JSON service
I have a simple WCF service setup that uses JSON. In this service I want to use client authentication with a client certificate. I've configured IIS 6 to require SSL and to require client certificates ...
2
votes
2answers
52 views
In Wcf REST, is it better to return larger models with less requests, or smaller models with more requests
I have an SOA app, and have started to run into some performance issues.
I have models coming OUT of REST that look similar to...
public class Person
{
public Guid Id { get; set; }
public ...
2
votes
0answers
42 views
A very strange behavior of service stack
I am currently working on azure platform to get performance data in my application.
My client needs to attach my console application which fetches data in there webrole startup task and it works for ...
2
votes
1answer
61 views
SOAP headers in WCF REST error
I have that error :
Operation 'GetFields' in contract 'IService' uses a MessageContract that has SOAP headers. SOAP headers are not supported by the None MessageVersion.
The problem is that my ...
2
votes
1answer
95 views
Android gson deserialization into list
I am trying to parse a json string into a list, or arraylist. I have the following json response coming from a WCF RESTful service I created for an Android project
[
{
"Class": "Lorem",
...
2
votes
0answers
103 views
How does the client pass parameter to a RESTful WCF Service
I am building a RESTful service as below with 2 methods (NOTE: I have the ASPNETCompatilibilityMode set to true):
[WebInvoke]
string TestMethodA()
{
string test = ...
2
votes
4answers
145 views
WCF REST is not returning a Vary response header when media type is negotiated
I have a simple WCF REST service:
[ServiceContract]
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Required)]
[ServiceBehavior(InstanceContextMode = ...
2
votes
1answer
59 views
Override Output Caching duration for Client caching
I have a REST based WCF service which returns JSON data as response. To improve performance Output Caching is enabled with location as ANY and duration 1 hr.
I want to allow clients to cache the ...
2
votes
1answer
94 views
Cannot upload more than 64kb to WCF REST Service from client
I have created a WCF REST Service and have successfully created a function to upload a file from the client to the service.
The problem is, this only works when the file being sent is 64kb or less. ...
2
votes
1answer
357 views
WCF + REST, Increase MaxStringContentLength
We are running into the following error:
There was an error deserializing the object of type
Project.ModelType. The maximum string content length quota (8192) has
been exceeded while reading ...
2
votes
1answer
174 views
Customize the WebHttp Help Output in WCF
For a service with webHttpBinding and helpEnabled="true", the help information is getting generated properly. Was wondering if it is possible to control the output somehow. Below are the changes I ...
2
votes
4answers
98 views
Confused about Http verbs
I get confused when and why should you use specific verbs in REST?
I know basic things like:
Get -> for retrieval
Post -> adding new entity
PUT -> updating
Delete -> for deleting
These ...
2
votes
1answer
536 views
How to enable basic authentication on WCF 4.0 REST Service?
First of all there are plenty of articles on the net for this but most of them are for WCF 3.5. I'm using some features of WCF 4.0 which makes the scenario a bit different.
Following is my contract:
...
2
votes
1answer
590 views
How does WCF WebApi map a request URI to the appropriate service type / operation?
How does WCF REST (and WCF WebApi) map a Uri to the correct service endpoint?
Within the context of WCF WebApi Preview 4:
Inside a custom delegating channel, I would like to find the associated route ...
2
votes
4answers
600 views
Create a WCF Proxy for a Rest Web Service
I have a complex WCF Rest service which take multiple inputs and objects. I cannot simply call it by doing an HTTP POST in Fiddler because there is too much data to provide (I could, but it will take ...
2
votes
1answer
359 views
WCF WebHttpServiceHostFactory vs. WebServiceHostFactory
What is the difference between WCF's WebHttpServiceHostFactory and WebServiceHostFactoryhosting?
2
votes
0answers
473 views
Passing a cookie to a wcf service
I have a bunch of wcf webhttp (rest) services that expect an auth cookie. Question is - How do I pass the formsauth ticket to the wcf service? Flowing authentication works for get requests through the ...
2
votes
1answer
154 views
WCF reliability issues
Trying to test the reliability of my wcf services. I am calling a wcf service within a loop from the client side. The wcf rest service (webhttpbinding) does some data processing and inserts
records ...
2
votes
1answer
277 views
WCF Rest Service Hosting on 2003 With POST / JSON
As I am getting Problem while hosting WCF Service on Win 2003 Server.
As it is working fine in my local PC.
Please let me now if I need to do any changes in Web Config. File. for the same.
Server ...
2
votes
1answer
434 views
Hosting WCF Web Serveic on Windows Server 2003
Getting the following err...
Server Error in '/' Application. IIS
specified authentication schemes
'IntegratedWindowsAuthentication,
Anonymous', but the binding only
supports ...
2
votes
1answer
297 views
WCF rest security question
I have a WCF REST service. Now the question is how can I secure my REST service so no one can use/call it? and what would be the best way to call it (e.g. using jquery, or from code behind)? the ...
2
votes
1answer
411 views
ASP.NET 4 WCF RESTful Service
I was wondering about the possibility of two things:
Is it possible to use a WCF Data Service to expose "collections" that do not exist in the Entity Model (EDMX) that it is mapped to? Would this ...
2
votes
0answers
187 views
WCF REST Uri on Help page is not Correct
Been writing my first WCF Rest service and its going well... but i have a small issue, can anyone help?
When i goto my help page which on local pc is like so
http://localhost/WcfRestService1/help
...
2
votes
4answers
518 views
How to create a RESTful web service in asp.net?
I simply want to create a fairly basic REST service, so that I can expose some of the data in my asp.net/SQL server application to the outside works, like this.....
http://domain.com/api/offices - ...
2
votes
1answer
824 views
WcfRestContrib: Is there any example of using a WCF REST service (with basic authentication) from a desktop client
Is there any example of using a WCF REST service with basic HTTP authentication from a desktop client?
I am using WCF REST Contrib. and authentication works fine when a use a javascript client from ...
2
votes
1answer
1k views
Pass a JSON array to a WCF web service
I am trying to pass a JSON array to a WCF service. But it doesn't seem to work. I actually pulled an array [GetStudents] out the service and sent the exact same array back to the service ...
2
votes
2answers
439 views
How to consume RESTful webservices with WCF?
Is that better to use WCF REST Starter Kit for consuming web services (REST) with WCF (by using HTTPClient) or do it directly with WCF ?
It seems that WCF REST Starter kit won't be available for .NET ...
2
votes
2answers
248 views
How do I get a DataMemberAttribute use a boolean type
I have a simple test app that pulls an xml doc from a rest interface. The data element has a couple of string fields and a couple of boolean fields. I creates a simple entity class and put a ...
2
votes
1answer
496 views
Error when trying to create json web service in asp.net
I followed this to create a json web service in asp.net 3.5:
http://www.pluralsight.com/community/blogs/fritz/archive/2008/01/31/50121.aspx
It works fine if I want to use it internal but as I want ...
1
vote
1answer
47 views
How to pass the current windows credential to a WCF REST service from a Windows 8 Native app made using JS?
I am trying to call a WCF REST service from my windows 8 app and I'm always prompted for the credential. I have Default Windows Credentials activated in the package manifest and am looking for the ...
1
vote
0answers
50 views
Kendo Grid Inline Editing
I am attempting to build a Restful service that will allow me to do inline editing with the Kendo UI Grid.
I am unfamiliar with both Kendo UI and Restful services, so I don't know where to begin.
I ...
1
vote
1answer
27 views
WCF 3.5 REST - Data member having \r\n replaced with \n
My RESTful WCF 3.5 service accepts an XmlSerialized (as opposed to DataContract serialized) data object which contains a freeform string field.
The client I wrote (which uses HttpWebRequest / ...
1
vote
1answer
61 views
WCF REST 404 when trying GET
I keep getting a 404 on a very basic WCF service that I want to expose via REST - I'm trying to access it by going to this URL when debugging:
http://localhost:62888/Service1.svc/xml/data/test
I can ...
1
vote
2answers
59 views
Android uploading file as ByteArray to WCF REST services
I need to send a byte arrray file using WCF rest services. I have to send the data using HttpPost method in android. The code which i am using give the status as HTTP/1.1 400 Bad Request error.
...
1
vote
1answer
48 views
Ignore content type for specific WCF OperationContracts
I have a WCF REST Service that primarily sends and receives JSON.
In general, I'm okay with using the DataContractJsonSerializer, but for some objects that are passed in as parameters to the ...
1
vote
2answers
74 views
Inheriting WCF REST operations
I'm playing around with WCF REST on .NET 4.0, and I ended up wanting to find out if the following idea is somehow possible to implement?
I have a very basic set of POCOs against an EF 4.1 CF project. ...