[Bug 54112] ISAPI redirector not working when IIS recycles

2015-09-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=54112

Rainer Jung  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INVALID

--- Comment #9 from Rainer Jung  ---
I can't see any problems with app pool recycling and the redirector for current
versions (1.2.42-dev on Windows 7 with IIS 7.5. Furthermore no feedback on the
questions for several months, so closing as INVALID.

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 54112] ISAPI redirector not working when IIS recycles

2015-01-07 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54112

Rainer Jung rainer.j...@kippdata.de changed:

   What|Removed |Added

 Status|REOPENED|NEEDINFO

--- Comment #8 from Rainer Jung rainer.j...@kippdata.de ---
Does this problem still exist? No user feedback since 2 years.

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 54112] ISAPI redirector not working when IIS recycles

2012-11-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54112

sivaram sivaramprasa...@gmail.com changed:

   What|Removed |Added

   Severity|critical|blocker

--- Comment #1 from sivaram sivaramprasa...@gmail.com ---
We are facing this issue when the IIS recycle happens. This is a show stopper
for our Website.

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 54112] ISAPI redirector not working when IIS recycles

2012-11-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54112

--- Comment #2 from Mladen Turk mt...@apache.org ---
Could you post your workers.properties file.
... and is it 1.2.36 or 1.2.37? If it's 1.2.36 use 1.2.37

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 54112] ISAPI redirector not working when IIS recycles

2012-11-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54112

--- Comment #3 from sivaram sivaramprasa...@gmail.com ---

isapi_redirect.dll file version - 1.2.36

worker.properties.minimal file

# The workers that jk should create and work with
#

worker.list=lb,jk-status

#
# Defining a worker named node1 and of type ajp13
# Note that the name and the type do not have to match.
#
worker.node1.type=ajp13
worker.node1.host=localhost
worker.node1.port=8009

#
# Defining a load balancer
# 

worker.lb.type=lb
worker.lb.balance_workers=node1

#
# Define status worker
#

worker.jk-status.type=status

worker.properties file.

# Define two status worker:
# - jk-status for read-only use
# - jk-manager for read/write use
worker.list=jk-status
worker.jk-status.type=status
worker.jk-status.read_only=true

worker.list=jk-manager
worker.jk-manager.type=status

# We define a load balancer worker
# with name balancer
worker.list=balancer
worker.balancer.type=lb
# error_escalation_time: seconds, default = recover_time/2 (=30)
# Determines, how fast a detected error should switch from
# local error state to global error state
# Since: 1.2.28
worker.balancer.error_escalation_time=0

# - max_reply_timeouts: number, default=0
#   If there are to many reply timeouts, a worker
#   is put into the error state, i.e. it will become
#   unavailable for all sessions residing on the respective
#   Tomcat. The number of tolerated reply timeouts is
#   configured with max_reply_timeouts. The number of
#   timeouts occuring is divided by 2 once a minute and the
#   resulting counter is compared against max_reply_timeouts.
#   If you set max_reply_timeouts to N and the errors are
#   occuring equally distributed over time, you will
#   tolerate N/2 errors per minute. If they occur in a burst
#   you will tolerate N errors.
#   Since: 1.2.24
worker.balancer.max_reply_timeouts=10



# Now we add members to the load balancer
# First member is node1, most
# attributes are inherited from the
# template worker.template.
worker.balancer.balance_workers=node1
worker.node1.reference=worker.template
worker.node1.host=localhost
worker.node1.port=8109
# Activation allows to configure
# whether this node should actually be used
# A: active (use node fully)
# D: disabled (only use, if sticky session needs this node)
# S: stopped (do not use)
#   Since: 1.2.19
worker.node1.activation=A

# Second member is node2, most
# attributes are inherited from the
# template worker.template.
worker.balancer.balance_workers=node2
worker.node2.reference=worker.template
worker.node2.host=localhost
worker.node2.port=8209
# Activation allows to configure
# whether this node should actually be used
# A: active (use node fully)
# D: disabled (only use, if sticky session needs this node)
# S: stopped (do not use)
#   Since: 1.2.19
worker.node2.activation=A

# Finally we put the parameters
# which should apply to all our ajp13
# workers into the referenced template
# - Type is ajp13
worker.template.type=ajp13

# - socket_connect_timeout: milliseconds, default=0
#   Since: 1.2.27
worker.template.socket_connect_timeout=5000

# - socket_keepalive: boolean, default=false
#   Should we send TCP keepalive packets
#   when connection is idle (socket option)?
worker.template.socket_keepalive=true

# - ping_mode: Character, default=none
#   When should we use cping/cpong connection probing?
#   C = directly after establishing a new connection
#   P = directly before sending each request
#   I = in regular intervals for idle connections
#   using the watchdog thread
#   A = all of the above
#   Since: 1.2.27
worker.template.ping_mode=A

# - ping_timeout: milliseconds, default=1
#   Wait timeout for cpong after cping
#   Can be overwritten for modes C and P
#   Using connect_timeout and prepost_timeout.
#   Since: 1.2.27
worker.template.ping_timeout=1

# - connection_pool_minsize: number, default=connection_pool_size
#   Lower pool size when shrinking pool due
#   to idle connections
#   We want all connections to be closed when
#   idle for a long time in order to prevent
#   firewall problems.
#   Since: 1.2.16
worker.template.connection_pool_minsize=0

# - connection_pool_timeout: seconds, default=0
#   Idle time, before a connection is eligible
#   for being closed (pool shrinking).
#   This should be the same value as connectionTimeout
#   in the Tomcat AJP connector, but there it is
#   milliseconds, here seconds.
worker.template.connection_pool_timeout=600

# - reply_timeout: milliseconds, default=0
#   Any pause longer than this timeout during waiting
#   for a part of the reply will abort handling the request
#   in mod_jk. The request will proceed running in
#   Tomcat, but the web server resources will be freed
#   and an error is send to the 

[Bug 54112] ISAPI redirector not working when IIS recycles

2012-11-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54112

Mladen Turk mt...@apache.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |INVALID

--- Comment #4 from Mladen Turk mt...@apache.org ---
(In reply to comment #3)
 
 worker.list=lb,jk-status
...
 worker.list=jk-status
...
 worker.list=jk-manager
...
 worker.list=balancer
...

Wow, what a pile of trash.
So how many workers you actually have and for what?
I'll just close this case, and you can seek guidance on users list.

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 54112] ISAPI redirector not working when IIS recycles

2012-11-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54112

sivaram sivaramprasa...@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|INVALID |---
 OS|All |Windows Server 2008

--- Comment #5 from sivaram sivaramprasa...@gmail.com ---
Hi,
Sorry I posted the incorrect data in my previous comment.
We have configured worker.properties.minimal file and the details are below.
We are using ISAPI redirector file version - 1.2.36


worker.properties.minimal file

# The workers that jk should create and work with
#

worker.list=lb,jk-status

#
# Defining a worker named node1 and of type ajp13
# Note that the name and the type do not have to match.
#
worker.node1.type=ajp13
worker.node1.host=localhost
worker.node1.port=8009

#
# Defining a load balancer
# 

worker.lb.type=lb
worker.lb.balance_workers=node1

#
# Define status worker
#

worker.jk-status.type=status

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 54112] ISAPI redirector not working when IIS recycles

2012-11-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54112

Mladen Turk mt...@apache.org changed:

   What|Removed |Added

 OS||All

--- Comment #6 from Mladen Turk mt...@apache.org ---
Like said, please try with latest (1.2.37)
It has fixed bug in shared memory address sequence which should relate to the
bug you are seeing.

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 54112] ISAPI redirector not working when IIS recycles

2012-11-12 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54112

--- Comment #7 from sivaram sivaramprasa...@gmail.com ---
Thank You, I will try to use the latest version of Jakarta plugin and let you
know the updates.

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[Bug 54112] ISAPI redirector not working when IIS recycles

2012-11-07 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=54112

sivaram sivaramprasa...@gmail.com changed:

   What|Removed |Added

 CC||sivaramprasa...@gmail.com
 OS||All

-- 
You are receiving this mail because:
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org