On 11/21/05, Sean Gilligan <seanlist2@msgilligan.com> wrote:
> Hi,
>
> I've been playing around with Roller 2.x (built from Friday's svn) this
> weekend and am trying to get XMLRPC working with ecto and a client of my
> own. The below seemed to help with ecto. (Perhaps something changed
> with multi-author blogs?)
>
> With the patch, ecto can post, but gets an error trying to read back the
> recent post:
> java.lang.NoSuchMethodException:
> org.roller.presentation.xmlrpc.BloggerAPIHandler.getPost(java.lang.String,
> java.lang.String, java.lang.String, java.lang.String)
As an FYI... I've been getting this error with all the blog clients
I've used for the past year or two. I generally just ignore it b/c
the post succeeds. However, it would be nice if it went away.
Matt
>
> I've also done a little bit of template hacking to get support for RSD,
> has anyone else done (a hopefully better) job of this? If not, is there
> any interest in adding RSD out of box? If no-one else has done this, I
> could submit a HOW TO to the wiki or something...
>
> Regards,
>
> Sean
>
> svn diff
> Index: BloggerAPIHandler.java
> ===================================================================
> --- BloggerAPIHandler.java (revision 345894)
> +++ BloggerAPIHandler.java (working copy)
> @@ -427,6 +427,7 @@
> entry.setPubTime(current);
> entry.setUpdateTime(current);
> entry.setWebsite(website);
> + entry.setCreator(roller.getUser());
> entry.setCategory(website.getBloggerCategory());
> if (Boolean.valueOf(publish).booleanValue())
> {
>
>
|