0
votes
2answers
35 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
19 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 = ...
2
votes
2answers
32 views
How can I generate a link to a resource not in the WebAPI routing table?
I'm attempting to make a Virtual directory relative link to some unknown (to WebAPI) resource form an ApiController.
Example:
http://some/path/webapi/does/not/know
The WebAPI Url helper seems ...
0
votes
1answer
30 views
.Net Web Api multiple requests at once
I wan't to enable making several requests to server at same time from one client. How it's can be done at .Net Web Api? In asp.net mvc 3 it's could be enabled with adding attribute to controller:
...
0
votes
1answer
41 views
How To Read JsonData inside WebApi result using knockout js
I have returned Result.items using WebApi in those items one item is JsonData how to read jsonData using Knockout.js of my MVC Application
I have tried as follows in a view
<ul id="modelView" ...
0
votes
2answers
46 views
The “DELETE” type of Http request does not work in WebAPI?
I have GET, PUT, POST working in my WebAPI project.
The last one of Http requests I am doing is DELeTE, BUT it does not work.
I have read through many posts in here as well as other websites, none ...
1
vote
0answers
16 views
ASP.MVC: Does JsonValueProviderFactory work with querystring variables?
Back in the day of ASP.NET MVC 3, I used JsonValueProviderFactory as per Phil Haack's Blog to bind JSON data as a Query String parameter to a strongly typed parameter.
Today, I find this isn't ...
3
votes
1answer
39 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 ...
-3
votes
1answer
40 views
How to pass object in WebApi POST method?
How to pass object in WebApi POST method. Post([FromBody] Album value) from JavaScript ?
WebApi
public void Post([FromBody] Album value)
{
}
JavaScript
var Album = {
Name: ...
1
vote
2answers
77 views
JSON.Net in Api controllers w/ param containing Dictionary is always null
I've seen some tutorials out there that claim to work, but they are outdated or simply do not work.
How can I use JSON.Net to serialize and deserialize the data received to and sent from my API ...
4
votes
2answers
104 views
+100
web api for ASP.NET - how to build a stream of objects
It is going to be a kind of subjective question but still want to raise it here.
I am planning to build a stream wall like fb, which will contain objects like text post, * embedded videos*, pictures, ...
0
votes
2answers
34 views
Include count of linked records in OData result
I've got a table "Events" with a linked table "Registrations", and I want to create an OData service that returns records from the Events table, plus the number of registrations for each event. The ...
0
votes
1answer
45 views
What are the major differences between Web API and ASP MVC
The title really sums up my question. I have used both technologies but I am uncertain as to what one offers that is substantially different than the other. In essence:
What criteria and/or ...
2
votes
0answers
114 views
Missing request.CreateResponse in vb.net Webapi Projects
I seem to have tracked down the problem but do not know how to fix it, or if I can.
When I create a new C# WebAPI project, and add an import for System.Net.Http I can access
...
3
votes
2answers
158 views
ASP.NET MVC4 Web API Controller Stuck on One Route
I created a new ASP.NET MVC4 Web Api Project. In addition to the default ValuesController, I added another controller, ScenarioController. It has the exact same methods as ValuesController. But for ...
0
votes
0answers
26 views
OAuth from Windows Phone/ WinRT/ Xbox to Web-API?
I've got a site built with MVC 4 that uses DotNetOpenAuth to allow users to login via various OAuth enabled providers, as well as using a local security database. Once authenticated, regardless of the ...
0
votes
1answer
82 views
Why is WebAPI Throwing a 'No MediaTypeFormatter' Error?
I have a strange issue happening with my WebAPI controller.
In my development environment (Win7, IIS 7.5) the method on the controller is called and the result is returned as expected.
In my ...
0
votes
1answer
85 views
Using form Authentication and Basic Authentication Authorization in Web Api
I have Built a mobile app using ASP.Net web APi. the authentication was done using Basic http authorization filter.Now the client want the app to be manage from the MVC web application. i added ...
-1
votes
0answers
60 views
Data model validation throws internal server error, when using single model in more than one action method
Below is the validation attributes for the datamodel class RegisterModel
public class RegisterModel
{
[Required, Maxlength(7)]
public string Email { get; set; }
}
If the above datamodel ...
0
votes
1answer
22 views
Install-Package LinqToQuerystring.WebApi
I'm working on OData JSon Plugin for MyPrettyCMS (ASP.net MVC4 Open source project).
I found the project :
https://github.com/Roysvork/LinqToQuerystring
It seems to respond to my needs.
I follow ...
0
votes
1answer
75 views
Web aplication in asp.net mvc and mobile application communication
I'm going to build application for web (asp.net mvc) and mobile (iOS and Android). And all three of them must communicate (share data, user authorization etc.) . What is best way to this ? Using ...
2
votes
2answers
59 views
Multiple view for multiple devices in ASP .Net MVC
What can be the best way for architecting an ASP .Net MVC project, which have common web service part and multiple views for multiple devices. I have started with a JQuery mobile project, and have ...
0
votes
1answer
92 views
Works for GET, not for POST (404 error)
I have a WebApi controller ServicesApiController in my MVC4 project with a signature like so:
[Authorize(Roles = "sysadmin,Secretary")]
[AcceptVerbs("GET", "POST")]
public IEnumerable<Stock> ...
0
votes
1answer
140 views
MVC to WebAPI authentication for the same application
I'm building a website that will have an MVC side and will get its data from a WebAPI backend of our own, but most likely hosted on a different server (or even on Azure). We're going to use Forms ...
0
votes
1answer
78 views
Page not modified after call Ajax in MVC4
Hello I am new to AJAX and MVC. I am trying to receive a data from WebAPi App in MVC to page using Jquery with AJAx but i am having problem with page is not updating the data but when i check in the ...
0
votes
2answers
45 views
Dispose of Injected HttpClient
Our MVC application calls a WebAPI action using HttpClient. I decided to inject the HttpClient using StructureMap and override dispose in the controller
public HomeController(HttpClient httpClient)
{
...
0
votes
1answer
32 views
MVC 4 WebApi URI of correlation object
New to Web API and looking for help.
I have an object "Bar" that has a List
I want to POST beers to that Bar. (ultimately it will fill in a correlation table on my DB)
What controller should ...
0
votes
0answers
49 views
Circular reference while deserializing JSON.NET
I am building a website in ASP.NET MVC4
the application is linked with a webAPI. in both application and API I use a dbml LINQ to SQL file for the db connection and also serializing and deserializing.
...
0
votes
0answers
44 views
Oauth In Asp.net Webapi?
I am learning how to use the asp.net webapi. I want to make an admin area where I can do admin stuff but also add,edit,delete stuff into my database.
I believe I need to make some regular asp.net mvc ...
0
votes
2answers
49 views
WebApi routing not passing value
I am trying to pass a value to a controller / action in Web Api but it's not finding it.
My Route Mapping:
config.Routes.MapHttpRoute(
name: "DefaultApi",
...
0
votes
1answer
31 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
0answers
52 views
Returning PDF from ASP.NET Web API crashes IE
I'm using an httpresponsemessage to display files through Web API. If I use content disposition type attachment I have no problems. I've been asked to have them open directly in the browser ...
-2
votes
2answers
55 views
Advantage of using WebAPI in asp.Net MVC
Advantage of using WebAPI as ProjectType over InterNet Application in asp.Net MVC?
Is any other use of WebAPI and why it's introduce in MVC4?
1
vote
0answers
40 views
Versioning an API [migrated]
I'm starting a side project, the first stage will be a building a web application with MVC, in later stages we will be adding clients for mobile platforms. My thought was to create one API that all of ...
3
votes
1answer
66 views
How to Secure WebAPI with Single-Page
I'm building an application with an MVC4 single-page front end and a WebAPI on another machine that returns json query data directly to the browser. The authentication happens on the MVC side where a ...
0
votes
2answers
68 views
asp.net mvc api json wrapper
I Have an asp.net mvc api controller method that has a List as its return method. When called it returns this json data:
[
{
"AreaName": null,
"AreaId": 0,
"DestinationName": "Alanya",
...
0
votes
1answer
41 views
How can I programmatically access the Http routes table from the ASP.NET Web Api
I need to iterate over the the Http route table from the ASP.NET Web API from within an ASP.NET MVC Controller action method in the same project. All the routes work fine. I've been playing around ...
0
votes
2answers
76 views
Consume Web API from .NET Console App
I'm getting the following error while consuming a MVC 4.0 Web API from a .NET 4.5 Console App.
"No MediaTypeFormatter is available to read an object of type 'IEnumerable`1' from content with media ...
1
vote
2answers
158 views
Asp Web Api async action - 404 error
I've got some api controller with this action:
public class ProxyController : ApiController {
public async Task<HttpResponseMessage> PostActionAsync(string confirmKey)
{
return ...
1
vote
1answer
258 views
Asp MVC and Web Api Async Controllers
I was working with Asp MVC 3, and in my application was created Async controller with some methods like:
public void ActionAsync()
{
AsyncManager.OutstandingOperations.Increment();
...
0
votes
0answers
87 views
When listbox items are selected controller takes null parameter
I have multiple textboxes in my form which is sending ajax request with a certain Web-Api. However, when i add a listbox to my controls and select an item from it parameter of post api controller ...
0
votes
2answers
97 views
how to send multiple parameters from view to api controller in mvc4
I have multiple parameters which I have to pass to api controller.
What I was doing is
In my javascript
var routeInfo = JSON.stringify(routes);
var colors = ...
0
votes
1answer
159 views
WebAPI and Forms Authentication CookieContainer
I successfully login to an MVC 4 Web API site and get a .ASPXAUTH Set-Cookie this way:
private void Login()
{
var client = new RestClient("http://QQQQ/MobileAPI");
...
0
votes
1answer
117 views
Return custom error objects in Web API
I have a web api I'm working on using the MVC 4 Web API framework. If there is an exception, I'm currently throwing a new HttpResposneException. ie:
if (!Int32.TryParse(id, out userId))
throw new ...
0
votes
0answers
80 views
Has anyone successfully deployed/published an ASP.NET 4 Web API with AttributeRouting?
Details:
OS: Windows Server 2008 R2 Standard
Host: Local IIS 7.5
IDE: Visual Studio 2010
.NET Framework: 4
I have successfully deployed (locally) an ASP.NET MVC 4 application that uses ...
2
votes
1answer
55 views
Web API route being ignored
I have these two routes defined:
routes.MapRoute(
name: "GetVoucherTypesForPartner",
url: "api/Partner/{partnerId}/VoucherType",
defaults: new { controller = "Partner", action = ...
0
votes
1answer
45 views
Is delegation required to pass credentials between applications on the SAME server?
I have a Web API application and an MVC4 client application on the same web server. They are both configured for Windows Authentication. The client application has impersonation enabled.
When I run ...
0
votes
2answers
109 views
pass value from apicontroller to view in asp.net mvc4
I have list of data in my api controller.
I want to pass this data to view using something similar to viewbag.
I know we cant use viewbag in apicontrller , So Is there any alternative for it.
0
votes
1answer
77 views
composite key resource REST service
I've come across a problem at work where I can't find information on the usual standard or practice for performing CRUD operations in a RESTful web service against a resource whose primary key is a ...
0
votes
1answer
85 views
How to format iqueryable mvc 4 web api requests?
I'd like to use iqueryable on all my collections so that I get all of the odata features. However I need to format the response of the request with the following fields;
{
href: "url to resouce",
...


