Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q4048 I know that using Java I can open a document in another frame using showDocument, but, how can I generate the content of that frame instead of getting it from a URL?

You are here: irt.org | FAQ | Java | Q4048 [ previous next ]

This is not possible using Java applets . One thing you can do is, your applet will take inputs from the user, transfer it to some server program, generate the intended page on the server side. And now this page can be shown to the user again using showDocument . So this will involve client server communication, which you can achive using RMI / CORBA etc. Or you can better go for Servlets which will be the most suitable solution for your problem.

©2018 Martin Webb