iAS and Frames and Session
Hello,
Are there any known issues with iAS and using/processing Frames/Framesets?
Here's my situation: I have one browser window (4.7.x, iAS = 6.1, OS = NT) that has a select box. When the
select box changes, I popup/refresh another window that has frames. Here's the "main" frameset code:
<frameset rows="10%,*,13%" onload="alert('All frames loaded')">
<frame name="bidesc" src="<%= IAS_HOST %>/NASApp/saleswizard/show_bi_desc" border="1" noresize
scrolling="no">
<frameset cols="44%,50%,6%">
<frame name="categories" src="<%= IAS_HOST %>/NASApp/saleswizard/show_categories" border="1" noresize
scrolling="auto">
<frame name="questions" src="<%= IAS_HOST %>/NASApp/saleswizard/show_questions" border="1" noresize
scrolling="auto">
<frame name="printer" src="<%= IAS_HOST %>/NASApp/saleswizard/show_printer" border="1" noresize
scrolling="no">
</frameset>
<frame name="buttons" src="<%= IAS_HOST %>/NASApp/saleswizard/show_buttons" border="1" noresize
scrolling="no">
</frameset><noframes></noframes>
The SRC of the embedded frames are JSPs. I'm using the Pet Store sample as my framework. The SRC urls all get forwarded to my "Controller" servlet.
The problem is that this works only occassionally. That is, sometimes my frames don't finish loading (I never get my "All frames loaded" alert message). It seems as if iAS (kjs) is hung waiting for something (deadlock?).
Through some debug statements, it appeared a couple times as if kjs hung at the req.getSession() method call in my controller servlet. The JSPs use the session as well.
As I mentioned this sometimes works, but not very consistently. I have also seen a "Concurrent Modification" failure I think when NAS is trying to save the session.
Any thoughts would be much appreciated.
Thanks in advance.
Jim
[2046 byte] By [
709214] at [2007-11-25 8:04:44]

Hi,
I have a similar problem. Did you find the answer?
Thanks,
Francois
> Hello,
>
> Are there any known issues with iAS and
> using/processing Frames/Framesets?
>
> Here's my situation: I have one browser window
> (4.7.x, iAS = 6.1, OS = NT) that has a select box.
> When the
> select box changes, I popup/refresh another window
> that has frames. Here's the "main" frameset code:
>
> <frameset rows="10%,*,13%" onload="alert('All
> l frames loaded')">
> <frame name="bidesc" src="<%= IAS_HOST
> ST %>/NASApp/saleswizard/show_bi_desc" border="1"
> noresize
> scrolling="no">
><frameset cols="44%,50%,6%">
> <frame name="categories" src="<%= IAS_HOST
> OST %>/NASApp/saleswizard/show_categories" border="1"
> noresize
> scrolling="auto">
> <frame name="questions" src="<%= IAS_HOST
> OST %>/NASApp/saleswizard/show_questions" border="1"
> noresize
> scrolling="auto">
> <frame name="printer" src="<%= IAS_HOST
> OST %>/NASApp/saleswizard/show_printer" border="1"
> noresize
> scrolling="no">
></frameset>
> <frame name="buttons" src="<%= IAS_HOST
> ST %>/NASApp/saleswizard/show_buttons" border="1"
> noresize
> scrolling="no">
></frameset><noframes></noframes>
>
> The SRC of the embedded frames are JSPs. I'm using
> the Pet Store sample as my framework. The SRC urls
> all get forwarded to my "Controller" servlet.
>
> The problem is that this works only occassionally.
> That is, sometimes my frames don't finish loading (I
> never get my "All frames loaded" alert message). It
> seems as if iAS (kjs) is hung waiting for something
> (deadlock?).
> Through some debug statements, it appeared a couple
> times as if kjs hung at the req.getSession() method
> call in my controller servlet. The JSPs use the
> session as well.
>
> As I mentioned this sometimes works, but not very
> consistently. I have also seen a "Concurrent
> Modification" failure I think when NAS is trying to
> save the session.
>
> Any thoughts would be much appreciated.
>
> Thanks in advance.
>
> Jim