You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Daniel (JIRA)" <ji...@apache.org> on 2008/05/25 19:49:56 UTC

[jira] Updated: (GERONIMO-4078) Database Pools page: JNDI name formatting inconsistent

     [ https://issues.apache.org/jira/browse/GERONIMO-4078?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel updated GERONIMO-4078:
-----------------------------

    Description: 
The JNDI name is once displayed in plain text and once URLenconded if it contains slashes (and probably other characters):



<?xml version="1.0" encoding="UTF-8"?>
<web-app
    xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-1.1">
    <environment>
        <moduleId>
            <artifactId>MyWebApp</artifactId>
        </moduleId>
        <dependencies>
            <dependency>
                <groupId>console.dbpool</groupId>
                <artifactId>jdbc%2FWorld</artifactId>                                                                    <======================
            </dependency>
        </dependencies>
    </environment>

    <context-root>/MyWebApp</context-root>

    <!-- security settings, if any, go here -->

    <resource-ref>
        <ref-name>jdbc/MyDataSource</ref-name>
        <resource-link>jdbc/World</resource-link>                                                              <=======================
    </resource-ref>
</web-app>

  was:
The JNDI name is once displayed in plain text and once URLenconded if they contain slashes (and probably other characters):



<?xml version="1.0" encoding="UTF-8"?>
<web-app
    xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-1.1">
    <environment>
        <moduleId>
            <artifactId>MyWebApp</artifactId>
        </moduleId>
        <dependencies>
            <dependency>
                <groupId>console.dbpool</groupId>
                <artifactId>jdbc%2FWorld</artifactId>                                                                    <======================
            </dependency>
        </dependencies>
    </environment>

    <context-root>/MyWebApp</context-root>

    <!-- security settings, if any, go here -->

    <resource-ref>
        <ref-name>jdbc/MyDataSource</ref-name>
        <resource-link>jdbc/World</resource-link>                                                              <=======================
    </resource-ref>
</web-app>


> Database Pools page: JNDI name formatting inconsistent
> ------------------------------------------------------
>
>                 Key: GERONIMO-4078
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-4078
>             Project: Geronimo
>          Issue Type: Bug
>      Security Level: public(Regular issues) 
>          Components: console
>    Affects Versions: 2.1.1
>            Reporter: Daniel
>            Priority: Minor
>
> The JNDI name is once displayed in plain text and once URLenconded if it contains slashes (and probably other characters):
> <?xml version="1.0" encoding="UTF-8"?>
> <web-app
>     xmlns="http://geronimo.apache.org/xml/ns/j2ee/web-1.1">
>     <environment>
>         <moduleId>
>             <artifactId>MyWebApp</artifactId>
>         </moduleId>
>         <dependencies>
>             <dependency>
>                 <groupId>console.dbpool</groupId>
>                 <artifactId>jdbc%2FWorld</artifactId>                                                                    <======================
>             </dependency>
>         </dependencies>
>     </environment>
>     <context-root>/MyWebApp</context-root>
>     <!-- security settings, if any, go here -->
>     <resource-ref>
>         <ref-name>jdbc/MyDataSource</ref-name>
>         <resource-link>jdbc/World</resource-link>                                                              <=======================
>     </resource-ref>
> </web-app>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.