Showing posts with label error. Show all posts
Showing posts with label error. Show all posts

Wednesday, 15 June 2016

WCF Service - Configuration binding extension 'system.serviceModel/bindings/netHttpBinding' could not be found

I've just written a test WCF service for using web sockets.

When I publish the service and try to browse to it shows the following error:

Configuration binding extension 'system.serviceModel/bindings/netHttpBinding' could not be found. Verify that this binding extension is properly registered in system.serviceModel/extensions/bindingExtensions and that it is spelled correctly.

The solution to this is to add the following in the web.config:

<system.web>
    <compilation debug="true" targetFramework="4.6"/>
    <httpRuntime targetFramework="4.6"/>
</system.web>

Adding the httpRuntime value fixed the issue.

Saturday, 6 September 2014

Useless Windows Error Message

The other day I was working and tried to look up some help from an application and received the following error message below.

It looks like the latest version of Windows does not contain the ability to open the help file, but instead of giving a useful information to how the problem can be resolved (link did not help) it asks the question 'Was this helpful?'.

Once again this made me think what is going on at Microsoft that allows their software to pass the QA testing with messages like the one above.

Sunday, 6 January 2013

Google search results error with AVG

While using Google search in the Chrome browser I received the following error message:
TypeError: Object #<Text> has no method 'getBoundingClientRect'


Clicking OK removed the message and allowed me to continue as normal, then I received the error message again a few moments later. I managed to find that the error would occur when moving the mouse cursor over particular adverts on the right hand side of the search results, I then realised that these adverts had an AVG related icon on the left of the title which when you hover over an AVG dialog would appear regarding the safety ratings. To fix the error I turned off the AVG safe search option in the 'Google Extensions' options.