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 10:11:18 UTC

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

Message:

  A new issue has been created in JIRA.

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

 Time Spent: Unknown
  Remaining: Unknown

    Project: Apache Geronimo
 Components: 
             core

   Assignee: 
   Reporter: Emerson Cargnin

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

Description:
And when using getting the twiddle/*.conf, it giver 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 neddless to StringIndexOutOfBoundsException exception, since say that the glog 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