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=30748>.
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=30748

Apache2/Tomcat + IE - cookies problem

           Summary: Apache2/Tomcat + IE - cookies problem
           Product: Tomcat 5
           Version: 5.0.19
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Catalina
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


I am using Apache 2.0.20 and Apache Tomcat 5.0.19. I got the following problem :
IE6 (I don't know if the problem exists in previous versions) doesn't see the 
cookies which were sent by servlet's. This problem doesn't exists for Opera and 
Netscape. Here is my configuration :

httpd.conf :

 LoadModule jk2_module modules/mod_jk2.so
 JkSet config.file /usr/local/apache2/conf/workers2.properties

workers2.properties :

 # Example socket channel, override port and host.
 [channel.socket:localhost:8009]
 port=8009
 host=localhost
      
 # define the worker
 [ajp13:localhost:8009]
 channel=channel.socket:localhost:8009
         
 [uri:/ecr/]
 info=ECR index servlet
 worker=ajp13:localhost:8009

server.xml :

  <Host name="localhost">
    <Connector port="8080"
               maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
               enableLookups="false" redirectPort="8443" acceptCount="100"
               debug="0" connectionTimeout="20000" 
               disableUploadTimeout="true"/>
  </Host>

  <Connector className="org.apache.coyote.tomcat5.CoyoteConnector"
             port="8009" minProcessors="5" maxProcessors="75"
             enableLookups="true" redirectPort="8443"
             acceptCount="10" debug="0" connectionTimeout="200000"
             useURIValidationHack="false"
             protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>

  <Engine name="Catalina" defaultHost="localhost" debug="0">

      <Logger className="org.apache.catalina.logger.FileLogger"
              prefix="catalina_log." suffix=".txt"
              timestamp="true"/>

      <Realm className="org.apache.catalina.realm.UserDatabaseRealm"
                 debug="0" resourceName="UserDatabase"/>
      <Host name="localhost" debug="0" appBase="webapps"
            unpackWARs="true" autoDeploy="true"
            xmlValidation="false" xmlNamespaceAware="false">

            <Context path="/ecr" docBase="ecr" debug="0" reloadable="true">
              <Logger className="org.apache.catalina.logger.FileLogger"
                      directory="logs"  prefix="localhost_ecr_log." 
                      suffix=".txt" timestamp="true"/>
            </Context>

      </Host>
  </Engine>

web.xml :

  <web-app>

     <servlet>
          <servlet-name>index</servlet-name>
          <servlet-class>ecr.index</servlet-class>
     </servlet>

     <servlet-mapping>
          <servlet-name>index</servlet-name>
          <url-pattern>/</url-pattern>
     </servlet-mapping>
   
  </web-app>

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

Reply via email to