下载tightvnc,并将html和jar包都拷贝到项目相应位置中。
例如:
osi_web/templates/viewer-applet.html
ui_content/tightvnc-jviewer.jar
这里html文件我直接给改了。
viewer-applet.html ,
<param name="Host" value="{{ Host }}" /> <!-- Host to connect. Default: the host from which the applet was loaded. --> <param name="Port" value="5901" /> <!-- Port number to connect. Default: 5900 -->这里端口默认为 5901
def vncviewer(request,ip): t = get_template('viewer-applet.html') html = t.render(RequestContext(request, { 'version': '1.0', 'Host': ip, })) return HttpResponse(html)这里ip从页面url传递过来
(r'system/vncviewer/(?P<ip>.+)$', 'osi_web.views.vncviewer'),
这里用的是公司的前端组件,大概意思都差不多
{ id : "btn_vnc", text : "远程连接", disabled : false, iconCls : "icon-add", handler : _(function() { this.initvncView(this.systems.getSelectedModels()[0]['interfaces']['eth0']['ip_address']); }).bind(this) }
initvncView : function(ip){ window.open("vncviewer/" + ip); }效果如下,如果浏览器尚未安装java支持的话,需要安装支持。