----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files. Don't make us guess your problem!!!
----------------------------------------------------------------
Frank Morton writes:
> I'm sure I'm not expecting init() to be called all the time. All it is doing
> is loading a properties list. Plus everything works peachy keen
> once you get past that first load. And, if I load just one frame manually,
> then go the url that starts up both frames, all is ok. It's just that first
> hit.
Just a guess, but maybe you should have your service method ensure
that the init() method has run, using wait() and notify(). I suggest
this because maybe the second servlet call is happening too
soon--before the servlet has a chance to init(), and so the servlet
ignores the call. Of course, if you never get to the service method,
then you're still in trouble. Maybe you should just have one page
whose purpose is just to call init(), then load your frames.
Andrew.
--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/main/mail.html>
Problems?: [EMAIL PROTECTED]