•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the C# section within the Software Development category of DaniWeb, a massive community of 391,703 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,188 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our C# advertiser:
Views: 790 | Replies: 2
![]() |
•
•
Join Date: Jun 2007
Posts: 5
Reputation:
Rep Power: 0
Solved Threads: 0
I'm sending an HttpWebRequest to a BizTalk server. BizTalk receives and asyncronously processes correctly, but I never receive an http response. The last statement in the snippet below is where my code hangs. This same code works in my DEV environment - I get the repsonse almost instantly. IIS appears to be setup the same on each box. Any ideas??
HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url); req.Method = "POST"; ASCIIEncoding encoding = new ASCIIEncoding(); byte[] requestData = encoding.GetBytes(xmlMessage); req.ContentType = "application/x-www-form-urlencoded"; req.ContentLength = xmlMessage.Length; Stream requestStream = req.GetRequestStream(); requestStream.Write(requestData, 0, requestData.Length); HttpWebResponse response = (HttpWebResponse)req.GetResponse();
try to use multithreading, if the problem is the same tell me
B.Sc Computer Science, Helwan University
Microsoft Student Partner
Personal blog http://ramymahrous.blogspot.com/
Arabic technical blog http://fci-h-ar.blogspot.com/
English technical blog http://fci-h.blogspot.com/
Microsoft Student Partner
Personal blog http://ramymahrous.blogspot.com/
Arabic technical blog http://fci-h-ar.blogspot.com/
English technical blog http://fci-h.blogspot.com/
•
•
Join Date: Jun 2007
Posts: 5
Reputation:
Rep Power: 0
Solved Threads: 0
Thanks for your reply ... I found the problem yesterday. It appears as if there is something wrong with security as it pertains to IIS. I can't even get http://localhost to resolve, although BizTalk still receives the request and processes it. Our network Admins are going to reimage the machine for me. It's a brand new box so its nice to be in a position to start over.
Thanks again.
Thanks again.
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb C# Marketplace
Similar Threads
- microsoft office shortcut bar not responding (Windows Software)
- Windows 2003 not responding (Windows NT / 2000 / XP / 2003)
- My Computer not responding (Viruses, Spyware and other Nasties)
- "Windows Not Responding" message (Windows 9x / Me)
- RUNDLL32.EXE is not responding (Viruses, Spyware and other Nasties)
- wupdater.exe not responding (Viruses, Spyware and other Nasties)
- Wnstssu not responding!! (Viruses, Spyware and other Nasties)
- wupdater not responding (Windows 9x / Me)
Other Threads in the C# Forum
- Previous Thread: books on data structures and algorithms in C sharp
- Next Thread: Need to create a Threaded IP Listener, where to start?


Linear Mode