You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by ji...@codehaus.org on 2003/08/26 17:29:22 UTC

[jira] Closed: (GERONIMO-21) Problem with path when creating URL for geronimo's conf dir

Message:

   The following issue has been closed.

---------------------------------------------------------------------
View the issue:

  http://jira.codehaus.org/secure/ViewIssue.jspa?key=GERONIMO-21


Here is an overview of the issue:
---------------------------------------------------------------------
        Key: GERONIMO-21
    Summary: Problem with path when creating URL for geronimo's conf dir
       Type: Bug

     Status: Closed
   Priority: Major
 Resolution: FIXED

 Time Spent: Unknown
  Remaining: Unknown

    Project: Apache Geronimo
 Components: 
             twiddle

   Assignee: Jason Dillon
   Reporter: Emerson Cargnin

    Created: Tue, 26 Aug 2003 3:10 AM
    Updated: Tue, 26 Aug 2003 10:27 AM
Environment: windows 2000

Description:
When getting the twiddle/*.conf, it gives an malformedURL error  at

 url = new URL(urlspec); line 701 of Strings, method toURL.

If I change to twiddle/geronimo.conf, the error change to StringIndexOutOfBoundsException exception, since the glob string (geronimo.conf) has no "*".

int i = glob.indexOf("*");
final String prefix = glob.substring(0, i);

I hack it so I could make it work :

if (baseURL.getProtocol().equals("file")) {
            // only can glob on file urls
            return new URL[] { baseURL };
        }

took off the "!" before baseURL.

jason is aware of the problem.

BTW, shouldn't have a twiddle component for registering bugs? I did it at core instead.




---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://jira.codehaus.org/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira