The WCF Web API project allows WCF developers to expose their APIs via HTTP. Under ASP.NET MVC4, WCF Web API has become ASP.NET Web API.

learn more… | top users | synonyms

0
votes
2answers
43 views

PostAsync HttpClient error with Web Api - System.AggregateException “A task was canceled.”

I'm trying to call PostAsync method using System.Net.Http.HttpClient from the Web API. I get the following error: System.AggregateException "A task was canceled." Task: Id = 1, Status = ...
0
votes
1answer
32 views

WebAPI returning UnAuthorized if missing Header Value

Using APS.NET MVC 4 WebApi Each request must have a Header called "version" if it doesn't or the version is too low, I need to return an UnAuthorized value to the client. I'm not sure how to send ...
0
votes
1answer
72 views

System.Net.Http.HttpMethod cannot be serialized, WCF Web API

I am using the HttpClient library to create a WCF Web API. Snippet from service contract: [ServiceContract] public interface IMyService { [WebGet(UriTemplate = ...
1
vote
1answer
59 views

How to properly pass stream through rest service to retrieve its length

I'm passing the stream this way: StreamReader sr = new StreamReader(openFileDialog1.FileName); byte[] fileStream = Utility.ReadFully(sr.BaseStream); HttpWebRequest request = ...
1
vote
1answer
111 views

How to return deep serialized object (with complex type properties) in Asp.Net web api?

I have next classes: public class Event { public int Id { get; set; } public string Title { get; set; } public string Description { get; set; } public List<ImageLink> Images { get; ...
1
vote
3answers
237 views

.net web api updating model on PUT

So I'm trying to update a model. Here's how my models are set up: public class Event{ public int Id {get;set;} public string Name {get;set;} public DateTime Date {get;set;} public int ...
0
votes
1answer
89 views

Unable to throw httpResponseException

When I try to throw the below forbidden ResponseException from my controller. An exception stating "Processing of the HTTP request resulted in an exception. Please see the HTTP response returned by ...
0
votes
0answers
118 views

upload XML and image on WCF server using SOAP request in iphone sdk

I am trying to implement POST method. But my server guys not able to get image from WCF WBS. I try to use following code for that. Please anyone can help me out it that please. UIImage *myPic = ...
0
votes
0answers
41 views

How easy it would be for an asp.net web api running in mvc to be invoked externally?

I checked the answer provided in mvc-4-vs-wcf-web-api For the answer given, the WebApi does not use SOAP, it does not require a WSDL, and does not export one. You can use Hypermedia to return ...
0
votes
1answer
180 views

Convert MVC WebAPI controller to WCF service

I have to replicate a MVC4 WebAPI application but mine will just echo the data being sent to it, so I'm wondering if I should just go with a simpler WCF service, because MVC4 WebAPI application has ...
1
vote
3answers
179 views

ASP.NET Web Api Routing Customization

I have WebApi controllers that end with the "Api" suffix in their names (For ex: StudentsApiController, InstructorsApiController). I do this to easily differentiate my MVC controllers from WebApi ...
0
votes
1answer
214 views

.Net Web API SerializationException

I am writing a simple API using .Net's Web API. I have defined the following Model: public class VehicleUpdate { [Required(ErrorMessage = "DealerID Required")] public int DealerID { get; ...
21
votes
1answer
218 views

Is it necessary to close the Stream of WebInvoke method

I have a service interface with a method that has a parameter of type Stream. Should i close the stream after i have read all data from this stream or is this done by the WCF Runtime when the method ...
0
votes
0answers
46 views

How to use NETFx HttpEntityClient and TotalCount

I'm using NETFx's HttpEntityClient to interface with a WCF Web Api endpoint that supports the "X-TotalCount" header. I know that the HttpEntityClient supports the X-TotalCount header, but it seems ...
0
votes
1answer
304 views

Web service or web api for connecting a windows application to MVC 4?

After searching the entire day about what I should use, I'm not sure what option would be best for my needs so I hope someone with more experience could help me out. I have a windows forms ...
1
vote
1answer
150 views

What replaced HttpOperationHandler in WCF Web API to ASP.NET Web API

In upgrading an old project that was built using WCF Web API to now use ASP.NET Web API, I have run into a few classes that implement HttpOperationHandler<HttpRequestMessage, T>. I'm unable to ...
0
votes
1answer
246 views

Cant use FirstDispositionNameOrDefault after asp.net mvc4 WebApi beta Upgrade

I have just upgraded from WebApi beta to the latest WebApi packages from NuGet. The visual studio project I am using targets .NET 4.0 and not 4.5. I have been able to resolve all issues but one. I am ...
0
votes
1answer
451 views

Consuming Web Api's as HttpPost

Can somebody help me how to post an array of type long to a WebApi. I think I have to use PostAsync from HttpClient, but I am not sure how to put array to HttpContent. This is my controller. ...
0
votes
0answers
230 views

WCF Web API, NHibernate & AutoFac integration possible concurrency issues?

I've asked a similar question on codereview.stackexchange.com here, but I think I need to clarify a little bit. Basically I'm integrating NHibernate, AutoFac, and the ASP.NET Web API by injecting a ...
1
vote
1answer
2k views

Return either xml or json from MVC web api based on rewuest

Given the following webapiconfig; config.Routes.MapHttpRoute( name: "DefaultApi", routeTemplate: "api/{controller}/{id}", defaults: new { id = ...
0
votes
1answer
489 views

Equivalent of WCF UriTemplate in ASP.NET MVC4 WebApi

Am migrating a WebApi project (from preview version aka WCF WebApi to final release aka ASP.NET MVC4 WebApi). In WCF WebApi, uri templates were defined for all services operations, like: ...
0
votes
1answer
292 views

Migration from WCF WebApi to MVC4 Api - Registering global error handler

I am migrating a project that was developed using WebApi Preview 5 (when it was part of WCF) to the final release of WebApi (part of MVC4). There is a document describing the process but it is ...
0
votes
1answer
119 views

Wcf WebApi configuration equivalent to code

I have this configuration for a WebApi service in code that runs on Application start: var configuration = new WebApiConfiguration { Security = (uri, binding) => { binding.Mode = ...
4
votes
2answers
795 views

Minimum files needed to deploy webAPI server side

So after a great deal of research I'm starting to enhance our service server stack with a webAPI entry point. Based on this thread, and especially the last post by a member of the Digerati board, we ...
0
votes
0answers
124 views

Check for database changes and update view Asynchronusly in mvc4

I've created one jquery mobile mvc4 web application using webapi. In that application I've made chatting kind of view that check the database changes at some regular interval and render view if ...
3
votes
1answer
355 views

Convert jquery mobile mvc4 web application to phonegap

I've created one Jquery mobile mvc4 web application using webapi support, which is well looking site in almost all mobile device as well. but now i want to convert this MVC application to phonegap to ...
0
votes
2answers
728 views

DELETE method .NET WebAPI does not work

I've seen tons of posts about this, but the DELETE method of my new WebAPI simply does not work and returns a 404, using Windows 7 32-bit, IIS 7.5. I've tried Uninstalling WebDAV Adding PUT, ...
0
votes
1answer
340 views

asp.net mvc 3 upload file maximum size

I am trying to upload large files using ASP .Net Web API controller I am able to upload until 2 GB. But for more than 2GB I am unable to upload. is this a limitation of Web api controller and asp ...
2
votes
1answer
183 views

CORS/JSONP with WebAPI Security woes

I'm wondering if there's anyone out there with a simplified resolution for my scenario, I'm out of ideas now. I have a WebAPI service, which I want to be on another domain than my site calling it. ...
1
vote
0answers
154 views

WCF 4.5, WebAPI, or a mix of the two?

Here's my scenario: I'm using .NET 4.5 and creating a WCF Service that will expose sensitive data and will require a username/password to access. Now, I'd like that service to be able to return JSONP ...
0
votes
0answers
124 views

which is the best security option for web api, applicable to Membership Provider of ASP?

I am a rookie programmer in ASP.NET, I have a project on MVC 4.0 Web Aplication with Membership Provider .also I have the version for cell phone that uses the same core, I then thought of one to ...
8
votes
4answers
2k views

Web API model binding

Given the ASP.NET Web API route: example/{Id} Which maps to the following ApiController action method: public void Example(Model m) { ... } With the model class defined as: public class ...
0
votes
0answers
78 views

Does anyone have an example of exposing a .net workflow through webapi restful services? [closed]

I'm looking for an example of a exposing a .net workflow through webapi restful services?
4
votes
2answers
910 views

ASP.NET MVC 4 - Can I have both a Controller and an ApiController for the same thing?

I've just started to use the VS 2012 RC, and I'm creating an ASP.NET MVC 4 web application in which I plan to provide both an HTML-based user interface and a WebApi-based programming interface. For ...
0
votes
1answer
157 views

Web API without using ApiController

I'd like to use new MS Web API without having to inherit from ApiController Ideally I'd like to create separate classes that handle only one HTTP Method and Route. For example: // Handles GET ...
6
votes
2answers
1k views

ASP.NET WebApi SelfHost service fails on HTTP URL registration

I am trying to host an ASP.NET WebApi endpoint on an Azure worker role using the new Microsoft.AspNet.WebApi.SelfHost NuGet package. My worker's Run() code looks roughly like this: // Endpoint is ...
1
vote
2answers
365 views

Removing headers from the response

I need to cloak certain headers generated by ASP.NET and IIS and returned in the responses from a ASP.NET WebAPI service. The headers I need to cloak are: Server X-AspNet-Version X-AspNetMvc-Version ...
0
votes
0answers
210 views

HttpContext.Current.Items being stepped on? Data scoped in a request

I'm working on a REST API built with WCF WebApi Preview 6. This is for a multi-tenant application and consumed by different clients (web and mobile applications). There are certain resources on this ...
3
votes
2answers
1k views

Self-hosting WebAPI application referencing controller from different assembly

I came across this gem, which seemed to be close to what I wanted. However, I want to use the already-written controllers from a referenced assembly. My first crack was to reference the assembly, ...
3
votes
1answer
271 views

Asp.net Web API self host service unhandled exception when client drops connection

I'm using web api self host inside a windows service and I've encountered a problem and after googling for couple of hours haven't found a reasonable answer. One of the api controllers serves large ...
1
vote
1answer
291 views

some problems about asp.net webAPI

I'm now building a App that use asp.net webAPI on the server side,I got a problem about the validation: I want to provide my webAPI for multi-platform,just like browser's javascript,or windows phone ...
1
vote
2answers
6k views

Ajax Post: 405 Method Not Allowed

Within my API Controller called Payment, I have the following method: [HttpPost] public HttpResponseMessage Charge(Payment payment) { var processedPayment = _paymentProcessor.Charge(payment); ...
20
votes
4answers
7k views

ASP.NET Web API binding with ninject

I have just installed the mvc4 rc update and I am trying to build an api application with little luck. I am using ninject but cant get my controllers to load. I keep getting an error Type ...
4
votes
1answer
420 views

Stubbing or Mocking ASP.NET Web API HttpClient

I am using the new Web API bits in a project, and I have found that I cannot use the normal HttpMessageRequest, as I need to add client certificates to the request. As a result, I am using the ...
2
votes
2answers
372 views

How do you return a custom 503 message?

I have a service implemented in MVC4 / ASP.NET Web Api. I would like to return a custom 503 message to my clients when the system is down for maintenance. I have the following code: public ...
4
votes
2answers
648 views

Returning IQueryable but need Raven stats to insert TotalResults header

I have a WebApi method which returns an IQueryable of RavenDB documents. The caller needs to know the number of possible results (because the actual results are limited/paged). So, I have something ...
3
votes
2answers
3k views

How do I handle JSONP with WebAPI? [duplicate]

Possible Duplicate: JSONP with MVC 4 WebApi I have a get method for my WebAPI which is as follows: private T Get<T>(string uri) { T result = default(T); bool ...
0
votes
2answers
3k views

Integrating Castle Windsor in ASP.NET MVC 4 WebApi

In WebApi 0.5.0, I would just define a new WebApiConfiguration, and register the CreateInstance method - this appears to have gone away in WebApi 4 (the current version that comes with ASP.net MVC 4). ...
8
votes
3answers
3k views

Unable to authenticate to ASP.NET Web Api service with HttpClient

I have an ASP.NET Web API service that runs on a web server with Windows Authentication enabled. I have a client site built on MVC4 that runs in a different site on the same web server that uses the ...
1
vote
1answer
287 views

Custom authorization using WEB API

I've implmented an service using MVC WEB API and i implemented a custom way to authenticate the requests. this is how it looks like: public HttpResponseMessage GetTest() { try { ...

1 2 3 4 5