Frameset problem with mod_webapp

2002-08-19 Thread Sudhakar Barua

Hi, I couldn't get a single solution in the mailing list archive for my
problem below.

I am using Apache 1.3.20 with TOMCAT 4.0.4 using mod_webapp wrap connector,
and I am having problems loading .jsp pages in  frames.
The problem persists even for simple .html files.My file test.html consists
of:-

frameset cols=*,250
frame src=left.html/frame

frame src=right.html/frame
/frameset

When I load test.html directly(i.e.,bypassing the Apache Web Server)
http://localhost:8080/kamatoapp/kamato/test.html, everything works fine.

But I get one of these errors everytime I try to load the frameset through
the Apache-Tomcat connector, using the url
http://localhost/kamatoapp/kamato/test.html

1.)browser says:-

WebApp: Error 500
(File: pr_warp.c Line: 438)
--

Invalid packet 6
--


2.)access.log says:-

127.0.0.1 - - [19/Aug/2002:10:14:58 +0200] GET /kamatoapp/kamato/left.html
HTTP/1.1 304 0

[HTTP:304 error means resource Not Modified]


3.)or windows error says:-

Apache.exe has generated errors and will be shut down


4.)or, if I press F5(Reload) the browser simply goes in an unresponsive
mode.



Mit freundlichem Gruß
Best regards
Sudhakar Barua
(Software Development)


| AdaKoS GmbH - Advanced Knowledge Solutions
| Ohmstrasse 3
| D-85716 Unterschleissheim
| Germany
| Fax.:   +49-(0)89-189496-11
| Handy:+49-(0)160 437 0488
| E-mail: [EMAIL PROTECTED]
| [EMAIL PROTECTED]
| URL:http://www.adakos.com




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




RE: Frameset problem

2002-05-13 Thread Abraham Fathman

Or create a your session in index.jsp...

-Original Message-
From: Rick Fincher [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, May 07, 2002 2:21 PM
To: Tomcat Users List
Subject: Re: Frameset problem


If your index.jsp is a frameset each frame gets called with a different
session number.

You may need to make a simple index.jsp that calls your frameset,
otherwise session info set in one frame won't be available to pages in
another frame.

Rick

- Original Message -
From: Vincent Lambert [EMAIL PROTECTED]
To: 'Tomcat Users List' [EMAIL PROTECTED]
Sent: Tuesday, May 07, 2002 11:35 AM
Subject: RE : Frameset problem


 Apache is not responding any more...


 -Message d'origine-
 De : Abraham Fathman [mailto:[EMAIL PROTECTED]]
 Envoye : mardi 7 mai 2002 16:31
 A : 'Tomcat Users List'
 Objet : RE: Frameset problem


 What is the problem that you are having?

 I had a problem in a similar context with sessions. This is because 
 the first url I would goto was domain.com and then I would get 
 redirected to server.domain.com...

 Abe

 -Original Message-
 From: Vincent Lambert [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, May 07, 2002 8:11 AM
 To: 'Tomcat Users List'
 Subject: Frameset problem


 Hi,

 I am using TC 4.0.3 with JDK 1.4 connected to apache with webapp 
 connector. Every thing works find except when i call two or more JSP 
 within a frameset !

 Did someone experience the same problem and how can I fixe it.

 Thanks in advance,

 Regards,
 Vince

 PS : My files...

 httpd.conf :

 VirtualHost 192.10.200.65
 ServerName www.test6.vla
 DocumentRoot C:\dev\projets\FrameSet
 WebAppConnection warpTest6 warp localhost:8008
 WebAppDeploy test5 warpTest6 /webapp
 /VirtualHost


 server.xml:

 Host name =www.test6.vla
 Context path=/webapp docBase=C:\dev\projets\FrameSet\webapp /
 Logger className=org.apache.catalina.logger.FileLogger
 prefix=test6. siffix=.out
 timestamp=true/
 /Host


 index.html:

 frameset rows=20%,*
 frame name=menu src=/page_0.html/
 frameset cols=50%,50%
 frame name=menu src=/webapp/jsp/jsp_1.jsp/
 frame name=menu src=/webapp/jsp/jsp_2.jsp/
 /frameset
 /frameset



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



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


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




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



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




Frameset problem

2002-05-07 Thread Vincent Lambert

Hi,

I am using TC 4.0.3 with JDK 1.4 connected to apache with webapp
connector.
Every thing works find except when i call two or more JSP within a
frameset !

Did someone experience the same problem and how can I fixe it.

Thanks in advance,

Regards,
Vince

PS : My files...

httpd.conf :

VirtualHost 192.10.200.65
ServerName www.test6.vla
DocumentRoot C:\dev\projets\FrameSet
WebAppConnection warpTest6 warp localhost:8008
WebAppDeploy test5 warpTest6 /webapp
/VirtualHost


server.xml:

Host name =www.test6.vla
Context path=/webapp
 docBase=C:\dev\projets\FrameSet\webapp /
Logger className=org.apache.catalina.logger.FileLogger
prefix=test6. siffix=.out
timestamp=true/
/Host


index.html:

frameset rows=20%,*
frame name=menu src=/page_0.html/
frameset cols=50%,50%
frame name=menu src=/webapp/jsp/jsp_1.jsp/
frame name=menu src=/webapp/jsp/jsp_2.jsp/
/frameset
/frameset



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




RE: Frameset problem

2002-05-07 Thread Tim Cronin

I have the same problem.
I found this link, is this the error your getting?

http://www.tek-tips.com/gfaqs.cfm/lev2/3/lev3/22/spid/65/sfid/1552

I moved to mod_jk and all works ok.

-Original Message-
From: Vincent Lambert [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 07, 2002 7:11 AM
To: 'Tomcat Users List'
Subject: Frameset problem


Hi,

I am using TC 4.0.3 with JDK 1.4 connected to apache with webapp
connector.
Every thing works find except when i call two or more JSP within a
frameset !

Did someone experience the same problem and how can I fixe it.

Thanks in advance,

Regards,
Vince

PS : My files...

httpd.conf :

VirtualHost 192.10.200.65
ServerName www.test6.vla
DocumentRoot C:\dev\projets\FrameSet
WebAppConnection warpTest6 warp localhost:8008
WebAppDeploy test5 warpTest6 /webapp
/VirtualHost


server.xml:

Host name =www.test6.vla
Context path=/webapp
 docBase=C:\dev\projets\FrameSet\webapp /
Logger className=org.apache.catalina.logger.FileLogger
prefix=test6. siffix=.out
timestamp=true/
/Host


index.html:

frameset rows=20%,*
frame name=menu src=/page_0.html/
frameset cols=50%,50%
frame name=menu src=/webapp/jsp/jsp_1.jsp/
frame name=menu src=/webapp/jsp/jsp_2.jsp/
/frameset
/frameset



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

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




RE: Frameset problem

2002-05-07 Thread Abraham Fathman

What is the problem that you are having?

I had a problem in a similar context with sessions. This is because the
first url I would goto was domain.com and then I would get redirected to
server.domain.com...

Abe

-Original Message-
From: Vincent Lambert [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, May 07, 2002 8:11 AM
To: 'Tomcat Users List'
Subject: Frameset problem


Hi,

I am using TC 4.0.3 with JDK 1.4 connected to apache with webapp
connector. Every thing works find except when i call two or more JSP
within a frameset !

Did someone experience the same problem and how can I fixe it.

Thanks in advance,

Regards,
Vince

PS : My files...

httpd.conf :

VirtualHost 192.10.200.65
ServerName www.test6.vla
DocumentRoot C:\dev\projets\FrameSet
WebAppConnection warpTest6 warp localhost:8008
WebAppDeploy test5 warpTest6 /webapp
/VirtualHost


server.xml:

Host name =www.test6.vla
Context path=/webapp
 docBase=C:\dev\projets\FrameSet\webapp /
Logger className=org.apache.catalina.logger.FileLogger
prefix=test6. siffix=.out
timestamp=true/
/Host


index.html:

frameset rows=20%,*
frame name=menu src=/page_0.html/
frameset cols=50%,50%
frame name=menu src=/webapp/jsp/jsp_1.jsp/
frame name=menu src=/webapp/jsp/jsp_2.jsp/
/frameset
/frameset



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



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




RE : Frameset problem

2002-05-07 Thread Vincent Lambert

Apache is not responding any more...


-Message d'origine-
De : Abraham Fathman [mailto:[EMAIL PROTECTED]] 
Envoye : mardi 7 mai 2002 16:31
A : 'Tomcat Users List'
Objet : RE: Frameset problem


What is the problem that you are having?

I had a problem in a similar context with sessions. This is because the
first url I would goto was domain.com and then I would get redirected to
server.domain.com...

Abe

-Original Message-
From: Vincent Lambert [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, May 07, 2002 8:11 AM
To: 'Tomcat Users List'
Subject: Frameset problem


Hi,

I am using TC 4.0.3 with JDK 1.4 connected to apache with webapp
connector. Every thing works find except when i call two or more JSP
within a frameset !

Did someone experience the same problem and how can I fixe it.

Thanks in advance,

Regards,
Vince

PS : My files...

httpd.conf :

VirtualHost 192.10.200.65
ServerName www.test6.vla
DocumentRoot C:\dev\projets\FrameSet
WebAppConnection warpTest6 warp localhost:8008
WebAppDeploy test5 warpTest6 /webapp
/VirtualHost


server.xml:

Host name =www.test6.vla
Context path=/webapp
 docBase=C:\dev\projets\FrameSet\webapp /
Logger className=org.apache.catalina.logger.FileLogger
prefix=test6. siffix=.out
timestamp=true/
/Host


index.html:

frameset rows=20%,*
frame name=menu src=/page_0.html/
frameset cols=50%,50%
frame name=menu src=/webapp/jsp/jsp_1.jsp/
frame name=menu src=/webapp/jsp/jsp_2.jsp/
/frameset
/frameset



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



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


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




RE: RE : Frameset problem

2002-05-07 Thread Whitcomb, Roger

What OS?  I have been using FRAMESET with multiple JSPs (including some that define 
APPLETS) for a while with no problems.  But I have been using mod_jk (this is on Win 
NT and Win 2K) to connect to Apache (1.3.23 and 1.3.24).

Roger Whitcomb
Computer Associates
Senior Software Engineer
Development
Phone: +1 408 965 8653
FAX: +1 408 965 8805
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 


-Original Message-
From: Vincent Lambert [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 07, 2002 8:35 AM
To: 'Tomcat Users List'
Subject: RE : Frameset problem


Apache is not responding any more...


-Message d'origine-
De : Abraham Fathman [mailto:[EMAIL PROTECTED]] 
Envoye : mardi 7 mai 2002 16:31
A : 'Tomcat Users List'
Objet : RE: Frameset problem


What is the problem that you are having?

I had a problem in a similar context with sessions. This is because the
first url I would goto was domain.com and then I would get redirected to
server.domain.com...

Abe

-Original Message-
From: Vincent Lambert [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, May 07, 2002 8:11 AM
To: 'Tomcat Users List'
Subject: Frameset problem


Hi,

I am using TC 4.0.3 with JDK 1.4 connected to apache with webapp
connector. Every thing works find except when i call two or more JSP
within a frameset !

Did someone experience the same problem and how can I fixe it.

Thanks in advance,

Regards,
Vince

PS : My files...

httpd.conf :

VirtualHost 192.10.200.65
ServerName www.test6.vla
DocumentRoot C:\dev\projets\FrameSet
WebAppConnection warpTest6 warp localhost:8008
WebAppDeploy test5 warpTest6 /webapp
/VirtualHost


server.xml:

Host name =www.test6.vla
Context path=/webapp
 docBase=C:\dev\projets\FrameSet\webapp /
Logger className=org.apache.catalina.logger.FileLogger
prefix=test6. siffix=.out
timestamp=true/
/Host


index.html:

frameset rows=20%,*
frame name=menu src=/page_0.html/
frameset cols=50%,50%
frame name=menu src=/webapp/jsp/jsp_1.jsp/
frame name=menu src=/webapp/jsp/jsp_2.jsp/
/frameset
/frameset



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



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


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

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




RE: RE : Frameset problem

2002-05-07 Thread Richard Bailey

I too have been using framesets with no problem, in fact one page with a 
frameset is a jsp page.
What error are you getting?

Regards,
Richard

At 12:08 PM 2002-05-07 -0400, you wrote:
What OS?  I have been using FRAMESET with multiple JSPs (including some 
that define APPLETS) for a while with no problems.  But I have been using 
mod_jk (this is on Win NT and Win 2K) to connect to Apache (1.3.23 and 1.3.24).

Roger Whitcomb
Computer Associates
Senior Software Engineer
Development
Phone: +1 408 965 8653
FAX: +1 408 965 8805
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED]


-Original Message-
From: Vincent Lambert [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 07, 2002 8:35 AM
To: 'Tomcat Users List'
Subject: RE : Frameset problem


Apache is not responding any more...


-Message d'origine-
De : Abraham Fathman [mailto:[EMAIL PROTECTED]]
Envoye : mardi 7 mai 2002 16:31
A : 'Tomcat Users List'
Objet : RE: Frameset problem


What is the problem that you are having?

I had a problem in a similar context with sessions. This is because the
first url I would goto was domain.com and then I would get redirected to
server.domain.com...

Abe

-Original Message-
From: Vincent Lambert [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 07, 2002 8:11 AM
To: 'Tomcat Users List'
Subject: Frameset problem


Hi,

I am using TC 4.0.3 with JDK 1.4 connected to apache with webapp
connector. Every thing works find except when i call two or more JSP
within a frameset !

Did someone experience the same problem and how can I fixe it.

Thanks in advance,

Regards,
Vince

PS : My files...

httpd.conf :

VirtualHost 192.10.200.65
 ServerName www.test6.vla
 DocumentRoot C:\dev\projets\FrameSet
 WebAppConnection warpTest6 warp localhost:8008
 WebAppDeploy test5 warpTest6 /webapp
/VirtualHost


server.xml:

Host name =www.test6.vla
 Context path=/webapp
 docBase=C:\dev\projets\FrameSet\webapp /
 Logger className=org.apache.catalina.logger.FileLogger
 prefix=test6. siffix=.out
 timestamp=true/
/Host


index.html:

frameset rows=20%,*
 frame name=menu src=/page_0.html/
 frameset cols=50%,50%
 frame name=menu src=/webapp/jsp/jsp_1.jsp/
 frame name=menu src=/webapp/jsp/jsp_2.jsp/
 /frameset
/frameset



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



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


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

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


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




Re: Frameset problem

2002-05-07 Thread Rick Fincher

If your index.jsp is a frameset each frame gets called with a different
session number.

You may need to make a simple index.jsp that calls your frameset, otherwise
session info set in one frame won't be available to pages in another frame.

Rick

- Original Message -
From: Vincent Lambert [EMAIL PROTECTED]
To: 'Tomcat Users List' [EMAIL PROTECTED]
Sent: Tuesday, May 07, 2002 11:35 AM
Subject: RE : Frameset problem


 Apache is not responding any more...


 -Message d'origine-
 De : Abraham Fathman [mailto:[EMAIL PROTECTED]]
 Envoye : mardi 7 mai 2002 16:31
 A : 'Tomcat Users List'
 Objet : RE: Frameset problem


 What is the problem that you are having?

 I had a problem in a similar context with sessions. This is because the
 first url I would goto was domain.com and then I would get redirected to
 server.domain.com...

 Abe

 -Original Message-
 From: Vincent Lambert [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, May 07, 2002 8:11 AM
 To: 'Tomcat Users List'
 Subject: Frameset problem


 Hi,

 I am using TC 4.0.3 with JDK 1.4 connected to apache with webapp
 connector. Every thing works find except when i call two or more JSP
 within a frameset !

 Did someone experience the same problem and how can I fixe it.

 Thanks in advance,

 Regards,
 Vince

 PS : My files...

 httpd.conf :

 VirtualHost 192.10.200.65
 ServerName www.test6.vla
 DocumentRoot C:\dev\projets\FrameSet
 WebAppConnection warpTest6 warp localhost:8008
 WebAppDeploy test5 warpTest6 /webapp
 /VirtualHost


 server.xml:

 Host name =www.test6.vla
 Context path=/webapp
 docBase=C:\dev\projets\FrameSet\webapp /
 Logger className=org.apache.catalina.logger.FileLogger
 prefix=test6. siffix=.out
 timestamp=true/
 /Host


 index.html:

 frameset rows=20%,*
 frame name=menu src=/page_0.html/
 frameset cols=50%,50%
 frame name=menu src=/webapp/jsp/jsp_1.jsp/
 frame name=menu src=/webapp/jsp/jsp_2.jsp/
 /frameset
 /frameset



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



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


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




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