Kbase P90871: Progress Explorer on German Windows machine hangs when trying to connect to AdminService
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  6/16/2005 |
|
Status: Unverified
FACT(s) (Environment):
OpenEdge 10.0A
Windows XP
Windows 2003
SYMPTOM(s):
Progress Explorer hangs
Progress Explorer cannot connect to AdminService
Progress Explorer is running on German machine
AdminService is running fine
CAUSE:
Known issue with jdk/lib/tools.jar for international machines
FIX:
The solution is basically to replace:
!{value-of:Common.classpath}
within the section [ProgressExplorer] of the file:
<OpenEdge InstallDir>\properties\JavaTools.properties
with the entry you find under the section:
[Common]
classpath=<OpenEdge InstallDir>\jdk/lib/tools.jar,<OpenEdge InstallDir>/java/progress.jar,<OpenEdge InstallDir>/java/messages.jar
by removing for the Progress Explorer the entry:
<OpenEdge InstallDir>\jdk/lib/tools.jar
which is causing the problem.
Example:
Old - not working:
[ProgressExplorer]
classpath=E:\OpenEdge/java/prowin.jar,E:\OpenEdge/java/rmi.zip,!{value-of:Common.classpath},E:\OpenEdge/java/schema.jar,E:\OpenEdge/jre/lib/i18n.jar,E:\OpenEdge/java/ext/activation.jar,E:\OpenEdge/java/ext/mail.jar,E:\OpenEdge/java/ext/soap.jar,E:\OpenEdge/java/ext/wsdl4j.jar,E:\OpenEdge/java/ext/xercesImpl.jar,E:\OpenEdge/java/ext/xmlParserAPIs.jar
New - working fine:
[ProgressExplorer]
classpath=E:\OpenEdge/java/prowin.jar,E:\OpenEdge/java/rmi.zip,E:\OpenEdge/java/progress.jar,E:\OpenEdge/java/messages.jar,E:\OpenEdge/java/schema.jar,E:\OpenEdge/jre/lib/i18n.jar,E:\OpenEdge/java/ext/activation.jar,E:\OpenEdge/java/ext/mail.jar,E:\OpenEdge/java/ext/soap.jar,E:\OpenEdge/java/ext/wsdl4j.jar,E:\OpenEdge/java/ext/xercesImpl.jar,E:\OpenEdge/java/ext/xmlParserAPIs.jar
Within the example the replacements are marked in bold.