Tagged Questions
1
vote
0answers
396 views
Extending SoapHttpClientProtocol to correct faulty server Content-Length
Recently I got the need to access a web service created using SOAP::Lite. It's really messy to use since there's no WSDL, it doesn't return reasonable datatypes etc. so I started out using the ...
1
vote
8answers
574 views
Most efficient way to determine if a string length != 0?
I'm trying to speed up the following:
string s; //--> s is never null
if (s.Length != 0)
{
<do something>
}
Problem is, it appears the .Length actually counts the characters in the ...
1
vote
4answers
904 views
Simulate Incorrect Content-Length Headers for HTTP in C#
We are building a comprehensive integration test framework in C# for our application which exists on top of HTTP using IIS7 to host our applications.
As part of our integration tests we want to test ...
0
votes
3answers
109 views
getting content-length using sockets
Can anyone guide me in acquiring the POST content-length of a website by just using sockets. Thanks and Kudos!
(I'm avoiding using httpwebrequest for some reason)