Deliver 14x Faster speed on your D-Link wireless-N router network using built-in 12dBi antennas.

Windows Live Writer Errors out on posting. Invalid Server Response.

We all know that I love me some Windows Live Writer. It is my blog editor of choice. Armed with that and Jing I document, screenshot and post the hell out of stuff over here and on http://www.makeUseOf.com. Today I was taking some screenshots of a new website I will be reviewing called http://www.doodlerBlog.com. Long story short…. My WLW was returning the following error every damn time I tried to post my draft. I tried posting it to several other WordPress Sites and I had the same flucking problem!

wlwerror thumb Windows Live Writer Errors out on posting. Invalid Server Response.

I found out I could view the log file by going to Help – About Windows Live Writer – and View Log.

Once there I found this log:

WindowsLiveWriter,2944,None,00021,01-Jun-2009 12:48:15.973,"Exception parsing XML-RPC response:

WindowsLive.Writer.CoreServices.XmlRpcClientInvalidResponseException: Invalid response document returned from XmlRpc server —> System.Xml.XmlException: There are multiple root elements. Line 2, position 2.
   at System.Xml.XmlTextReaderImpl.Throw(Exception e)
   at System.Xml.XmlTextReaderImpl.Throw(String res, String arg)
   at System.Xml.XmlTextReaderImpl.Throw(Int32 pos, String res)
   at System.Xml.XmlTextReaderImpl.ParseDocumentContent()
   at System.Xml.XmlTextReaderImpl.Read()
   at System.Xml.XmlLoader.LoadNode(Boolean skipOverWhitespace)
   at System.Xml.XmlLoader.LoadDocSequence(XmlDocument parentDoc)
   at System.Xml.XmlLoader.Load(XmlDocument doc, XmlReader reader, Boolean preserveWhitespace)
   at System.Xml.XmlDocument.Load(XmlReader reader)
   at System.Xml.XmlDocument.LoadXml(String xml)
   at WindowsLive.Writer.CoreServices.XmlRpcMethodResponse..ctor(String responseText)
   — End of inner exception stack trace —
   at WindowsLive.Writer.CoreServices.XmlRpcMethodResponse..ctor(String responseText)
   at WindowsLive.Writer.CoreServices.XmlRpcClient.CallMethod(String methodName, XmlRpcValue[] parameters)

<br />
<b>Fatal error</b>:  Allowed memory size of 33554432 bytes exhausted (tried to allocate 886081 bytes) in <b>/usr/www/users/esengul/makeuseof.com/wp-includes/class-IXR.php</b> on line <b>207</b><br />
",""
WindowsLiveWriter,2944,Fail,00022,01-Jun-2009 12:48:16.004,"WindowsLive.Writer.Extensibility.BlogClient.BlogClientInvalidServerResponseException: Invalid Server Response – The response to the metaWeblog.newMediaObject method received from the blog server was invalid:

Invalid response document returned from XmlRpc server
   at WindowsLive.Writer.BlogClient.Clients.XmlRpcBlogClient.CallMethod(String methodName, XmlRpcValue[] parameters)
   at WindowsLive.Writer.BlogClient.Clients.MetaweblogClient.DoBeforePublishUploadWork(IFileUploadContext uploadContext)
   at WindowsLive.Writer.PostEditor.WeblogBlogFileUploader.DoUploadWorkBeforePublish(IFileUploadContext uploadContext)","   at System.Environment.GetStackTrace(Exception e, Boolean needFileInfo)
   at System.Environment.get_StackTrace()
   at WindowsLive.Writer.CoreServices.Diagnostics.LogFileTraceListener.Fail(String message)
   at System.Diagnostics.TraceInternal.Fail(String message)
   at System.Diagnostics.Trace.Fail(String message)
   at WindowsLive.Writer.PostEditor.WeblogBlogFileUploader.DoUploadWorkBeforePublish(IFileUploadContext uploadContext)
   at WindowsLive.Writer.PostEditor.BlogPostReferenceFixer.FileUploadWorker.DoUploadWork(String fileReference, BlogFileUploader fileUploader, Boolean isWindowsLiveLightboxCloneEnabled)
   at WindowsLive.Writer.PostEditor.BlogPostReferenceFixer.LocalFileTransformer.Transform(BeginTag tag, String reference)
   at WindowsLive.Writer.CoreServices.HTML.HtmlReferenceFixer.LocalFileReferenceFixupFilter.FixReferences(BeginTag tag, String reference)
   at WindowsLive.Writer.CoreServices.HTML.HtmlReferenceFixer.OnBeginTag(BeginTag tag)
   at WindowsLive.Writer.CoreServices.LightWeightHTMLDocumentIterator.Parse()
   at WindowsLive.Writer.CoreServices.HTML.HtmlReferenceFixer.FixLocalFileReferences(String html, ReferenceFixer fixer)
   at WindowsLive.Writer.PostEditor.UpdateWeblogAsyncOperation.LocalSupportingFileUploader.UploadFilesBeforePublish()
   at WindowsLive.Writer.PostEditor.UpdateWeblogAsyncOperation.DoWork()
   at WindowsLive.Writer.CoreServices.AsyncOperation.InternalStart()
   at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   at System.Threading.ThreadHelper.ThreadStart()"

Out of Memory? Fatal error? What’s going on here why would my post need 33554432 bytes + another 886081  bytes? That is for you non-cis or math majors 32.8450 megabytes!

I checked it out and Jing was saving my screenshots as HUGE files! Each of my images were several Megabytes! I corrected my images – re-uploaded and BAM! We were straight.

_TheReUploadingAdmiN_

You can leave a response, or trackback from your own site.

16 Responses to “Windows Live Writer Errors out on posting. Invalid Server Response.”

  1. Joseph Scott says:

    The out of memory error you noticed was what the server reported back for the WLW post request. PHP sets specific memory limits for processes, sounds like the server you were talking to was set to 32MB. While your image probably wasn’t that big, the encoding used to send the image to WordPress increases the memory requirement, which pushed it over the limit.

    At any rate, if you run into this the future and can’t reduce the size of the file, you’ll need to increase the PHP memory limits on the server.

  2. Karl Gechlik says:

    Thanks for the information. It sounds like you know alot about WordPress! Maybe you have some ideas on how to modify a high traffic wordpress site to be a little more stable/available?

  3. Joseph Scott says:

    The simple answer is caching. There are plugins to enable WordPress to store data in memcache and another plugin to store/serve rendered pages in memcache (batcache), which helps a lot.

    Object cache:
    http://ryan.wordpress.com/2005/12/23/memcached-backend/
    http://svn.wp-plugins.org/memcached/trunk/object-cache.php

    Batcache:
    http://wordpress.org/extend/plugins/batcache/

    We use both of these on WordPress.com and it helps reduce the number of servers need to serve lots of traffic.

  4. I have implemented PhpSpeedy and Wp-Super Cache (not on AtA on another site MakeUseOf.com) and they have helped alot do you think your combination is better Joesph? Do you work for WordPress?

  5. Joseph Scott says:

    I’m not familiar with PhpSpeedy, Super Cache is good as long as you only have one web server. If you have more than one web server then moving to memcached (which allows for caching over the network instead of just to local disk) is a good move.

    I work for Automattic, which runs WordPress.com (among other things).

  6. Awesome thanks for the information and stopping by. If you are ever interested in guest writing for us let me know and I will set you up.

  7. best digital cameras on the rally gave you [url=http://soulflowerstudios.com/articles/canon+digital+rebel+camera+xs]canon digital rebel camera xs[/url] Representing the digital camera consumer comparisons of digital cameras based on reviews from valid users, prices and deals from multiple stores, so you can secure the digital camera.
    A digital camera is a camera that takes video or coequal then photographs, or both, digitally clinch to recording images via an electronic image sensor. [url=http://cameras.soulflowerstudios.com/articles/canon+eos+rebel+xii+digital+camera]canon eos rebel xii digital camera[/url]
    [url=http://soulflowerstudios.com/articles/miniture+digital+camera]miniture digital camera[/url]
    [url=http://cameras.soulflowerstudios.com/articles/battery+hip+carrier+for+digital+camera]battery hip carrier for digital camera[/url]
    [url=http://cameras.soulflowerstudios.com/articles/kodak+easy+share+z700+digital+camera]kodak easy share z700 digital camera[/url]
    [url=http://soulflowerstudios.com/articles/canon+powershot+sx100+is+digital+camera]canon powershot sx100 is digital camera[/url]
    In order to collar an replication the looking-glass is flipped short of the way, allowing gleam to cede on the imager. Autofocus is achieved using the but contrast-detect mechanism, but multifarious hook cameras aspect a enchiridion heart significance, in some cases using a disentangle blurry coterie, after greater control. Since no alight reaches the imager during framing, autofocus is authority using specialized sensors in the quote container itself.
    [url=http://cameras.soulflowerstudios.com/articles/finepix+digital+camera+cord+for+computer]finepix digital camera cord for computer[/url] [url=http://soulflowerstudios.com/articles/1997+sony+mavica+digital+camera]1997 sony mavica digital camera[/url] [url=http://cameras.soulflowerstudios.com/articles/canon+usa+consumer+products+digital+cameras]canon usa consumer products digital cameras[/url] A significant uniqueness is the Nikon E2, a camera followed by Nikon E3, using additional optics to scourge the 35mm set-up to a 2/3 CCD-sensor.

  8. Predators Downloads [url=http://connections.blackboard.com/people/a9c839e564] Predators Movie Download Full Movie [/url] Watch Predators The Film Right Now
    Watch Complete The Switch Movie [url=http://connections.blackboard.com/people/27d140bd4b] Download The Switch Film Now [/url] Full The Switch Movie To Watch
    Whole Film Of Machete [url=http://connections.blackboard.com/people/7e1e346c71] Download Machete Movie Legally [/url] Machete Movie To Watch
    Watch Vampires Suck Film [url=http://connections.blackboard.com/people/550c551e28] Download Vampires Suck Full Lenght [/url] Vampires Suck Divx
    Piranha Online Soundtrack Download Piranha Movie Download Zshare [url=http://connections.blackboard.com/people/597c114809] Piranha Movie Hd Download [/url] Download Piranha Dvd Piranha Movie Screenshots

  9. oblimbift says:

    [url=http://www.kendrasextaped.com/]Kendra Sex Scandal[/url]: The Kendra Wilkinson sex tape was released and it is definitely a celebrity sex tape you don’t want to miss. Watch The Kendra Wlikinson Sex Tape 100% Free! (Kendra Exposed – Vivid).
    Kendra Sex Tape Watch : [url=http://i-zdy.cn/?p=67]The Kendra Wilkinson Sex Tape[/url] Tags: kendra exposed video, kendra sextape, download kendra exposed, kendra exposed free, clipper’s remarks: Kendra Exposed Video.
    See also: [url=http://www.dcwclan.com/profile.php?mode=viewprofile&u=31524]Watch Kendra Sex Tape[/url]
    Video Of Kendra Sex Tape

  10. free movies online for free [url=http://community.myfoxdetroit.com/download_kill_speed/]watch online movie Kill Speed[/url] film region free
    new movies online [url=http://community.myfoxboston.com/download_kill_speed/]Kill Speed 3gp movie[/url] download new movies 2010
    online movies for free good quality [url=http://community.myfoxny.com/download_kill_speed/]Kill Speed Film USA[/url] download movies 3d free
    Movies Online [url=http://community.myfoxhouston.com/download_kill_speed/]Kill Speed content of the film[/url] download hd movie torrents
    free movies to watch news [url=http://community.myfoxchicago.com/download_kill_speed/]Kill Speed hd movie download[/url] songs from movies download free
    porn movies [url=http://community.myfoxorlando.com/download_kill_speed/]Kill Speed film of 2010 torent[/url] download the song from the movie for free
    watch free movies without registering [url=http://community.fox8.com/service/displayKickPlace.kickAction?u=28081716]where is the film Kill Speed[/url] download new movies
    watch the movie as [url=http://community.fox8.com/service/displayDiscussionThreads.kickAction?as=92757&w=221030&d=601179]Kill Speed film characters[/url] download free movie torent
    Free movies without a new registration [url=http://community.myfoxtwincities.com/download_kill_speed/]Kill Speed film dvdrip watch[/url] new movies 2010 free
    watch new movies online [url=http://community.myfoxla.com/download_kill_speed/]movie reviews Kill Speed viewers[/url] hd movie download
    watch film online for free [url=http://community.myfoxdc.com/download_kill_speed/]Kill Speed film 2010 in film[/url] dvd movies download free
    movies online for free [url=http://community.myfoxphilly.com/download_kill_speed/]watch a movie in 2010 Kill Speed hd[/url] download free dvd movies
    porn movies without registering [url=http://community.myfoxatlanta.com/download_kill_speed/]youtube movie Kill Speed[/url] free hd dvd movies
    movies [url=http://profiles.friendster.com/122898642]movie download Kill Speed 2010[/url] download movies for a single file download
    new movie in good quality [url=http://www.formspring.me/KillSpeed]download movie mp4 Kill Speed 2010[/url] hd movies free 2010
    Best movies online [url=http://blog.chess.com/Download_Kill_Speed]Kill Speed film license[/url] download dvd movies
    most movies [url=http://www.dailymotion.com/group/kill-speed]Kill Speed free mp4 movie[/url] soundtracks for free
    documentaries [url=http://www.dailymotion.com/Download_movie_Kill_Speed]download songs from the film Kill Speed[/url] Download Russian Movies
    movies via torrent [url=http://posterous.com/people/YXtr3VmafE5]Fees film Kill Speed[/url] download hd movies for free
    movie without prescription [url=http://trig.com/killspeed/biography]where to watch the film Kill Speed[/url] 2010 download movies without prescription
    free online movies as [url=http://cs.beadandbutton.com/bnbcs/members/Download-Kill-Speed-Film-In-Ipod-Quality.aspx]download free movie Kill Speed 3gp[/url] movies mp3 free download
    watch the film as a [url=http://commonground.edrnet.com/people/3bbd2150cb]opinions about the film Kill Speed[/url] download movies dvd rip
    watch free movies without registering [url=http://connections.blackboard.com/people/3b456379eb]movie new Kill Speed[/url] 3d dvd movies download
    free download movies without registration [url=http://community.essence.com/profile/DownloadmovieKillSpeed2010]Kill Speed film of 2010 ts[/url] avi download movies
    Online news film 2010 [url=http://community.essence.com/profiles/blogs/download-movie-kill-speed-2010]Kill Speed film of 2010 ts[/url] download movies in hd format
    Indian cinema [url=http://www.scribd.com/doc/41143165/Download-Movie-Kill-Speed-2010]movie download Kill Speed[/url] download movies free dvd quality

  11. lafPleace says:

    hi there amazing topic we have going there!

  12. lafPleace says:

    Just looked through the thread! Amazing work.

  13. lafPleace says:

    hi amazing thread you have going here.

  14. lafPleace says:

    Hi great thread you have going here.

  15. Hi

    I am new member, greetz people !

  16. ad14jc says:

    Unknown message

Leave a Reply

Powered by WordPress | Designed by: free joomla templates | Thanks to hostgator coupons and joomla hosting