/* (non-Javadoc)
* @see org.eclipse.ui.IActionDelegate#run(org.eclipse.jface.action.IAction)
*/
public void run( IAction action )
{
ServerConfigurationParser parser = new ServerConfigurationParser();
ServerConfiguration serverConfiguration = null;
try
{
serverConfiguration = parser.parse( Activator.class.getResourceAsStream( "default-server.xml" ) );
}
catch ( ServerConfigurationParserException e )
{
MessageBox messageBox = new MessageBox( PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell(),
SWT.OK | SWT.ICON_ERROR );