wpf - WCF service timing out only when called from an ASP.NET web app -
i have few wpf applications have wcf services single function called updatevalues. have 5 applications working, reason 1 not. tested app using wcf test application, , working correctly, believe error in client.
the client asp.net 2.0 web application. wcf service added project web reference. when executed, connection times out. wcf function contains single line of code make beep, know issue not real timeout due processing time. if wpf application not running, function call fails immediately.
i tried converting app .net 4 , same error.any thoughts getting more detailed error message?
found issue, reason app.config had changed binding type wshttpbinding instead of basichttpbinding. running fine now.
<endpoint address="" binding="basichttpbinding" contract="jobsheetdisplay.iupdateservice"> <endpoint address="" binding="wshttpbinding" contract="inksetupdashboard.iupdateservice">
Comments
Post a Comment