Ip Sam

Results 1 issues of Ip Sam

i am trying to mock a soap request over https with mock4net: server = FluentMockServer.Start(port: 8443, ssl : true); server .Given( Requests .WithUrl("/*") .UsingPost()) .RespondWith( Mock4Net.Core.Responses .WithStatusCode(200) .WithBody(soapResponse) ); I...