Software systems to support machine-to-machine interaction over the Web, typically using HTTP requests according to REST principles
0
votes
0answers
20 views
Unable to store in Session - Null reference
I have been toying with this for the better part of a week before posting, and have gone through countless threads and attempts to figure out why my HttpContext.Current.Session = null.
Basically I ...
0
votes
1answer
40 views
Adding filtering to Angular Web API data
I have managed to return data from Web API that can be displayed using Angular. But now I need to be able to filter that data. I have created a directive that passes the parameter that I want to ...
1
vote
1answer
22 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
7 views
Web API: QueryString model binding rules with DataAnnotations
I'm becoming quite confused about how model binding, and specifically model validation occurs in Web API. The majority of my actions receive objects through POST requests, and my models have a ...
1
vote
1answer
35 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);
...
0
votes
0answers
18 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
votes
0answers
10 views
Royal mail (UK) tracking api [closed]
i been searching the web to check whether Royal mail has an API interface for tracking the parcel status using reference no, but couldn't find any. there is a previous qn here but couple of years old. ...
0
votes
1answer
21 views
Redirecting route in ASP.NET WebAPI
This is ok:
GlobalConfiguration.Configuration.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{action}",
defaults: new { id = ...
1
vote
2answers
35 views
Implementing OData with WebApi and Mapped Models
I am trying to implement OData in WebApi. I am using the repository pattern and EF5 (in the backend) which is still consistent with all the examples I have found. Here is where thing go wonky. I am ...
0
votes
3answers
43 views
Web API - Simple Post model with collection property is not binding
// Server-side Model to bind
public class CurrentPipelineRequest
{
public List<string> Usernames { get; set; }
}
// Controller
[HttpPost]
public HttpResponseMessage ...
1
vote
0answers
44 views
Spotify Web API, 504/502 Server Error
I'm always getting nginx "504 Gateway Timeout"/"502 Bad Gateway" for Spotify API Requests (example http://ws.spotify.com/search/1/album?q=foo).
Documentation: ...
0
votes
0answers
19 views
How call WebAPi in phonegap?
I am calling Web API by using Datajs and it is working in each browser but when i am calling this by Phonegap then i am getting error
Http Request failed.
function DefaultHandler() {
var ...
0
votes
0answers
13 views
Web API: ActionFilter that executes before entire request is received
I'm building a web service in Web API, and one of the actions receives very large files. They're video files, typically between 100-200mb. This means that the upload times will be long.
I have ...
0
votes
0answers
15 views
connecting JSONP to input field
I've a JSONP file which I want to connect to an input, like an autocomplete, but what's wrong with this code? I also want to add the value of the input at the end of the url, because it is actually a ...
3
votes
1answer
43 views
how to save a password at login
I have an web-api whith a login.
If I click login the browser don't ask to save the password.
How to make the browser asking?
my current HTML
<div class="LogInFelder">
<p ...
0
votes
0answers
21 views
Web API accessible only from server
I have a web api site deployed. It's purpose is to provide a pdf file based on an id.
For e.g. a request would be:
myDomain/getPdf/45
When i make the request from a browser on the server, it works. ...
0
votes
1answer
33 views
Entity version in odata using accept header in web api
I am using Web API to create RESTful services. I decided to using Accept header as a api versioning mechanism by following this implementation.
...
1
vote
3answers
43 views
Is it possible to use ASP.NET application caching in web API?
For example, in a ASP.NET page you would do something like
Cache.Add({...}) and access it via Cache["key"]. In this context, Cache is the System.Web.Caching.Cache object.
Is there anyway to do this ...
0
votes
1answer
20 views
access Web API from windows web service
I am developing a Windows service to run maintenance tasks on our customer's servers which returns results to a web service running in our headquarters.
I ran into the Web API as a new and simple ...
0
votes
1answer
41 views
Handling calculated properties with breezejs and web api
I'm experimenting with BreezeJS with Web API using the BreezeControllerAttribute. How should calculated properties on an entity be exposed? The only way I've found to do this reliably is to create an ...
0
votes
0answers
21 views
SignalR Authentication and Authorization
I'm working on a single page web application based on Durandal and SignalR and want to add some authorization functionality.
My current solution is to simply have a Guid Authenticate(string user, ...
0
votes
0answers
11 views
Web Api User.Identity.Name
Another question from me, yay!
Ok, so I have this code:
public class TokenMessageHandler : DelegatingHandler
{
protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage ...
1
vote
2answers
30 views
Exposing domain logic in webapi
So in REST I have a product resource...
http://api/product
Question is what if I've got some domain logic? In an Object Oriented world, I might have
public class product
{
int id;
public ...
0
votes
1answer
73 views
Why doesn't my oData response have navigation properties
If you look at the following sample oData feed you'll see included navigation properties for 'child' items to tell you which URL to follow:
...
5
votes
1answer
43 views
How Public APIs Manage the Loads?
We have a Web API Service with 10 different web methods which return some data whose size could be like 15MB.
The clients may call 1000 calls per minute to the service which may take down the ...
0
votes
1answer
33 views
How to modify the default allowed response size settings for a Web API Application?
I have a Web API method that returns a list of Events:
public HttpResponseMessage GetEvents()
{
...
}
My Service supports both Xml and JSON responses using DataContractSerializer (for xml) and ...
0
votes
0answers
82 views
Web API Entity Framework Unit Of Work & Repository with Stored Procedures
I have a Generic Repository and UoW that I modeled after Honorable Mr. Dykstra's biblical account: ...
0
votes
1answer
35 views
How to retrieve a route template variable given the HttpRequestMessage?
I have two API controllers located in two different folders which has GetEvents() action:
V1
EventsController
V2
EventsController
I'd like to be able to access the controllers using:
...
1
vote
1answer
91 views
Executing a Stored Procedure from C# 4.0 without a dbml file
I am trying to create a dynamic stored procedure caller function (that would be setup as an endpoint in a .NET 4.0 WebApi Service).
Here are the facts:
I know I'm always going to be calling a ...
0
votes
0answers
56 views
Exposing A Razor View Via Web api ( mixing mvc and web api)
I have a small web api project and i would like to expose a couple of razor views from that project ( id rather do that then add another mvc project and so on..).
I havent found a resource that ...
4
votes
1answer
88 views
Handing errors in Clojure Ring REST-like API?
I was wondering what folks think would be a good way of handling errors in a REST-style api written in Clojure, using the Ring library.
One approach taken by Paul Umbers in his Clojure RESTful API ...
0
votes
0answers
15 views
custom Authentication Using Multiple OAuth Providers best parctice
I work on WebApi that check user log in credentials (username, password) from usersTable ,i wont to use another log in method like(Google account, Facebook or Twitter account ) if there is a approach ...
2
votes
1answer
96 views
What is the best practice for user authentication on a C# web api?
I am building a web API that provides data for some applications.
The scenario is something like a web api hosted on Server001 with the methods GET / POST / PUT / Delete available.
In Server002 is a ...
0
votes
1answer
49 views
Patch entity with delta
I have an override that patches an entity.
protected override Books PatchEntity(int key, Delta<Books> patch)
{
var Book = db.books.FirstOrDefault(p => p.ID== key);
if (OtDaily == ...
0
votes
1answer
32 views
How do I configure Web Api to select response format from url parameter?
I'm trying to configure web api area to allow me to pass an optional format extension. Here is my RegisterArea method's code:
public override void RegisterArea(AreaRegistrationContext context)
{
...
0
votes
0answers
25 views
How to design a RestFul Url Template For the Below Web Method?
I'd need a web api service to return the event types of a specific event.
I've read this article but I'm not 100% sure:
http://msdn.microsoft.com/en-us/library/dd203052.aspx
Should I use {0} or ...
0
votes
2answers
84 views
Need to debug my Web API service that's requested from a client machine - need help, how do I do this?
I built a Web API service that's hosted locally on my machine in IIS. I have an iOS app that I'm running via XCode that makes the call to the web service. The connectivity is there, and works. The ...
0
votes
1answer
83 views
angular with c# web api cross domain doesnt work
I'm trying to populate an angular with a result from json request on a web api without succcess.
without success. I want to make a angular application which read from my web api a result.
All i got ...
0
votes
0answers
47 views
Authorize attribute In MVC webAPI
I have created WebAPI in MVC 4.
http://mydomain.com/api/Team/1 - which is seen only when Team 1 is logged In
http://mydomain.com/api/Team/2 - which is seen only when Team 2 is logged In
But when ...
-1
votes
1answer
69 views
Is Breeze.js support RESTful philosophy in asp.net web api? [closed]
I've noticed that breeze.js handle CRUD operations as request with POST http method... Has someone wrote own webapi provider to handle CRUD in way that RESTfull provide?
This is link where you can ...
4
votes
2answers
35 views
What is the correct URI design for a REST service with associated resources
Hi all,
I'm new to REST and Web API. I'm a bit confused on how to design URIs for my resources.
Given that I have a domain with the following resources: Blogs, Posts and Users.
Blog (1) ------ ...
4
votes
1answer
181 views
How to Use Active Directory Authentication with ASP.NET Web API?
We have a Web API application which provides a number of web methods that clients can call and consume. It's going to be hosted in IIS and have SSL setup.
The user credentials are stored in Active ...
1
vote
2answers
215 views
Angular JS: JSON data is not getting displayed in ng-Grid
I have created MVC 4.0 app using Web API which returns data in JSON format (I am serializing object to json using NewtonSoft.Json) and trying to bind data in ng-Grid. I am receiving data in following ...
1
vote
1answer
48 views
Asp.net Web API: No action was found on the controller
So this has really been causing me a headache.
Route:
config.routes.MapHttpRoute(
name: 'ControllerAction' ,
routeTemplate: "api/{controller}/{action}"
...
2
votes
1answer
38 views
sendgrid in classic asp add email category
I'm sending mail using sendgrid web API successfully but unable add categories into x-smtpapi.
Here is my code :
function getHTML (strUrl,postData)
Set xmlHttp = ...
0
votes
0answers
33 views
c# webapi, proxy server not detected
I am developing a consumer app for a public facing web api, I am having problems detecting the proxy. I have installed fiddler on my local machine and enabled proxy authetication.
My code so far is ...
0
votes
1answer
95 views
Posting JSON to WebAPI - the JSON object includes an image (bytes) - Getting error: An expression is too long or complex to compile
I'll start off saying I'm not very familiar with JSON.
I'm creating a web service that will accept JSON data from an iOS device, and takes that data and inserts it into a database.
The trouble I'm ...
1
vote
0answers
77 views
How to enable both CORS support and NTLM authentication
I have a self-hosted c# consol web API. It services several web applications that use AngularJS to perform async http requests. It needs to have both CORS support and NTLM Authentication.
I ...
0
votes
3answers
106 views
How to c# send notification to ajax when database changes? Wich one is the best way?
i read a little about WebSockets, Comet, WebApi, WCF, etc and want to know the best way to create a server application wich can be read from angular js app, ios app, android app, etc.
Thanks
I want ...
0
votes
1answer
84 views
Posting JSON data to Web API - where do I even start?
I have zero experience with Web API and JSON. My requirements are to create a service (I'm using Web API for this) that will accept MIME Encoded JSON data. The service will take that data, insert it ...





