Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
2k views

WCF Web Api vs WebHttpBinding

I'm new to WCF RESTFull services developpment and I'm looking for some usefull information and your experience feedback about using webHttpBinding compared to the new WCF Web API ...
9
votes
1answer
11k views

BasicHttpBinding vs wsHttpBinding vs WebHttpBinding [closed]

I need a comparisons chart of above 3 mentioned bindings in terms of features and performance. i have seen some between ws and basic but i need web as well. Please if anyone has link to any article ...
7
votes
2answers
3k views

Limiting access to a WCF REST (webHttpBinding) Service using the ASP.NET Membership Provider?

I have found a lot of material on the web about using the ASP.NET Membership Provider with the wsHttpBindings, but I haven't seen any reference to using it with webHttpBindings. I am looking for a ...
4
votes
1answer
397 views

WCF service returns incorrect Content-Length when using gzip encoding

I have a web page containing a filtering text box and a list box. Modifications to the text box trigger an AJAX request, which returns an array of values with which to populate the list box. I had ...
4
votes
1answer
5k views

In WCF, for a webHttpBinding, how do I specify credentials in the client side web.config when the server is using basic authentication?

I have two WCF RESTful services - the "general" service is public and has no security; the "admin" service I intend to use basic authentication over SSL. This is my server side web.config: ...
4
votes
4answers
5k views

Unable to set maxReceivedMessageSize through web.config

I have now investigated the 400 - BadRequest code for the last two hours. A lot of sugestions goes towards ensuring the bindingConfiguration attribute is set correctly, and in my case, it is. Now, I ...
3
votes
1answer
362 views

Return large JSON file from AJAX Service - WCF

I have an AJAX-based WebGet method that returns JSON. It won't work with JSON results of a few thousand rows (if I take only 100 or so rows it works). I notice that the browser just stalls and nothing ...
3
votes
2answers
1k views

Is it possible to use ASP.NET MembershipProvider/RoleProvider in self-hosted WCF services?

I am trying to use custom ASP.NET MembershipProvider and RoleProvider to handle security for my service. The service is self-hosted in a console app, not in IIS. I use webHttpBinding with Basic ...
3
votes
1answer
6k views

How do you pass user credentials from WebClient to a WCF REST service?

I am trying to expose a WCT REST service and only users with valid username and password would be able to access it. The username and password are stored in a SQL database. Here is the service ...
3
votes
3answers
2k views

How to enable webHttp connection in WCF?

I am developing a solution for transfering data from android phone to the server (written in C#/.NET). I created a WCF service and testing with emulator everything worked fine. Then when I tried to ...
2
votes
1answer
436 views

WCF Rest 4.0, Dynamic Routing, and OutputCache

I'm having an issue getting OutputCaching to work with HttpContext.RewritePath for a WCF 4.0 WebHttp service. My service is localized. The idea is that you call a URL like so: ...
2
votes
2answers
434 views

Can I call a WCF service without setting content-type?

I'm trying to replace a legacy REST/plain old xml web service with a WCF one using webHttpBinding. It MUST be backwards compatible with existing clients - which currently do not send a content-type ...
2
votes
0answers
692 views

SOAP header Action was not understood

I am trying to consume a webservice in C#. Whenever i try to call the function from the web service class I am getting a "SOAP header Action was not understood".I've added web reference[not service ...
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
0answers
247 views

Does WCFStorm support calling WCF services that have JSON enabled?

We have WCF services with JSON enabled and are having issues using WCFStorm calling those services. If we turn JSON off, then we do not receive the errors. The error that we receive is below. We ...
2
votes
2answers
177 views

“Baseaddress not found”-error when deploying WCF service on GoDaddy

I'm trying to deploy a WCF-service, but I'm having dificulties getting the final bits to work. I'm not a deployment guru in any way, so please bear with me. I'm using a WebHttpBinding to make Ajax ...
2
votes
2answers
108 views

How to receive arrays through WebHttpBinding?

Will anything like [OperationContract] [WebGet] string IWannaRead(int[] ids); work? And how to form a link\url (www.example.com/service.svc?ids=1,2,3,4,5,6,7,8) for the request?
2
votes
2answers
321 views

Is it possible to create sessions (like php sessions) with C# WCF WebHttpBinding?

Is it possible to create sessions with C# WCF WebHttpBinding? (Something like like php sessions with cookies and so on)
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

WCF Call Passing a Null Parameter

I have a WebHttpBinding WCF service that I am calling. My first POST method send the object correctly, but subsequent calls to POST methods are passing null for the object. Here is my service: ...
2
votes
1answer
356 views

WCF consuming multiple possible REST responses

I've recently started reading about the WebHttpBinding usage in WCF and being able to consume REST services, however, I've been stumped on this one for a bit now. I'm writing a service that makes a ...
1
vote
1answer
246 views

How can basicHttpBinding, webHttpBinding & mexHttpBinding endpoints coexist in one WCF service

I have a WCF service (target .NET 4) and I need to expose 4 endpoints: SOAP, POX, JSON & MEX. My configuration file looks like this: <system.serviceModel> <!-- bindings --> ...
1
vote
1answer
67 views

WCF - RESTful authentication - Always getting 400 or 401 HTTP response

I am using fiddler to generate a RESTful request to a TransportCredentialOnly(Basic) service. if I include the "Authorization: Basic" line, I always get an error 400 bad request. Otherwise, if I ...
1
vote
1answer
75 views

Extracting SID using Session PID & JID

I am trying to find a way for extracting SID of a bosh session (ejabberd) using PID and JID so that I can use it in ejabberd_sm:unset_presence, I have searched everywhere but can't find a way to do ...
1
vote
2answers
203 views

Defining 'app.config' for a WCF service using WebHttpBinding

I've got a WCF service that allows the uploading of files without using a MessageContract. [OperationContract, WebInvoke(UriTemplate = "UploadFile?filename={filename}")] bool UploadFile(string ...
1
vote
2answers
181 views

Timer inside a WCF Singleton hosted in a Windows Service (over webHttpBinding) dies unexpectedly

I have a WCF service hosted in a Windows Service (running under Local System). I am running a System.Timer inside it. The Operation o1, that initializes the Timer, is declared over a http endpoint ...
1
vote
1answer
133 views

Accessing the HTTP headers from a WCF Service

I need to access the HTTP response headers that are to be returned to the client from a WCF Service. Accessing the HTTPContext is easy(through HttpContext.Current.Response), but what is the ...
1
vote
1answer
117 views

Absolute fastest way to transmit tabular data out of SQL over HTTP using WebHttpBinding

What would be the fastest way to transmit SQL tabular data over HTTP using WCF endpoints? Right now I am querying Entity Framework with ESQL and then serializing the DataTable result into a byte[] ...
1
vote
1answer
234 views

Streamed webHttpBinding is not streamed

I need create WCF REST service for uploading large files. I made endpoint as streamed webHttpBinding, but it have not became streamed. Service example: [ServiceContract] public interface IFiles { ...
1
vote
1answer
583 views

WCF ProtocolException : Bad Request 400 (related to http message size)

I am trying to pass a base64 encoded string over WCF using WebHttpBinding. I get the cryptic error 'Bad Request 400' that the server is not responding. I know its related to the size of the string ...
1
vote
1answer
170 views

Can WCF REST (WebHttpBinding) honor PROGRAMMATIC outputcache policies?

I know all about the AspNetCacheProfileAttribute. But is there any way to hook into the cache programmatically? I've tried using Response.Cache in global.asax which seems to set the correct ...
1
vote
2answers
575 views

Using WCF to create a RESTful Web Service that requires authentication and uses JSON as input/output format

I want to port an existing ASP.NET Web Service to WCF so the resulting Web Service (1) is RESTful, (2) uses JSON as its request/response format, (3) has a custom authentication mechanism. After a lot ...
1
vote
0answers
500 views

WebHttpBinding authentication ignored

I'm trying to use basic HTTP authentication with a REST service, but debugging proxy shows that no authentication headers are sent at all, they are ignored! Here is my code: ...
1
vote
1answer
568 views

WebHttpBinding not reaching the client

I created a web service for which I am trying to provide 3 endpoints with different bindings. 1. basicHttpBinding, 2. wsHttpBinding, 3. webHttpBinding When I make the service reference, I get only ...
1
vote
3answers
176 views

What should we take care of when passing json to a WCF webHTTP service?

I'm running into a lot of troubles trying to do a post request from my jQuery code passing a JSON object to my webservice method. I know this question might seem to be pointless, but I wanted to know ...
1
vote
2answers
695 views

WebHttpBinding in WCF: how to configure it the proper way?

Trying to follow this example to make it work: http://weblogs.asp.net/kiyoshi/archive/2008/10/08/wcf-using-webhttpbinding-for-rest-services.aspx Here is my App.config: <system.serviceModel> ...
1
vote
1answer
147 views

Is it possible to make a webHttpBinding WCF service to answer binary?

I implemented this contract [OperationContract] [WebGet(UriTemplate = "{parameter}", BodyStyle= WebMessageBodyStyle.Bare)] byte[] Operation(string parameter); But, when I called the implementation, ...
1
vote
4answers
486 views

WCF WebHttpBinding Testing Tool

I'm developing WCF RESTful Services and looking for a testing tool/invoker for calling these services without writing client code. Can anybody refer me to a tool for invoking RESTful services ...
0
votes
2answers
52 views

How do you configure a WCF service with two endpoints to use a different ListenUri for each endpoint?

I have a WCF Service which exposes an endpoint using the webHttpBinding and is consumed by both WPF and ASP.NET applications. Everything works great. I am now attempting to consume the service from ...
0
votes
1answer
35 views

Is there a way to grab the password using windows authentication with webhttpbinding in WCF?

I'm currently have a selfhosted WCF REST service. Using WebHttpBinding and Windows authentication, is it possible at all to get the password or do I have to use Basic authentication?
0
votes
0answers
24 views

When I use a custom validator for WCF, what is the best way to associate credentials to a user web session?

I'm looking for the best way solve this issue with retrieving credentials when using UserNamePasswordValidator. I'm currently storing my encrypted users and passwords in memory and I need them to be ...
0
votes
0answers
54 views

How can I customize the 401 Response Body? - Self-hosted WCF with Integrated Windows Authentication

I have a WCF service using WebHttpBinding that returns some basic HTML. My goal is to support both Integrated Windows Authentication and Form-based authentication. I was able to get integrated ...
0
votes
1answer
93 views

Can't add custom WebHttpBehavior: Cannot add two items with the same key

First a little bit of background: I have a REST service in WCF 4 that uses a WebHttpEndpoint. Rather than having explicit error handler in every service method, or even every service class, I'd like ...
0
votes
1answer
71 views

Consuming a WCF Duplex service inside of a RESTful service

Suppose I wanted to create a WCF WebHTTP service ("ServiceREST") that had a reference to a duplex service ("ServiceDuplex"). ServiceDuplex requires implementations of certain callback members to ...
0
votes
1answer
158 views

WCF SSL Rest based web service with basic authetication

I have a simple WCF REST based service deployed (development ofcourse) using SSL. I am trying to make it work with basic authentication but quite frankly am getting nowhere with it. IIS 6.0 REST ...
0
votes
3answers
176 views

WCF REST Service not visible in WCFTestClient

I have successfully configured 3 endpoints for my prototype service. The endpoints are basicHttpBinding, wsHttpBinding, and webHttpBinding. The only glitch I have at the moment is in the ...
0
votes
0answers
47 views

Override Date header in WCF WebHttpBinding

How do I override the "Date" header in WebHttpBinding based channels? Custom IClientMessageInspector simply ignores the "Date" header (custom headers can be set though).
0
votes
1answer
93 views

Having WCF callback only for binding that supports it

I am trying to create a WCF service, that has a webHttpBinding endpoint (for Java clients) and a netTcpBinding endpoint (for .NET clients). With the netTcpBinding endpoint I would like to be able to ...
0
votes
0answers
249 views

Azure Service Bus webHttpRelayBinding using WCF REST Template causes unnecessary aspNetCompatibilityEnabled error

I am using Azure Service Bus webHttpRelayBinding using WCF REST Template but it causes unnecessary aspNetCompatibilityEnabled error even though my service-class is correctly decorated: ...

1 2