vote up 0 vote down star

I'm trying to use Spring WebFlow to redirect to a computed url to an ftp server, but in the ExternalRedirect code are the following lines:

} else if (location.startsWith("http://") || location.startsWith("https://")) {
	sendRedirect(location, request, response);
} else {
	sendServletRelativeRedirect(location, request, response);
}

Is there any way to get Spring WebFlow to redirect to, say, ftp://example.com/?

flag

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.