when running resin,i get the following error:
"javax.management.malformedobjectnameexception: objectname: invalid character : in value
part of property…". here is others discussion
http://www.caucho.com/quercus/faq/question.xtp?question_id=1410ref.answer by sam on tue, 25 feb 2003 12:17:07 -0800 (pst) you are likely getting a conflicting/older jmx implementation in your classpath. try starting resin with an empty classpath: win> set classpath=win> bin/httpd.exe
unix.sh> export classpath=""unix.sh> bin/httpd.shyou can start httpd with the -verbose option to see the classpath that is being used when
resin is started.
with -verbose option,i get environment variables list as follows:java: c:\program files\java\j2sdk1.5.0\bin\java.exejava_home: c:\program files\java\j2sdk1.5.0resin_home: d:\resin-2.1.6server_root: d:\resin-2.1.6classpath: d:\resin-2.1.6\classes;d:\resin-2.1.6\lib\resin.jar;c:\program
files\java\j2sdk1.5.0\lib\tools.jar;c:\program
files\java\j2sdk1.5.0\jre\lib\rt.jar;d:\resin-2.1.6\lib\dom.jar;….
i think the reason is the blank in "program files",and the error disappear when i move jdk
to a path without blank and reset the values of environment variables above with the path.
