You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Tim Ellison (JIRA)" <ji...@apache.org> on 2006/12/29 21:38:23 UTC

[jira] Resolved: (HARMONY-2413) [luni] java.net.Authenticator.getRequestorType returns null while RI returns valid result

     [ http://issues.apache.org/jira/browse/HARMONY-2413?page=all ]

Tim Ellison resolved HARMONY-2413.
----------------------------------

    Resolution: Fixed

Thanks Mikhail.

Patch applied to LUNI module at repo revision r491094.

Please check that it was applied as you expected.


> [luni] java.net.Authenticator.getRequestorType returns null while RI returns valid result
> -----------------------------------------------------------------------------------------
>
>                 Key: HARMONY-2413
>                 URL: http://issues.apache.org/jira/browse/HARMONY-2413
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Artem Aliev
>         Assigned To: Tim Ellison
>            Priority: Minor
>         Attachments: H-2413.patch
>
>
> import junit.framework.TestCase;
> import java.net.Authenticator;
> import java.net.*;
> public class test extends TestCase 
> {
>         public void testcase0() 
>         {
>                 TestAuthentificator localTestAuthentificator = new
> TestAuthentificator();
>                 InetAddress in = null;
>                 try
>                 {
>                         in = InetAddress.getLocalHost();
>                 }
>                 catch (UnknownHostException e)
>                 {
>                         e.printStackTrace();
>                 }
>                 Authenticator.setDefault(localTestAuthentificator);
>                 Authenticator.requestPasswordAuthentication(in, -1, "http",
> "promt", "HTTP");
>                 Authenticator.RequestorType returnValue =
> localTestAuthentificator.getRequestorTypetest();
>                 System.out.println("Authenticator.RequestorType ="
> +returnValue);
>                 assertNotNull(returnValue);
>         }
> }
>  class TestAuthentificator extends Authenticator 
> {
>         public TestAuthentificator() 
>         {super();
>         }
>          public Authenticator.RequestorType getRequestorTypetest()
>          {return getRequestorType();
>          }
> }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira