peter.weik@indatex.com wrote:
> Hello,
>
> I have a java programm which shall open a Browser with a certain URL
The URL being?
> AND!!!!! if this browser window is closed from a use after a while, the
> java programm should be informed about this.
(snip example)
If the toddler trips over the plug and drops the computer, your
Java program will not be informed. I just wanted to make it
clear that it is *impossible* to guarantee that the application
would be informed.
> Could you help me?
Failing the above, and assuming all this is done with the
user's acitve consent (and trust) you might ..
Open a frames based web-page that has an applet in
one frame and the target document in another. The applet
send information via socket back to the application.
Every 0.nn milliseconds, the applet sends a message that
conforms it is active. If the signal has not been received in
2 x 0.nn ms, the application can assume the browser window
is closed.
Note that you might have to takes some extra precautions to
ensure that the the address of the page shown in the framed
web page has not changed (has the user clicked a link?).
HTH
Andrew T.
Peter.weik@indatex.com - 15 Sep 2006 17:23 GMT
Andrew Thompson schrieb:
> peter.weik@indatex.com wrote:
> > Hello,
[quoted text clipped - 34 lines]
>
> Andrew T.
Hello Andrew,
I try to make it more concret:
process = Runtime.getRuntime().exec ("rundll32
url.dll,FileProtocolHandler " + theUrl);
process.waitFor();
while(1==1){
if(process.exitValue() > 0){ //Process doesnt exist anymore
doSomething();
break;
}
}
The java programm (it is a component) starts, the loop is running, If I
close now the browser, the exitValue() is still 0!!
I simply dont understand. i have a variable of the process, the process
doesnt exist anymore (Browser Window closed from the user), why isn't
there a property in 'brower' which tells me "The process which a
reference is not alive anymore").
Have I been clear?
Thanks,
have a nice weekend,
Peter
Andrew Thompson - 15 Sep 2006 17:43 GMT
> I try to make it more concret:
I will read the problem carefully this time.
> process = Runtime.getRuntime().exec ("rundll32
> url.dll,FileProtocolHandler " + theUrl);
[quoted text clipped - 16 lines]
>
> Have I been clear?
Yes. That seems relatively clear, but I am no expert in
processes, so I had better make no comment on that
aspect of the problem. OTOH - I still recommend that
this is the entirely *wrong* strategy for detecting the end
of the 'display of a web page' - is that not the real intent
here?
After all, after your Java process has displayed the URL
in my browser, I might then use that window to surf 'home',
and while your process still reposrts that the JVM that ran
the browser is still 'active' - you cannot be sure it is displaying
the correct page.
As an aside - what is the content of this URL?
Do you *control* (can edit) the content?
Why is it so important for your application to know
whether the content is still open for display?
(There are a number of alternate strategies you might
try for the end effect you want, but I still do not have
a clear idea of what it is you are trying to *achieve*
by all this.)
Andrew T.