Tell me more ×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.

I am getting a strange web service error. I am hosting a WCF service that the client calling it, is consistently getting a 400 (Bad Request) back from IIS. I am unable to determine the cause of this, however I believe it may have something to do with the HTTP headers.

My question: does any software exists, that can capture the call prior to it reaching IIS, let me alter it slightly (change the headers) then replay?

share|improve this question
2  
You could try Fiddler. – Dalton Conley Feb 14 at 21:37
+1 for Fiddler...don't have the energy (read enthusiasm) to write a full answer for this. – Mike Brown Feb 14 at 21:58
Consider soap sonar to create the request too. – LachlanB Feb 14 at 22:30
@DaltonConley so fiddler would work great if I was making a webservice call, but if I am hosting that service then fiddler is of no help. – aceinthehole Feb 15 at 14:04

1 Answer

up vote 0 down vote accepted

I found that a tool called TCPTrace really got down to the level I need to for this particular use case.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.