Hello,
I am just starting to get into the XmlRpcServlet. So know just enough to be
stupid.
I have a servlet up and running that I will be using with LiveWritter to
update my site.
The problem I am having (and I hope this is the correct forum) is getting
the methods
result.add("metaWeblog.getTemplate");
result.add("metaWeblog.setTemplate");
to work.
I had a third party write me the following classes (from the
XmlRpcServlet.properties) file
mt=com.vstoyanov.xmlrpc. MetaWeblogImpl
metaWeblog=com.vstoyanov.xmlrpc.MetaWeblogImpl
blogger=com.vstoyanov.xmlrpc.MetaWeblogImpl
So I thought I could just add to MetaWeblogImpl
result.add("metaWeblog.getTemplate");
result.add("metaWeblog.setTemplate");
and then add those methods to MetaWeblogImpl.java
but the methods do not seem to be called,
I have extended the XmlRpcServlet just so I could see the doPost and doGets
and when livewriter tries a getTemplate I see the request come in via doPost
(although I can not figure out how to see what is coming in)
So I am not sure if this is enough info for anyone to help or not
Thanks
Randy