Search

You searched for the word(s): userid:723052

Matching Posts

  • Re: wcf rest starter kit HttpStageProcessingException - GetResponse timed out

    I resolve this by locking the HttpClient object, when retrive response, and it worked var client = result.AsyncState as HttpClient; HttpResponseMessage resp = null ; try { lock (httpClientLock) { resp = client.EndSend(result); } //code }
    Posted to WCF REST Starter Kit (Forum) by ksirg on 6/4/2009
    Filed under: wcf REST HttpStageProcessingException lock
  • wcf rest starter kit HttpStageProcessingException - GetResponse timed out

    Hi I have communication problem, I use HttpClient and send periodically (every 60 second) HttpGet message asynchronusly. But I get (to often) exception HttpStageProcessingException with message GetResponse timed out and I don't know why? The other strange thing is that when I open fiddler it starts working and this exception nerer occure . My code Send Message m_HttpClient.BeginSend( new HttpRequestMessage( "GET" , query), new AsyncCallback(AfterUserDashboardSince), m_HttpClient); calback
    Posted to WCF REST Starter Kit (Forum) by ksirg on 5/20/2009
    Filed under: exception HttpStageProcessingException wcf rest
  • Re: Bug in Url Building

    Oh sorry, when I set all three things : AllowRestrictedChars http://support.microsoft.com/kb/820129 VerificationCompatibility - http://support.microsoft.com/default.aspx?scid=kb;EN-US;826437 without instaling service pack 1 to .net 1.1 and set on asp.net page ValidateRequest=false its start working :) I hope that helps.
    Posted to ASP.NET MVC (Forum) by ksirg on 5/8/2008
    Filed under: http 400 asp.net mvc bad request
  • Re: Bug in Url Building

    I try all methods above, even change some settings in registry and nothing help. When I enter on my website on localhost I see Error Summary HTTP Error 400.0 - Bad Request ASP.NET detected invalid characters in the URL. Detailed Error Information Module WindowsAuthentication Notification AuthenticateRequest Handler StaticFile Error Code 0x00000000 Requested URL http://site.com:80/producenci/H&M Physical Path D:\ftp\LocalUser\szafa\web\producenci\H&M Logon Method Not yet determined Logon User
    Posted to ASP.NET MVC (Forum) by ksirg on 5/8/2008
    Filed under: http 400 asp.net mvc bad request
  • Re: Bug in Url Building

    I use mix version and my routes don't have ".mvc" extensions. And mvc do HtmlAttributeEncode not UrlEncode HtmlHelper.cs line 121 return String.Format(CultureInfo.InvariantCulture, _anchorTag, HttpUtility.HtmlAttributeEncode(url), HttpUtility.HtmlEncode(linkText));
    Posted to ASP.NET MVC (Forum) by ksirg on 4/8/2008
    Filed under: mvc url bug encoding
  • Re: Bug in Url Building

    I have the same issue. On my localhost machine it's ok but on iis7 it throw "Bad Request" I try all methods above and also UrlEncodeUnicode Is there any solution for that ? Maybe it's iis problem? Have you try with normal asp.net app?
    Posted to ASP.NET MVC (Forum) by ksirg on 4/6/2008
Page 1 of 1 (6 items)