ASP.NET Web API is a framework for building HTTP services for clients like browsers and mobile devices. It is based on the Microsoft .NET Framework and ideal choice for building RESTful services.
0
votes
1answer
14 views
DataAnnotation for Required property - Why is it required for asp.net webapi?
I read through these posts
DataAnnotation for Required property
http://forums.asp.net/t/1835627.aspx/1
and I understand it has something to do with xml and not supporting required but I don't get ...
0
votes
0answers
10 views
Connecting to WebApi project on localhost with Windows Phone 8 app in the emulator
I’m currently coding a WP8 app that pulls it’s data from a cloud based database. This is exposed through entity framework using webapi.
In my solution I have the WP8 app and and webapi project, while ...
0
votes
0answers
16 views
Can the ASP.net MVC MediaTypeFormatter for multipart/form-data and HttpPostedFileWrapper be used for a WebAPI?
I tried to port a file upload action method from a regular MVC 4 application to a WebApi action method. The regular MVC action signature was more or less like this:
[HttpPost]
public ActionResult ...
0
votes
1answer
16 views
SqlLite 3 - “Unable to open database”
I have created a SqlLite 3 db file and placed in my project's App_Data folder (ASP.Net Web API). I can't seem to connect to it. The exception message is vague and I cannot determine what is wrong. ...
0
votes
1answer
34 views
disable default validation in Asp.Net WebAPI
I want to completely disable model validation for WebAPI controllers. I tried a few ways to do it for MVC, but seems WebAPI doesn't get that methods.
In my case:
custom formatter creates and ...
0
votes
1answer
24 views
Can't get Odata service configured correctly
I can't seem to get my Controller and Mappings configured correctly. I am able to connect just fine if I revert to a standard ApiController and default mapping, but can't connect using the ...
0
votes
1answer
22 views
DateTime Json Return From WebAPI with Default Serializer
I know this question has been hashed over multiple times and I read lots of posts on that hashing but still am confused.
Using MVC4/WebAPI, I have a datetime that is simply created as new ...
0
votes
2answers
20 views
what is HttpRequestMessage equivalent in .NET 4.0
in .net 4.5 I am using HttpRequestMessage
public HttpResponseMessage Post(HttpRequestMessage request, TourCreateRequest tourCreateRequest)
What can I use for .NET 4.0 that I can use similarly to ...
0
votes
1answer
11 views
How to run XUnit test on both self-host & production webapi service?
I'd like to write a test for my ASP.NET WebApi service and run it against a self-hosted service and the live web hosted service. I imagine that this can be done with a test fixture, but I'm not sure ...
0
votes
0answers
13 views
Http Basic Authentication with session identifier
I’m using Http Basic Authentication for my API access from a mobile application. Unfortunately I need to keep state internally. As the state is per session I can’t use username/password as the state ...
4
votes
1answer
33 views
Web Api shared DTOs
I am building a few mvc 4.0 web api services on an internal network. I have come from a WCF WSHttp background where we shared common DTOs and a contract between the Service and the client.
With web ...
0
votes
1answer
15 views
Modify HttpContent (actionExecutedContext.Response.Content) in OnActionExecuted method of WebApi's ActionFilterAttribute
My WebApi action method returns an IQueryable and I want to modify it (apply paging & filtering) through an ActionFilterAttribute in Asp.Net WebApi(Not MVC).
The following thread I got how to ...
0
votes
1answer
37 views
Why does my accept header keep getting changed from application/json to */*
I'm trying to send an ajax request to a WebAPI service with the accept header of 'application/json'
when I set a break point in the service, I see that the accept header is coming through as "/". ...
0
votes
1answer
17 views
CORS with webapi asp.net and OData using breeze
i have a project in which i have enabled CORS
HttpContext.Current.Response.AddHeader("Access-Control-Allow-Origin", "http://localhost:63736");
...
0
votes
1answer
18 views
Hosting ASP.net web api (odatacontroller) inside silverlight site
I want to expose some odata resources from my silverlight site. WCF data services doesn't provide the features I need so I need to use ASP.NET web api instead.
Is it possible to host such ASP.Net web ...
1
vote
2answers
29 views
Role Provider / Membership? How to in asp.net web api?
I am building an asp.net mvc web api application and not sure how to do the membership stuff.
In my current project I have this
My own Users Table and Role Table I am not using asp.net membership as ...
0
votes
1answer
32 views
POST NameValueCollection to Web API using WebClient.UploadValues for .NET 3.5
I have created a Web API that serves up PDF documents. I have a 4.5/4.0 client, a Javascript-only client, and I'm now attempting to create a .NET 3.5 client for a few older websites that we have. I ...
0
votes
1answer
43 views
jQuery 2.0 + ASP.NET WebApi POST empty response = fail
I'm using ASP.NET WebApi to build my REST services. In many cases, I only need to return a 200 OK message (with no body). The response typically looks like (it's a POST):
return ...
0
votes
1answer
30 views
Getting the “no type was found that matches the controller named” error message during Ajax Request
I've seen a lot of topics about this, but unfortunately I believe that each case is a different case (or most of them), and I really would love some experts opinion about my case in particular since I ...
0
votes
1answer
56 views
How to access the current HttpRequestMessage object globally?
I have a method which creates an HttpResponseMessage containing an Error object which will be returned based on the current request media type formatter.
Currently, I have hardcoded the ...
0
votes
1answer
26 views
Does WebApi's async context trickle down to libraries using TaskParallel?
I have a .NET library that uses ParallelQueryable and Parallel.ForEach internally to parallelize calculations.
Now, that library is being consumed by a WebApi application. I know that WebApi uses an ...
1
vote
1answer
36 views
How to know when Web API Routing Engine Doesn't Find a Matching Service?
I'd like to log the requests to my Web API application that results in 404 (which means the routing engine couldn't find a matching service).
How would that be possible?
For example, if I have the ...
0
votes
2answers
44 views
WebAPI POST [FromBody] not binding
I'm posting JSON to a WebAPI controller, but the properties on the model are not being bound.
public void Post([FromBody] Models.Users.User model) {
throw new Exception(model.Id.ToString());
}
...
0
votes
1answer
32 views
Looking for recommendations on using a logging module for WebAPI [closed]
I'm looking for recommendations on using a logging module for WebAPI.
Log4Net seems to be the staple logging library, but I've heard ELMAH is great as well.
For those of you who are actively building ...
0
votes
1answer
28 views
How to ignore Data Contracts for Json?
I am using asp.net web api and returning my data like this
return Request.CreateResponse<ResponseResult<ProductSearchDto>>(product.Status.Code, product);
This returned nasty and long ...
0
votes
1answer
20 views
WebApi ApiExplorer ApiExplorerSettingsAttribute and IgnoreApi for Action Parameters
You can decorate a controller or action method with the ApiExplorerSettingsAttribute setting the IgnoreApi property to NOT generate help info. If you try to apply the same to an action method's ...
0
votes
1answer
20 views
Allow images in AtomPub ASPNET Web Api Server
I'm trying to create an Atompub service with ASP.NET WEB API, all it's ok but when I try to post any image from Windows Live Writer I get an error "The blog doesn't allow the image load" I'm reading ...
1
vote
2answers
30 views
Can I use ServiceStack web service with .net 3.5
Can I use ServiceStack web service with .net framework 3.5 web forms?
Can I have a small example because I've tried to go through ...
0
votes
1answer
39 views
ASP.NET WEB API, unwanted parameters in request
I'm using asp.net web api. I have a method in UserController which receives POST-requests:void Post([FromBoby] UserInfo userInfo)
I have a model UserInfo with fields: Login, Name.
I can post json: ...
10
votes
1answer
110 views
Why is an “await Task.Yield()” required for Thread.CurrentPrincipal to flow correctly?
The code below was added to a freshly created Visual Studio 2012 .NET 4.5 WebAPI project.
I'm trying to assign both HttpContext.Current.User and Thread.CurrentPrincipal in an asynchronous method. The ...
1
vote
1answer
32 views
How can I view the request body in ASP.NET Web API from Visual Studio?
How can I view the request body in ASP.NET Web API from Visual Studio? In ASP.NET MVC, you can use QuickWatch to inspect the Request object and view the content of the body and any posted form data. ...
2
votes
2answers
35 views
oData $count doesn't work with EntitySetController<TEntity, TKey> in web api 4
I'm useing EntitySetController to create an oData web api controller, and everything works well, except to get the total records count.
THe controller is defined as below:
public class ...
0
votes
3answers
50 views
Get User Name on Action Filter (WebAPI)
I use MVC4 web application with WebAPI. I want to create an action filter, and I want to know which user (a logged-in user) made the action. How can I do it?
public class ModelActionLog : ...
0
votes
2answers
54 views
Asp.net MVC4 Web API XML serialization ignores public properties
I'm using asp.net mvc4 web api. I've got some classes generated by Devart Entity Developer and they have following structure:
[Serializable]
[XmlRoot("Test")]
[JsonObject(MemberSerialization.OptIn)]
...
0
votes
3answers
69 views
Controller action “Index” not invoked with default setting
I have a ASP.NET web application project, I implemented a WebApi controller and now proceeding with a MVC controller.
I've added a new MVC controller (eg. "Test") and selected to add it with "empty ...
0
votes
0answers
42 views
Entities framework validation
I am developring .net mvc web api application using entities framework and I have business rules to I want to enforce for validation.
I saw that I can implement IValidatableObject but is not good ...
1
vote
1answer
23 views
ActionFilter is not executing in WebApplication but executing in WebApi
I have created an ActionFilterAttribute
public class LoggingNHibernateSessionAttribute : ActionFilterAttribute
The purpose of the filter as name indicates is logging and opens and commits a ...
0
votes
0answers
31 views
How can i sync an async call to my webapi?
When i'm using the HttpClient.GetAsync method, i've made an async call.
The problem is my web api which make some validations, but if i shot a lot of calls at same time, the validation fails. When the ...
1
vote
1answer
37 views
LifetimeScoping error in WebApi self hosted app and SimpleInjector as IoC
I read these (+ , + , + and + ) pages, but I connot figure out what should I do.
I have this simple interface and concrete type:
public interface IIdentifierGenerator {
long Generate(Type type);
...
2
votes
1answer
52 views
Adding message handler on the fly
I have four message handlers - MyHandler, MyHandler1, MyHandler2 and MyOtherHandler. I have MyHandler and MyOtherHandler added to the handlers collection, but not MyHandler1 or MyHandler2.
...
0
votes
0answers
50 views
Error 404 using asp.net web api
I've got 2 projects: Core and Web.
Core project has API controllers, models, etc. Web project has html pages only.
I'm loading data from API using jQuery. When I do this exactly from Core project ...
0
votes
0answers
16 views
Tests connecting to WebAPI project when I “Debug”, but not when I “Run”
I have a WebAPI project in a Solution that includes a test that runs againt some WebAPI endpoints.
If I open up my solution and run the test, it fails because the first request to my WebAPI times ...
0
votes
0answers
27 views
Self Hosted Web API Authentication
I have a self hosted Web API running, which using DotNetOpenAuth to issue authorization tokens. Basically, the project consists of 2 ApiController endpoints (Authorize and Token). I would like to ...
0
votes
0answers
53 views
ASP.NET MVC Web Api 4.5 Session state
I found solutions to add Session State for web api 4.0. But I have not found one for 4.5.
Could some one point how to accomplish this?
0
votes
0answers
31 views
kendo-ui grid serverfiltering column filtering dropdownlist
I am trying to get the kendoui grid to support filtering with a dropdownlist as the filter. I want users to be able to pick from a list of all available options, rather than requiring them to type in ...
1
vote
1answer
50 views
POSTing from Angular to .net WebAPI
I'm using an Angular $resource to post a model to a webapi endpoint, but Angular sends the data in the request payload, rather than a JSON body or form parameters. As a result, the model always ends ...
1
vote
2answers
59 views
Is Web Service in ASP.NET obsolete? What to use with ASP.NET 4.0?
I have to write a simple Web Service application in ASP.NET. I read somewhere that Web Services is now obsolete and some new technologies like WCF is there.
But as the name suggests, Windows ...
0
votes
2answers
53 views
Calling a specific method in my Web API controller
So I'm trying to make a call to this specific method:
[HttpGet]
public int GetLogin(string u, string p)
{
UserLogin uL = new UserLogin();
return (int)uL.Authenticate(u, p);
}
However it ...
0
votes
0answers
28 views
ASP.NET MVC 4: BeginRouteForm doesn't work with API routes?
I have a form I'm trying to create with relatively simple code:
@using (Ajax.BeginRouteForm("DefaultApi", new { controller = "persons" }, new AjaxOptions {HttpMethod = "post", OnSuccess = ...
1
vote
0answers
31 views
Asp.Net WebAPI routes fail on Azure compute emulator
Context
I have two asp.net mvc 4 apps, one is a standard CRUD-style app derived from the Visual Studio 2010 Internet App project template, the second comes from the Web API template, and is intended ...
