/* (non-Javadoc)
* @see org.eclipse.jface.action.Action#run()
*/
public void run()
{
ConnectWizard connectWizard = new ConnectWizard();
WizardDialog dialog = new WizardDialog( PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(),
connectWizard );
dialog.create();
if ( dialog.open() == Window.OK )
{
LdapProxy ldapProxy = new LdapProxy( connectWizard.getLocalPort(), connectWizard.getRemoteHost(),
connectWizard.getRemotePort() );
view.setLdapProxy( ldapProxy );
try
{
ldapProxy.connect();
}