119120121122123124125126127128129
*/ public void init(ServletConfig config) throws InitializationException { try { server = new XmlRpcServer(); // Set the port for the service port = getConfiguration().getInt("port", 0); if(port != 0)
125126127128129130131132133134135
{ ResourceService resources = ((TurbineServices)TurbineServices.getInstance()). getResources(getName()); server = new XmlRpcServer(); // Set the port for the service port = resources.getInt("port", 0); if(port != 0)
123124125126127128129130131132133