Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8555281
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T15:05:20+00:00 2026-06-11T15:05:20+00:00

I am trying to write the following section of php code in java. I

  • 0

I am trying to write the following section of php code in java. I will provide the php code and the java code. What I would like help with is a) am I even on the right track and b) the line with the “Please help here” comment, I am unsure of how to do this in java. This line is header("Location: ".$strCitiRedirectURL.$content."");

Thank you in advance.

php code:

$req =& new HTTP_Request($strCitiLoginURL);
            $req->setMethod(HTTP_REQUEST_METHOD_POST);
            $req->addPostData("instusername", $strInstUsername);
            $req->addPostData("institution", $strInstitution);
            $req->addPostData("key", $strInstitutionKey);
            $req->addPostData("type", "returning");

            $response = $req->sendRequest();

            if(isset($_GET['showDebug'])){          
                print $req->_buildRequest(); 
            }

            if (PEAR::isError($response)) {
                $content = $response->getMessage();
            } else {
                $content = $req->getResponseBody();
            }

            /* Check for 44 Character UUID */
            if (preg_match($pattern,$content)){
                print 'Success';
                ob_start();
                header("Location: ".$strCitiRedirectURL.$content."");
                ob_flush();
            /* No UUID.  Login to CITI failed.  We may need a new user */
            }elseif ($content == "-  error: learner not affiliated with institution, add learner or provide username and password"){

                // Resubmit as a new user
                /* Package data up to post to CITI */
                $req =& new HTTP_Request($strCitiLoginURL);
                $req->setMethod(HTTP_REQUEST_METHOD_POST);
                $req->addPostData("instusername", $strInstUsername);
                $req->addPostData("institution", $strInstitution);
                $req->addPostData("key", $strInstitutionKey);
                $req->addPostData("type", "new");
                $req->addPostData("first", $strFirst);
                $req->addPostData("last", $strLast);
                $req->addPostData("email", $strEmail);

                $response = $req->sendRequest();

                if(isset($_GET['showDebug'])){          
                    print $req->_buildRequest(); 
                }

                if (PEAR::isError($response)) {
                    $content = $response->getMessage();
                } else {
                    $content = $req->getResponseBody();
                }

                /* Check for 44 Character UUID */
                if (preg_match($pattern,$content)){
                    print 'Success';
                    ob_start();
            /*PLEASE HELP ON THIS LINE*/ header("Location: ".$strCitiRedirectURL.$content."");
                    ob_flush();
                }else{
                    $errMsg = $errMsg.' <li>CITI Error Returned: '.$content.'.</li>';
                }

java code

//****CITI CONFIGURATION****
            final String pattern = "([0-9A-\\-]{44})";
            final String CitiRedirectUrl = "https://www.citiprogram.org/members/mainmenu.asp?strKeyID=";
            final String CitiLoginUrl = "http://www.citiprogram.org/remoteloginII.asp";
            //****END CITI CONFIGURATION****

            try {
                // Construct data
                String data = URLEncoder.encode("instusername", "UTF-8") + "=" + URLEncoder.encode(c_form.getCan(), "UTF-8");
                data += "&" + URLEncoder.encode("institution", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");
                data += "&" + URLEncoder.encode("key", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");
                data += "&" + URLEncoder.encode("type", "UTF-8") + "=" + URLEncoder.encode("returning", "UTF-8");

                // Send data
                URL url = new URL("http://www.citiprogram.org/remoteloginII.asp");
                URLConnection conn = url.openConnection();
                conn.setDoOutput(true);
                OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
                wr.write(data);
                wr.flush();

                // Get the response
                BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                String line;
                while ((line = rd.readLine()) != null) {
                    System.out.println(line);
                    if (pregMatch(pattern, line)) {
                        //Do the header part from the php code
                    } else if (line.equals("-  error: learner not affiliated with institution, add learner or provide username and password")) {
                        // Resubmit as a new user
            /* Package data up to post to CITI */

                        // Construct data
                        String newdata = URLEncoder.encode("instusername", "UTF-8") + "=" + URLEncoder.encode(c_form.getCan(), "UTF-8");
                        newdata += "&" + URLEncoder.encode("institution", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");
                        newdata += "&" + URLEncoder.encode("key", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");
                        newdata += "&" + URLEncoder.encode("type", "UTF-8") + "=" + URLEncoder.encode("returning", "UTF-8");

                        // Send data
                        OutputStreamWriter newwr = new OutputStreamWriter(conn.getOutputStream());
                        newwr.write(data);
                        newwr.flush();

                        // Get the response
                        BufferedReader newrd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                        String newline;
                        while ((newline = newrd.readLine()) != null) {
                            System.out.println(newline);
                            if (pregMatch(pattern, newline)) {
                            } else {
                                //Print error message
                            }
                        }
                    }
                }
                wr.close();
                rd.close();
            } catch (Exception e) {
            }

//Check for 44 character UUID
    public static boolean pregMatch(String pattern, String content) {
        Pattern p = Pattern.compile(pattern);
        Matcher m = p.matcher(content);
        boolean b = m.matches();
        return b;
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T15:05:21+00:00Added an answer on June 11, 2026 at 3:05 pm

    I believe

    header("Location: ".$strCitiRedirectURL.$content."");
    

    in PHP would be the same as the following in Java (using your wr object):

    wr.sendRedirect("http://path.to.redirect/");
    

    You could also forward the request, but I have a feeling you just want the client to redirect to citirewards or whatever, in which case sendRedirect is the solution.

    EDIT: Source – http://docs.oracle.com/javaee/1.3/api/javax/servlet/http/HttpServletResponse.html#sendRedirect(java.lang.String)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to write equivalent linq code for following query. SELECT A.* FROM
I have been trying to write a regex that will remove whitespace following a
I am trying to write a very thin hypervisor that would have the following
I am trying to write the following .htaccess RewriteRule ^follower/([A-Za-z0-9-]+)/?$ follower.php?username=$1 [NC,L] But it
Hello i am trying to write the following function to display 7 days of
I'm trying to write a Linq2XML query to query the following XML. I need
I’m trying to write a grammar for a language which allows the following expressions:
I'm trying to write a function that does the following: takes an array of
I'm trying to write the phpdocumentor block for the following: /** * daysBetween *
I am trying to write a shell script to simulate the following problem: File

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.