vote up 0 vote down star

Hello, I'm having a strange issue - I saw a similar post on this forum, but it didn't have an answer.

Long story short, I am sending an HttpWebRequest using C# to a web service (stubs were created by adding a web reference in Visual Studio 2008, .NET 2.0) which breaks with the following message: "Unable to parse the incoming request". This is a java based webservice running on weblogic.

Here is the strange part, if I have fiddler running to monitor my request - IT WORKS FINE!!??

My theory is that fiddler is reformatting the request in some manner which the server likes?

Does anyone know what .NET could be doing to the request which fiddler could be fixing? If not, is there a way I can view my XML programmatically without using fiddler?

Caveat - I do not have access to make changes to the server hosting the web service.

Thanks, Steve

UPDATE - When I remove the "Decrypt HTTPS traffic" option in fiddler it no longer works. So whatever fiddler is doing to decrypt the HTTPS traffic is what is making this work....

flag
I would be really surprised if fiddler is doing anything to the XML. It doesn't touch stuff like that (unless you specifically tell it to). Someone else just had a post about SSL not working when not using fiddler though Is this maybe https? – consultutah Aug 12 at 17:35
yes, it is https – Steve Aug 12 at 17:37
so, just set up a proxy so I could see my original request without fiddler - you were right, they are exactly the same except for the debugger data, which is to be expected I guess. So I'm stumped. – Steve Aug 12 at 17:50
Correct, Fiddler won't touch the bytes. It will, however, buffer the request bytes and send them to the server, so if the client is slow to generate them for some reason, the timing will behave differently with Fiddler running. Which could explain your situation. – EricLaw -MSFT- Aug 13 at 1:25

2 Answers

vote up 0 vote down

EricLaw - thanks for the response, I believe this is the issue. I have a different method which works, but it sends less across the wire. Do you happen to know how I could buffer the request bytes within my C# code in order to make this work?

link|flag
Hold on, but when I remove the "Decrypt HTTPS traffic" option in Fiddler it no longer works. Does it only buffer when you do that? – Steve Aug 13 at 13:27
Yes. When you don't have Decrypt HTTPS Traffic set, Fiddler acts as a blind tunnel for traffic sent over XML, and forwards bytes immediately as they are received by the proxy. How long does the request take to send? What specific C# code are you using? – EricLaw -MSFT- Sep 12 at 16:14
vote up 0 vote down

Use Wireshark to see what's going on at the network packet level - that's as definitive as it gets!

(One caveat, which I think is true for Steve but might not be for other readers: this assumes your web service is on a different machine, so that there is some physical network activity to monitor - Wireshark won't help if it's all running on your local machine.)

link|flag
Thanks, I was able to view my original xml through a proxy I set up just now. No dice, its the same as the fiddler xml. Stumped. – Steve Aug 12 at 17:51

Your Answer

Get an OpenID
or

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