DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=35064>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=35064

           Summary: Admin WebApp fails to open connectors when clicked.
           Product: Tomcat 5
           Version: 5.5.9
          Platform: Other
        OS/Version: Windows XP
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Webapps:Administration
        AssignedTo: tomcat-dev@jakarta.apache.org
        ReportedBy: [EMAIL PROTECTED]


When I expand the Service and attempt to click on a connector I receive the
following error:
HTTP STATUS 500 "Error retrieving attribute address"

My tomcat configuration is:
<?xml version="1.0" encoding="ISO-8859-1"?>
<Server port="8005" shutdown="SHUTDOWN">
        <Listener 
className="org.apache.catalina.mbeans.ServerLifecycleListener" />
        <Listener
className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener" />
        <Listener
className="org.apache.catalina.storeconfig.StoreConfigLifecycleListener"/>

        <!-- Global JNDI resources -->
        <GlobalNamingResources>
                <Resource name="UserDatabase" auth="Container"
                                        type="org.apache.catalina.UserDatabase"
                                        description="User database that can be 
updated and saved"
                                        
factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
                                        pathname="conf/tomcat-users.xml" />

        </GlobalNamingResources>

        <Service name="Catalina">
                <!-- Define a non-SSL HTTP/1.1 Connector on 10.0.2.81:80 -->
                <Connector      address="10.0.2.81" port="80"
                                        maxThreads="300" minSpareThreads="25" 
maxSpareThreads="75"
                                        enableLookups="false" 
redirectPort="443" acceptCount="100"
                                        connectionTimeout="20000" 
disableUploadTimeout="true" />

                <!-- Define a SSL HTTP/1.1 Connector on 10.0.2.81:443 -->
                <Connector      address="10.0.2.81" port="443"
                                        maxThreads="300" minSpareThreads="25" 
maxSpareThreads="75"
                                        enableLookups="false" acceptCount="100" 
connectionTimeout="20000" 
                                        disableUploadTimeout="true"
                                        scheme="https" secure="true" 
clientAuth="false" sslProtocol="SSL"
                                        
keystoreFile="certs/www_rapidclose_com.jks" keystorePass="alpine"/>

                <!-- Define a non-SSL HTTP/1.1 Connector on 10.0.2.51:80 -->
                <Connector      address="10.0.2.51" port="8080"
                                        maxThreads="150" minSpareThreads="25" 
maxSpareThreads="75"
                                        enableLookups="false" 
redirectPort="8443" acceptCount="100"
                                        connectionTimeout="20000" 
disableUploadTimeout="true" />

                <!-- Define a SSL HTTP/1.1 Connector on 10.0.2.51:443 -->
                <Connector      address="10.0.2.51" port="8443"
                                        maxThreads="150" minSpareThreads="25" 
maxSpareThreads="75"
                                        enableLookups="false" acceptCount="100" 
connectionTimeout="20000" 
                                        disableUploadTimeout="true"
                                        scheme="https" secure="true" 
clientAuth="false" sslProtocol="SSL"
                                        keystoreFile="certs/apps.ks" 
keystorePass="alpine"/>
                
                <Engine name="Catalina" defaultHost="www.rapidclose.com">
                        <Realm 
className="org.apache.catalina.realm.UserDatabaseRealm"
                                                resourceName="UserDatabase"/>

                        <!-- Define the default virtual host for 
www.rapidclose.com -->
                        <Host name="10.0.2.81" 
appBase="websites/www_rapidclose_com/webapps"
                                                unpackWARs="true" 
autoDeploy="true">
                                <Alias>www.rapidclose.com</Alias>

                                <!-- Log Access to host site -->
                                <Valve 
className="org.apache.catalina.valves.FastCommonAccessLogValve"
                                                        directory="logs" 
prefix="rapidclose_access_" suffix=".log"
                                                        pattern="common" 
resolveHosts="false"/>

          </Host>
                        
                        <!-- Define the default virtual host for 
apps.sfsltd.com -->
                        <Host name="10.0.2.51" 
appBase="websites/apps_sfsltd_com/webapps"
                                                unpackWARs="true" 
autoDeploy="true">
                                <Alias>apps.sfsltd.com</Alias>

                                <!-- Log Access to host site -->
                                <Valve 
className="org.apache.catalina.valves.FastCommonAccessLogValve"
                                                        directory="logs" 
prefix="apps_access_" suffix=".log"
                                                        pattern="common" 
resolveHosts="false"/>
                        </Host>
                </Engine>
        </Service>
</Server>

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to