Ivaylo Kenov

Results 59 comments of Ivaylo Kenov

The `WithoutDefaultRequestHeader` method should be documented here - https://github.com/ivaylokenov/MyTested.WebApi/tree/master/documentation Also, I believe there should be a multiple headers option - `WithoutDefaultRequestHeaders(params string[] keys)`, for example.

@tdbgautham Can you please give me the integration test code and the errors you receive and I will take a look and fix it.

Also how do you start and setup the integration test code?

@tdbgautham I tested locally and it fails here too because currently the server is started in memory but it will be easy feature to add. Will update the library tomorrow.

Most probably you are starting local server with your configuration. There is sample integration testing here, but the server is local: https://github.com/ivaylokenov/MyTested.WebApi/blob/master/samples/Source%20Control%20System%20API/Tests/SourceControlSystem.Api.Tests/IntegrationTests/CommitsIntegrationTests.cs Will add remote server testing by providing only...

@tdbgautham Implemented in version 1.1.8. You can update your package. More information here: https://github.com/ivaylokenov/MyTested.WebApi/tree/master/documentation#remote-server

@tdbgautham You should do it the following way: ``` c# // first run this MyWebApi.Server().IsLocatedAt("http://myremoteurl.com"); // then how many you want of these MyWebApi .Server() .WorkingRemotely() // working remotely will...

@tdbgautham Will take a look. Can you give some sort of code sample what are you trying to do because I am kind of guessing your problem?

@tdbgautham Ususally you do not need to set the handler. Can you write a small code sample and add it to pastebin so that I can see what you are...