* Code Collaborator server.
*/
protected static String getNamespace(XmlRpcClient client) {
XmlRpcClientConfig config = client.getClientConfig();
if (config instanceof XmlRpcHttpClientConfig) {
XmlRpcHttpClientConfig hcc = (XmlRpcHttpClientConfig) config;
URL url = hcc.getServerURL();
if (url.getFile().equals(URL_SUFFIX_3))
return NAMESPACE3;
else
return NAMESPACE4;
}