Uncategorized

Posting to WordPress via Windows Live Writer cause “The server committed a protocol violation”

Had been having problems posting to windows hosted blogs with wordpress via Windows Live Writer. Finally found the solution after googling for it. Apparently, its a security measure made to prevent attacks againt malformed HTTP status lines and headers. Not sure of the exact cause since only upgraded to Plesk 8.2 on the windows server but anyway, the solution works.

Added to live writer’s config file “WindowsLiveWriter.exe.config”

<?xml version =”1.0″?>
<configuration>
  <system.net>
    <settings>
      <httpWebRequest useUnsafeHeaderParsing=”true” />
    </settings>
  </system.net>
</configuration>

Standard

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s