Print Page | Close Window

Push config

Printed From: IdeaBlade
Category: DevForce
Forum Name: DevForce 2010
Forum Discription: For .NET 4.0
URL: http://www.ideablade.com/forum/forum_posts.asp?TID=2764
Printed Date: 30-Jul-2026 at 2:55am


Topic: Push config
Posted By: midnit
Subject: Push config
Date Posted: 14-Jun-2011 at 6:15am
I believe all my push is working...except its timing out when it tries to send a notification to me.
 
Removing subscriber after error The IOutputChannel timed out attempting to send after 00:01:00. Increase the timeout value passed to the call to Send or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.
 
Currently this is running locally in VS so I am not sure what could be blocking it. I have no local firewall. I was going to mess with the ports but can't find a solid example of the ClientConfig.
 
       <!-- Simulates the PollingDuplexHttpBinding used by Push -->
        <binding name="pollingDuplex">
          <pollingDuplex duplexMode="MultipleMessagesPerPoll" inactivityTimeout="01:00:00"/>
          <binaryMessageEncoding />
          <httpTransport maxBufferSize="2147483647"  maxReceivedMessageSize="2147483647" transferMode="StreamedResponse"/>
        </binding>
 
Any ideas?



Replies:
Posted By: kimj
Date Posted: 14-Jun-2011 at 6:49pm
Take a look at this thread - http://www.ideablade.com/forum/forum_posts.asp?TID=2334 - http://www.ideablade.com/forum/forum_posts.asp?TID=2334 .   If you have somewhat long intervals between messages and you're using IE8 (and possibly IE9 too, but I haven't had a chance to test that yet), you'll need to either switch to the Client networking stack or set the mode for single messages.  The thread (the last few posts) shows how to do this.
 



Print Page | Close Window