1.用Vsphere client 连接 EXSI后进入如下界面进行设置
2.
3....
分类:
其他好文 时间:
2015-01-07 13:15:29
阅读次数:
176
问题:版本vcsa5.5,用vspherewebclient登陆的时候报错:FailedtoconnecttoVMwareLookupServicehttps://IP:7444/lookupservice/sdk-SSLcertificateverificationfailed.解决办法:登陆vcsa配置网页:默认账号密码:root/vmware另外一个:administrator@vsphere.local/vmware登陆..
分类:
Web程序 时间:
2015-01-06 18:16:52
阅读次数:
263
最近再写一个房产群发、采集的软件。百度【房产群发】,类似软件一大堆,就是仿着他们的做的。用的是winfrom(发现在哪工作都用...)、Sqlite。涉及到的就是正则、多线程、反射。HttpWebRequest、HttpWebResponse、WebClient、Cookie、StreamReade...
分类:
其他好文 时间:
2015-01-06 17:19:09
阅读次数:
102
通过 WebClient 的内置浏览器,可以执行页面抓取工作,有时可能需要设置代理,WebClient webClient = new WebClient(BrowserVersion.x);webClient.setProxyConfig(ProxyConfig pc);在单线程情况下,使用这样创...
分类:
编程语言 时间:
2015-01-06 15:13:44
阅读次数:
1583
【问题现象】pdns_server启动失败 【问题日志】 Jan 6 09:40:16 localhost pdns[24942]: This is a standalone pdns Jan 6 09:40:16 localhost pdns[24942]: Listening on controlsocket in ‘/var/vcap/sys/run/p...
分类:
其他好文 时间:
2015-01-06 12:15:02
阅读次数:
250
1. string类型的参数,get方法
///
/// 执行服务的方法
///
/// 方法名称
/// 参数列表
/// 返回值类型
///
public object ExeJsonMethod(string MethodName, List pars, Type _typ...
分类:
Web程序 时间:
2014-12-30 19:08:30
阅读次数:
157
centos网络配置
环境:
系统硬件:vmware vsphere (CPU:2*4核,内存2G)
系统版本:Centos-6.5-x86_64
路由器网关:192.168.1.1
步骤:
1.查看网络MAC地址
[root@centos ~]# cat /etc/udev/rules.d/70-persistent-net.rules
显示如...
分类:
系统相关 时间:
2014-12-30 11:52:17
阅读次数:
253
1.POST方法(httpWebRequest)
#region POST方法(httpWebRequest)
//body是要传递的参数,格式"roleId=1&uid=2"
//post的cotentType填写:
//"application/x-www-form-urlencoded"
//soap填写:"text/xml; charset=utf-8"
public s...
分类:
Web程序 时间:
2014-12-30 10:04:38
阅读次数:
143
低调偷偷的下别人数据 发现下出来乱码… 用F12看看请求,原来人家是用了gzip压缩的… 试着自己加个Headingwc.Headers.Add("Accept-Encoding", "gzip, deflate"); 发现乱码依旧… 查查MSDN原来要设置HttpWebRequest.Automa...
分类:
Web程序 时间:
2014-12-28 11:39:44
阅读次数:
139