383384385386387388389390391392393
throws TurbineException { try { XmlRpcClient client = new XmlRpcClient ( url ); return client.execute(methodName, params); } catch (Exception e) { throw new TurbineException("XML-RPC call failed", e); }
417418419420421422423424425426427
{ try { XmlRpcClient client = new XmlRpcClient ( url ); client.setBasicAuthentication(username, password); return client.execute(methodName, params); } catch (Exception e) { throw new TurbineException("XML-RPC call failed", e); }
362363364365366367368369370371372
387388389390391392393394395396397
421422423424425426427428429430431