Hi,
In my application the user should choose the CS against he will connect. (There are 16 CS in 2 host)
What is the correct way to perform a connection against a explicit CS?
With my actual code the user doesn't select the CS. manager.getSession("repository") has nos the possibility to add the CS...
public boolean probarConexion (String repositorio)
{
try
{
sesion = manager.getSession(repositorio);
return true;
}
catch (DfServiceException e)
{
e.printStackTrace();
}
finally
{
if (sesion!=null)
manager.release(sesion);
}
return false;
}
Thanks!!!