[ http://issues.apache.org/jira/browse/HARMONY-1462?page=all ]
Paulex Yang reassigned HARMONY-1462:
------------------------------------
Assignee: Paulex Yang
> [classlib][luni] SocketPermission does not accept '*' as a port number
> ----------------------------------------------------------------------
>
> Key: HARMONY-1462
> URL: http://issues.apache.org/jira/browse/HARMONY-1462
> Project: Harmony
> Issue Type: Bug
> Components: Non-bug differences from RI
> Environment: Win XP
> Reporter: Mikhail Markov
> Assigned To: Paulex Yang
> Attachments: patch.diff
>
>
> Although API specification does not explicitly allow '*' usage as a port number for SocketPermission,
RI accept '*' as a port number (representing the full port range from 0 to 65535).
> ============== Test.java =================
> import java.net.SocketPermission;
> public class Test {
> public static void main(String[] args) throws Exception {
> try {
> SocketPermission sp = new SocketPermission("localhost:*", "listen");
> System.out.println("'*' for port is ok.");
> } catch (IllegalArgumentException iae) {
> System.out.println("'*' for port is not ok: " + iae);
> }
> }
> }
> ======================================
> Output on RI:
> '*' for port is ok.
> Output on Harmony:
> '*' for port is not ok: java.lang.IllegalArgumentException: Invalid port number specified
--
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
|