Lines Matching defs:redirectURL

201     private static final String REDIRECT_URL = "redirectURL";
329 String redirectURL = getRedirectURL(sfe);
330 if(redirectURL == null) {
335 redirectURL, responseID, connectTo, certAlias, soapAction,
503 String redirectURL, String messageID, String connectTo,
510 + "entering with redirectURL="
511 + redirectURL);
514 //redirectURL should not have ReturnToURL parameter
515 if (!(redirectURL.indexOf(RETURN_TO_URL + "=") == -1)) {
518 + "Invalid redirectURL - illegal parameter "
520 + " in redirectURL=" + redirectURL);
526 //redirectURL should not have IDP parameter
527 if (!(redirectURL.indexOf(IDP + "=") == -1)) {
530 + "Invalid redirectURL - illegal parameter:"
532 + " in redirectURL=" + redirectURL);
538 //redirectURL should be https
540 && (redirectURL.indexOf("https") != 0) ) {
546 + " in redirectURL=" + redirectURL);
551 //redirectURL should point to connectTo host
554 && !checkRedirectHost(redirectURL, connectTo)) {
559 + " in redirectURL=" + redirectURL
579 redirectURL = redirectURL +"&"+ RETURN_TO_URL + "="
583 + "redirecting user agent to redirectURL= "
584 + redirectURL);
587 httpResponse.sendRedirect(redirectURL);
596 + "redirected user agent to redirectURL= "
597 + redirectURL);
1166 String redirectURL = null;
1185 redirectURL = rre.getRedirectURL();
1188 if (redirectURL == null) {
1191 return redirectURL;
1194 private boolean checkRedirectHost(String redirectURL, String connectTo) {
1197 URL redirectToURL = new URL(redirectURL);
1206 + "redirectURL not a valid URL"
1207 + " :redirectURL=" + redirectURL