* @throws ServerServiceException in case of errors with communication or account.
*/
public static void tagsStore(String email, String password, URL aLink, boolean aFeed,
String[] aUserTags, String aDescription, String aExtended) throws ServerServiceException
{
XmlRpcHandler cl = getClient();
Vector<Object> params = new Vector<Object>(6);
params.add(getSessionId(email, password));
params.add(StringUtils.toUTF8(aLink.toString()));
params.add(aFeed);
params.add(StringUtils.toUTF8(StringUtils.arrayToQuotedKeywords(aUserTags)));
params.add(StringUtils.toUTF8(aDescription));
params.add(StringUtils.toUTF8(aExtended));
String error;
try
{
error = (String)cl.execute("tags.tag", params);
} catch (XmlRpcException e)
{
throw new ServerServiceException(MSG_COM_PROBLEM, e);
} catch (Exception e)
{