>> At my company we're preparing a massive roll-out of new Windows XP
>> Workstations (with SP2), in the initial installation procedure we plan to
[quoted text clipped - 5 lines]
>> is there an elegant way to give an answer to the following questions :
>> - determine the JRE version used in the Internet Browser
<http://www.physci.org/pc/property.jsp?prop=java.version>
BTW - does 'the Internet Browser' actually mean 'the Internet Explorer'?[1]
(If so, is it all Win? All IE 5.5+?)
...
>> - how should we do it: java-applet, active-X, javascript, ...
>
> http://java.sun.com/j2se/1.5.0/docs/guide/plugin/developer_guide/using_tags.html
A few points about that page.
'New Style Format'[2] described, shows the 'best' way to have both
an OBJECT and EMBED[1] element.
I am pleased to notice they now specifically warn against using
the HTML Converter's 'Java Plug-In Anywhere'[3] option, which
used some rather horrific (browser sniffing, amongst other things)
Javascript to attempt to achieve what the nested element did.
The only disadvantage I found to the nested element, or any use
of <EMBED> at all, is that it is invalid HTML. It never has been
valid in any HTML standard, so it makes your web-pages harder to
check for bad HTML.
Ultimately, I abandoned Sun's messy (to me) system in favor of a
simple versioning applet that ensures minimum version, but that
approach will not fulfill the OP's requirement on this matter.
[1] If this is a %100 IE environment, use <object> completely
dismiss the <embed> 'element' and disregard the above rant.
Besides the nested elements, the OP might also look at JWS[4],
It is well designed for this sort of task, for any Java 1.3+.
[2]
<http://java.sun.com/j2se/1.5.0/docs/guide/plugin/developer_guide/using_tags.html
#ie-nav>
[3]
<http://java.sun.com/j2se/1.5.0/docs/guide/plugin/developer_guide/using_tags.html
#anywhere>
[4]
<http://java.sun.com/j2se/1.4.2/docs/guide/jws/developersguide/syntax.html#resources>
HTH

Signature
Andrew Thompson
http://www.PhySci.org/codes/ Web & IT Help
http://www.PhySci.org/ Open-source software suite
http://www.1point1C.org/ Science & Technology
http://www.LensEscapes.com/ Images that escape the mundane
Roland De Clerck - 15 Dec 2004 19:59 GMT
Should work on the following platforms : Windows XP (SP2) and Citrix
Metaframe Server installed on Windows 2000 and WIndows 2003 servers. The
Microsoft Internet Browser version we need to support is minimal 5.5 (I
suppose even version 6 in near future).

Signature
Roland De Clerck
Tel 02/466.50.60
Gsm 0498/26.21.97
rap.declerck@tiscali.be
>>> At my company we're preparing a massive roll-out of new Windows XP
>>> Workstations (with SP2), in the initial installation procedure we plan
[quoted text clipped - 53 lines]
>
> HTH