Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
java version applet
System
I am trying to add a menu option from teamsite that can be accessed by clicking on the "Actions" pulldown which will simply load up a webpage that calls an applet that will inform the user with what version of Java he/she has on their computer. I have edited the ui_custom.xml file and rebuilt teamsite and the actual button does appear under the "Actions" pulldown. It also loads up a webpage that calls the applet but I get a message saying Applet Failed to load. However if i just put the exact path to the file where it is on the server the applet loads correctly so by this I do know that there is not a problem with my java version or the code ( hopefully ).
I have also tried to put the absolute path to the java applet but that does not seem to work.
Any advice would be appreciated. Thanks
Find more posts tagged with
Comments
Bill Klish
TeamSite version/platform?
Can you paste in your ui_custom.xml entry?
Migrateduser
Hi, thank you for the response,
I am running Teamsite 6.5 on Solaris.....
Here is the section of the ui_custom.xml code
</menu>
<menu id="iw.ccpro.action.menu">
<link id="iw.ccpro.action_menu.javainfo.link"
label="Java Version"
url="/iw-bin/javaInfo.htm"
windowFeatures="width=300,height=300,scrollbars=yes,menubar=no,titlebar=
no,resizable=yes,status=yes,center=true,dependent=false"
target="_blank"/>
</menu>
And here is the javaInfo.htm file contents
<HTML>
<HEAD>
<applet code="JavaVersionPopup" width="400" height="400">
</applet>
</HTML>
I have also tried putting the absolute path to the "JavaVersionPopup" applet in the html file but it makes no difference
Thanks for the help!
Migrateduser
I would try placing the class "JavaVersionPopup" in the same path as htm i.e /iw-bin
Thanks
Bill Klish
I would maybe try to put the applet code in the customer toolkit and then reference it from there (i.e. /iw-cc/customer/...). I haven't worked with custom applets inside of TeamSite. I suppose you can model if after the launchpad applet that interwoven is using to import files and handle edits. I am not 100% sure where that is located off the top of my head, but I assume it's part of the content center web application.
Have you already tried putting the applet code in there?