Hi!
Try just to create Visual Web Application, add 'Text Field' and 'Button' components from 'Basic' part of Palette, doubleclick on button and add following in button_action:
String URL = textField1.getText().toString();
try {
getFacesContext().getExternalContext().redirect(URL);
}
catch (IOException ioe) {
//exception handler
}
Then deploy application, type in text filed: "http://www.google.com", and then click button. For me this works fine.
Thanks,
Roman.