Hi:
I'm trying to have 1 presenter (type 1) and 2 attendees (type 2) both connecting through the Internet.
Type 1 needs full mouse and keyboard control while Type 2 is just a viewer.
How could I achieve this?
Modify the vncviewer.java with some parameters?
How would the winvnc.exe pass different parameters though?
Thanks,
Shawn
Celebrating the 22th anniversary of the UltraVNC: https://forum.uvnc.com/viewtopic.php?t=38031
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
2 different behaviours for Java Viewer from same server
Yeah but how do you do that?
I see what you're saying but how can the winvnc.exe expose/offer two different HTMLs? (one with the parameter viewer on and one with off)
right now, I access it in IE by doing www.mysite.com:5800
Can I somehow pass parameters to the winvnc.exe such as presenter=1?
Do you see my problem?
Thanks,
Shawn
right now, I access it in IE by doing www.mysite.com:5800
Can I somehow pass parameters to the winvnc.exe such as presenter=1?
Do you see my problem?
Thanks,
Shawn
You can try to create 2 different html files and put them on your web server (that must be running on the SAME machine that your WinVNC for Java applet access permission), along the JavaViewer.jar and .class files:
<HTML>
<TITLE>
Your Title for Viewer Type 1
</TITLE>
<APPLET CODE=VncViewer.class ARCHIVE=VncViewer.jar WIDTH=1024 HEIGHT=768>
<param name=PORT value=5900>
<param name=HOST value=YourUltraServerIP>
<param name=ENCODING value=Tight>
<param name="VIEW ONLY" value=No>
</APPLET>
</HTML>
***
<HTML>
<TITLE>
Your Title for Viewer Type 2
</TITLE>
<APPLET CODE=VncViewer.class ARCHIVE=VncViewer.jar WIDTH=1024 HEIGHT=768>
<param name=PORT value=5900>
<param name=HOST value=YourUltraServerIP>
<param name=ENCODING value=Tight>
<param name="VIEW ONLY" value=Yes>
</APPLET>
</HTML>
Then send the corresponding url to your users, depending on their "type"
It should work
<HTML>
<TITLE>
Your Title for Viewer Type 1
</TITLE>
<APPLET CODE=VncViewer.class ARCHIVE=VncViewer.jar WIDTH=1024 HEIGHT=768>
<param name=PORT value=5900>
<param name=HOST value=YourUltraServerIP>
<param name=ENCODING value=Tight>
<param name="VIEW ONLY" value=No>
</APPLET>
</HTML>
***
<HTML>
<TITLE>
Your Title for Viewer Type 2
</TITLE>
<APPLET CODE=VncViewer.class ARCHIVE=VncViewer.jar WIDTH=1024 HEIGHT=768>
<param name=PORT value=5900>
<param name=HOST value=YourUltraServerIP>
<param name=ENCODING value=Tight>
<param name="VIEW ONLY" value=Yes>
</APPLET>
</HTML>
Then send the corresponding url to your users, depending on their "type"
It should work
UltraSam