服务器发包到客户端以登录包为例SendCmd(s2c_login, &ret, sizeof(LoginEnum));end_stat BaseChannel::SendCmd(int nCmd, void* pData, int nLen){ Protocol Ptl; Ptl.cmd...
分类:
其他好文 时间:
2014-11-15 00:04:15
阅读次数:
268
Net::LDAP for Ruby (also called net-ldap) implements client access for the Lightweight Directory Access Protocol (LDAP), an IETF standard protocol for...
分类:
其他好文 时间:
2014-11-14 23:56:49
阅读次数:
313
设置或获取对象指定的文件名或路径。window.location.pathname
设置或获取整个 URL 为字符串。window.location.href;
设置或获取与 URL 关联的端口号码。window.location.port
设置或获取 URL 的协议部分。window.location.protocol
设置或获取 href 属性中在井号...
分类:
Web程序 时间:
2014-11-14 19:48:32
阅读次数:
272
Server Server 框架流程:(1)首先获取连接 client = serverTransport_->accept();(2)然后获取thransport和protocol inputTransport = inputTransportFactory_->getTransport(cl.....
分类:
其他好文 时间:
2014-11-14 17:29:19
阅读次数:
366
在启动JMXconnectorServer时报错 JMXConnectorServer connector = JMXConnectorServerFactory.newJMXConnectorServer(url, null, mbs); 这个问题就是下载一个jmxremote_optional.jar放到这样的目录里面D:\jdk1.7...
分类:
其他好文 时间:
2014-11-14 16:04:30
阅读次数:
727
Standalone LDAP Daemon, slapd(standalone lightweight access protocol)ldap 389 default listener portceph 6789Lightweight Directory Access ProtocolLDAP目...
分类:
其他好文 时间:
2014-11-14 15:33:53
阅读次数:
247
点开UICollectionViewDelegate,发现有@protocol UICollectionViewDelegate 。所以只要实现UIScrollViewDelegate的- (void)scrollViewDidScroll:(UIScrollView *)scrollView; 方...
分类:
移动开发 时间:
2014-11-13 18:07:14
阅读次数:
540
一、生成证书步骤 二、配置TOMCAT服务器 (1)修改 ?$CATALINA_HOME/conf/server.xml ?文件,修改如下: ????<Connector?port="80"?protocol="HTTP/1.1"?connectionTimeout="20000"
?????redirectP...
分类:
Web程序 时间:
2014-11-13 14:51:13
阅读次数:
205
Post提交方式本身对于参数的长度没有限制,HTTP协议也没有限制。
但是今天在做一个web项目的时候碰到一个问题,当要提交的表单内容达到一定大小时,发现后台代码接收到的参数为空。
查询了一下,发现是应用服务器本身对请求参数的长度有限制,具体限制多少我也没测。
我用的是Tomcat,解决办法如下:
<Connector port="8080" protocol="HTTP/1.1"...
分类:
其他好文 时间:
2014-11-13 12:59:02
阅读次数:
185
1、Arc的使用Arc是自动内存管理;arc的使用原则1)、只要对象没有任何强类型指针引用就会被释放’。2)、只要对象被任何强类型指针指引就不会被释放。弱指针:__weak被__weak修饰的指针就被称为弱型指针;强类型指针默认的指针都是强类型指针;被__strong修饰的指针也是强类型指针。使用A...
分类:
其他好文 时间:
2014-11-12 22:46:53
阅读次数:
332