There is no problem using servlets in frames.  As far as I can tell from
your info, you use a servlet to generate a form in one frame.  A servlet
does not appear to be involved in the later steps: e.g. reading input
data from the form.  So the most obvious problem would seem to be a lack
of a TARGET definition in the form definition.  Since you say it is
identical to the previous html file, it probably does have a TARGET
parameter, so check the generated page's source for syntax errors.
This is not a JServ problem.  I also don't think it is a servlet
problem.

Christoph Kukulies wrote:
> 
> I skimmed the FAQ for the word 'frame', 'frameset' to no avail.
> Here my problem:
> 
> I had:
> <html>
> <frameset frameborder=0 framespacing=0 rows="260,*">
> <frame src="auswahl.html" name="testsuite">
> <frame src="nothing.html" name="logwindow">
> </frameset>
> </html>
> 
> auswahl.html was a FORM that had an ACTION="/cgi-bin/setzen".
> and 'setzen' was a C prgram that wrote a <TABLE> into the "logwindow" frame.
> 
> I now want to make something like:
> <html>
> <frameset frameborder=0 framespacing=0 rows="260,*">
> <frame src="http://192.168.1.119/example/Hello" name="testsuite">
> <frame src="nothing.html" name="logwindow">
> </frameset>
> </html>
> 
> Hello.java is the modified Hello example JServlet which is modified
> so that it writes the <FORM> and ACTION in the same way the auswahl.html
> page did.
> 
> Only, it does not come in the desired frame nor does it seem to
> get any environment/cgi parameter information.
> 

> --
> Chris Christoph P. U. Kukulies [EMAIL PROTECTED]
> 

-- 
John McNally
Graduate Student, UCLA
e-mail: [EMAIL PROTECTED]


--
--------------------------------------------------------------
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
READ THE FAQ!!!!     <http://java.apache.org/faq/>
Archives and Other:  <http://java.apache.org/main/mail.html/>
Problems?:           [EMAIL PROTECTED]

Reply via email to