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 2007/01/02 12:59:27 UTC

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

     [ http://issues.apache.org/jira/browse/HARMONY-1126?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim Ellison reassigned HARMONY-1126:
------------------------------------

    Assignee: Tim Ellison

> [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
>         Assigned To: Tim Ellison
>         Attachments: H-1126.patch, 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