You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by "Vladimir Ivanov (JIRA)" <ji...@apache.org> on 2006/08/10 05:03:13 UTC

[jira] Created: (HARMONY-1126) [classlib][net] unexpected URISyntaxException for URI.parseServerAuthority()

[classlib][net] unexpected URISyntaxException for URI.parseServerAuthority()
----------------------------------------------------------------------------

                 Key: HARMONY-1126
                 URL: http://issues.apache.org/jira/browse/HARMONY-1126
             Project: Harmony
          Issue Type: Bug
          Components: Classlib
            Reporter: Vladimir Ivanov


The Harmony method URI.parseServerAuthority() throws URISyntaxException  for uri 'file://C:/1.txt'  while RI returns correct value.

==================== test.java =====================
import java.net.*;

public class test  { 

    public static void main (String[] args) throws Exception {
        System.out.println("res = " + URI.create("file://C:/1.txt").parseServerAuthority());
    }     
}
================================================

Output:
C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
java version "1.5.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))

res = file://C:/1.txt

C:\tmp\tmp17>C:\harmony\classlib1.5\deploy\jdk\jre\bin\java.exe -cp . -showversion test
java version 1.5 (subset)

(c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
Exception in thread "main" java.net.URISyntaxException: Invalid port number at index 2: C:
        at java.net.URI$Helper.parseAuthority(URI.java:417)
        at java.net.URI$Helper.access$1500(URI.java:22)
        at java.net.URI.parseServerAuthority(URI.java:1217)
        at test.main(test.java:6)


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

        

[jira] Updated: (HARMONY-1126) [classlib][net] unexpected URISyntaxException for URI.parseServerAuthority()

Posted by "Vladimir Ivanov (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/HARMONY-1126?page=all ]

Vladimir Ivanov updated HARMONY-1126:
-------------------------------------

    Attachment: URITest.patch

unit test.
Seems, that patch will be system dependent (special handling for Win should be added)

> [classlib][net] unexpected URISyntaxException for URI.parseServerAuthority()
> ----------------------------------------------------------------------------
>
>                 Key: HARMONY-1126
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1126
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vladimir Ivanov
>         Attachments: URITest.patch
>
>
> The Harmony method URI.parseServerAuthority() throws URISyntaxException  for uri 'file://C:/1.txt'  while RI returns correct value.
> ==================== test.java =====================
> import java.net.*;
> public class test  { 
>     public static void main (String[] args) throws Exception {
>         System.out.println("res = " + URI.create("file://C:/1.txt").parseServerAuthority());
>     }     
> }
> ================================================
> Output:
> C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
> java version "1.5.0"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
> BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))
> res = file://C:/1.txt
> C:\tmp\tmp17>C:\harmony\classlib1.5\deploy\jdk\jre\bin\java.exe -cp . -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> Exception in thread "main" java.net.URISyntaxException: Invalid port number at index 2: C:
>         at java.net.URI$Helper.parseAuthority(URI.java:417)
>         at java.net.URI$Helper.access$1500(URI.java:22)
>         at java.net.URI.parseServerAuthority(URI.java:1217)
>         at test.main(test.java:6)

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

        

[jira] Commented: (HARMONY-1126) [classlib][net] unexpected URISyntaxException for URI.parseServerAuthority()

Posted by "spark shen (JIRA)" <ji...@apache.org>.
    [ http://issues.apache.org/jira/browse/HARMONY-1126?page=comments#action_12436193 ] 
            
spark shen commented on HARMONY-1126:
-------------------------------------

I think RI is more reasonable, since according to RFC-2396 (3.2.2. Server-based Naming Authority)
      
      hostport      = host [ ":" port ]
      host          = hostname | IPv4address
      hostname      = *( domainlabel "." ) toplabel [ "." ]
      domainlabel   = alphanum | alphanum *( alphanum | "-" ) alphanum
      toplabel      = alpha | alpha *( alphanum | "-" ) alphanum

      IPv4address   = 1*digit "." 1*digit "." 1*digit "." 1*digit
      port          = *digit

':' only appears in [":"port] part, and never appears in host part.
Correct me if I am wrong.

Best regards

> [classlib][net] unexpected URISyntaxException for URI.parseServerAuthority()
> ----------------------------------------------------------------------------
>
>                 Key: HARMONY-1126
>                 URL: http://issues.apache.org/jira/browse/HARMONY-1126
>             Project: Harmony
>          Issue Type: Bug
>          Components: Classlib
>            Reporter: Vladimir Ivanov
>         Attachments: URITest.patch
>
>
> The Harmony method URI.parseServerAuthority() throws URISyntaxException  for uri 'file://C:/1.txt'  while RI returns correct value.
> ==================== test.java =====================
> import java.net.*;
> public class test  { 
>     public static void main (String[] args) throws Exception {
>         System.out.println("res = " + URI.create("file://C:/1.txt").parseServerAuthority());
>     }     
> }
> ================================================
> Output:
> C:\tmp\tmp17>C:\jrockit-jdk1.5.0-windows-ia32\bin\java.exe -cp . -showversion test
> java version "1.5.0"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-b64)
> BEA WebLogic JRockit(R) (build dra-38972-20041208-2001-win-ia32, R25.0.0-75, GC: System optimized over throughput (initial strategy singleparpar))
> res = file://C:/1.txt
> C:\tmp\tmp17>C:\harmony\classlib1.5\deploy\jdk\jre\bin\java.exe -cp . -showversion test
> java version 1.5 (subset)
> (c) Copyright 1991, 2006 The Apache Software Foundation or its licensors, as applicable.
> Exception in thread "main" java.net.URISyntaxException: Invalid port number at index 2: C:
>         at java.net.URI$Helper.parseAuthority(URI.java:417)
>         at java.net.URI$Helper.access$1500(URI.java:22)
>         at java.net.URI.parseServerAuthority(URI.java:1217)
>         at test.main(test.java:6)

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