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/?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You should consider using this: http://www.tuckey.org/urlrewrite/

I have it setup with every spring project I work on.

link|improve this answer
I've changed jobs since then, and now don't have to work with Spring WebFlow anymore, so I haven't tested out your answer, but I'm going to accept it, since really, no-one else has said anything in 2.5 years. :) Thanks! – bwinton Aug 3 '11 at 12:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.