我想補充下<server>
節點在WebLogic Server中的config.xml中的下列Jython腳本錯誤
<ssl>
<enabled>true</enabled>
</ssl>
我可以做到這一點使用管理控制檯,但我不得不使用Jython腳本,以便它可以在安裝應用程序時完成。
我遵循的步驟在這裏解釋 -
http://blogs.oracle.com/jamesbayer/2010/04/record_and_play_your_weblogic.html
生成下面的腳本 -
cd('/Servers/ocsServer')
cmo.setListenPortEnabled(true)
cmo.setJavaCompiler('javac')
cmo.setClientCertProxyEnabled(false)
cd('/Servers/ocsServer/SSL/ocsServer')
cmo.setEnabled(true)
activate()
startEdit()
但我得到這個例外 -
com.bea.plateng.domain.script.
jython.WLSTException: com.bea.plateng.domain.script.jython.WLSTException: com.bea.plateng.domain.script.ScriptException: No nested element SSL is found
任何想法?
確實小寫'ssl'作任何差異? – JoseK 2011-04-05 11:11:18
當我用小寫的SSL我得到這個 com.bea.plateng.domain.script.j ython.WLSTException:com.bea.plateng.domain.script.jython.WLSTException:java.la NG。 UnsupportedOperationException:無法創建通用操作:ssl – nasaa 2011-04-05 13:20:48