The following issue has been updated:

    Updater: Jason Dillon (mailto:[EMAIL PROTECTED])
       Date: Tue, 26 Aug 2003 3:22 AM
    Comment:
There is a twiddle component ;-)
    Changes:
             description changed from 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.



             Component changed to twiddle
             Component changed from core
    ---------------------------------------------------------------------
For a full history of the issue, see:

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

---------------------------------------------------------------------
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: Assigned
   Priority: Major

 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 3:22 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

Reply via email to