tagged [web]

Controller actions naming convention

Controller actions naming convention As naming convention says, WebApi controller actions name should be Get(), Put(). Post() etc. But tell me if I have a controller as , now I want to have two action...

How to get object using Httpclient with response Ok in Web Api

How to get object using Httpclient with response Ok in Web Api my web api like I am using HTTPClient to request web api as mentioned below. ``` var client = new HttpClient(); string json = JsonConvert...

Exception using System.IdentityModel.Tokens.Jwt 5.0.0.127 in Web Api 2 built on .Net 4.6

Exception using System.IdentityModel.Tokens.Jwt 5.0.0.127 in Web Api 2 built on .Net 4.6 I have updated my existing Web Api project to use the latest System.IdenityModel.Tokens.Jwt package and I am ge...

Apply [Authorize] attribute implicitly to all Web API controllers

Apply [Authorize] attribute implicitly to all Web API controllers My application is setup where all requests except login must be 'authorized' using the authorization attribute in Web API. E.g. and on...

WebApi attribute routing - Bind route parameter to an object for GETs

WebApi attribute routing - Bind route parameter to an object for GETs Currently for every GET I have to manually create a query object from the route parameters. Is it possible to bind directly to a q...

Pass multiple complex objects to a post/put Web API method

Pass multiple complex objects to a post/put Web API method Can some please help me to know how to pass multiple objects from a C# console app to Web API controller as shown below? ``` using (var httpC...

RoutePrefix vs Route

RoutePrefix vs Route I understand that `RoutePrefix` doesn't add a route to the routing table by itself. On your actions you need to have a `Route` attribute declared. I am having a hard time finding ...

Where do I set the CookieContainer on a Service Reference?

Where do I set the CookieContainer on a Service Reference? When adding WebService Reference to an ASMX Service on a .NET 2.0 project for example, there exists, When adding ServiceReference to an ASMX ...

Response to preflight request doesn't pass access control check (Angular2)

Response to preflight request doesn't pass access control check (Angular2) I am getting below error on call to REST Web API in Asp.net. [http://localhost:54859/api/PostData](http://localhost:54859/api...

FromBody string parameter is giving null

FromBody string parameter is giving null This is probably something very basic, but I am having trouble figuring out where I am going wrong. I am trying to grab a string from the body of a POST, but "...

POSTing JsonObject With HttpClient From Web API

POSTing JsonObject With HttpClient From Web API I'm trying to POST a `JsonObject` using `HttpClient` from Web API. I'm not quite sure how to go about this and can't find much in the way of sample code...

HttpClient Headers vs HttpRequestMessage Headers

HttpClient Headers vs HttpRequestMessage Headers When should we use headers in the HttpRequestMessage object over headers in the HttpClient ?? We have need to add Authorization (always changing) and f...

Calling Web Api service from a .NET 2.0 client

Calling Web Api service from a .NET 2.0 client Is it possible to call a Web Api method from a .NET 2.0 client? Referring to the guide here: [http://www.asp.net/web-api/overview/web-api-clients/calling...

WebAPI HttpActionExecutedContext get controller name

WebAPI HttpActionExecutedContext get controller name I need to get the controller who triggers a filter attribute. I have the following filter: ``` public override void OnException(HttpActionExecutedC...

8 Jul at 02:11

Route parameter with slash "/" in URL

Route parameter with slash "/" in URL I know you can apply a wildcard in the route attribute to allow `/` such as date input for example: The problem with wildcard is only applicable to the last param...

500 internal server error at GetResponse()

500 internal server error at GetResponse() I have a heavy traffic aspx page calling a web service upon every user`s request as follows. ``` string uri = "Path.asmx"; string soap = "soap xml string"; H...

Attribute Routing and CreatedAtRoute

Attribute Routing and CreatedAtRoute I am trying to convert my Web Api project to use attribute routing. One thing I am not understanding is the CreatedAtRoute method for a POST request. In my WebApiC...

Web API model binding

Web API model binding Given the ASP.NET Web API route: Which maps to the following ApiController action method: With the model class defined as: When I post JSON `{ "Name": "Testing" }` to the URL `/e...

19 Feb at 06:9

How to return JSON in an ApiController for a single method?

How to return JSON in an ApiController for a single method? Currently, my `ApiController`s are returning XML as a response, but for a single method, I want to return JSON. i.e. I can't make a global c...

EC2 Instance Cloning

EC2 Instance Cloning Is it possible to clone a EC2 instance data and all?

3 Apr at 19:50

WebApi 2 POST with single string parameter not working

WebApi 2 POST with single string parameter not working I have the following controller: WebApi config ``` config.Routes.MapHttpRoute( name:

Replacement for Url.Link when using attribute routing

Replacement for Url.Link when using attribute routing I have upgraded my project from webapi to webapi2 and are now using attribute routing. I had a method where I used Url helper to get url. Which is...

How do I use ASP.NET Web API Attribute Routing with a complex object parameter?

How do I use ASP.NET Web API Attribute Routing with a complex object parameter? I have a Web API action that looks like the following: where the Query class has a public string property named `QueryTe...

Using MSBuild to publish webservices

Using MSBuild to publish webservices How do I publish a Web Service to a server with MSBuild?

12 Nov at 23:17

Read Variable from Web.Config

Read Variable from Web.Config How can I add and read the value from file?

9 Nov at 10:31