码迷,mamicode.com
首页 >  
搜索关键字:bad request    ( 21853个结果
wcf文件上传时碰到的配置问题
1.远程服务器返回了意外相应:(413) Request Entity Too Large修改客户端配置maxReceivedMessageSize="2147483647" 并在服务端修改webconfig,加入binding节...
分类:其他好文   时间:2014-05-26 23:10:58    阅读次数:370
HttpWebRequest
HttpWebRequest request; HttpWebResponse response; ASCIIEncoding encoding = new ASCIIEncoding(); request = WebRequest...
分类:Web程序   时间:2014-05-26 15:49:01    阅读次数:234
浏览器与服务器间的交互(客服端 <---> 服务器)
浏览器与服务器间的交互(客服端 服务器) 请求--->处理--->响应 对类HttpContext 内部成员的使用 例如 :Request 、Response 、Cookie 、 Session 、GetSection . . .///...
分类:其他好文   时间:2014-05-26 12:31:20    阅读次数:273
EL四大作用域 9个jsp对象有效范围 及 对应的类
java中request,session,application的作用范围 page,request,session,application四者的作用范围: page的作用范围是当前页面;对应El表达式的pageScope request的作用范围是页面与页面之间的传递就是请求请求结束则结束; 对....
分类:Web程序   时间:2014-05-23 05:51:40    阅读次数:322
在线人数统计
在JavaWeb中使用HttpSession(以下简称session)对象来表示一个会话。正在装载数据……Session的创建(代表会话周期的开始):第一次调用request.getSession()方法时,会创建一个session对象。Session的销毁(代表会话周期的结束):在某个请求周期内调...
分类:其他好文   时间:2014-05-23 05:35:28    阅读次数:202
asp.net或javascript判断是否手机访问
///  /// 判断手机用户UserAgent ///  ///  private bool IsMobile() {          HttpContext context = HttpContext.Current;     if (context != null)     {         HttpRequest request = context.Request;         i...
分类:移动开发   时间:2014-05-23 01:06:25    阅读次数:258
0521.使用UIWebView加载来自NetWork、Project、Documents的html、javascript文件
话不多少,直接上代码,思路还是挺简单的。 UIWebView *webView = [[UIWebView alloc]initWithFrame:self.view.frame]; // HTML文件来自Project // 步骤:path - > url - > request with url - > loadRequest NSStrin...
分类:编程语言   时间:2014-05-22 23:53:05    阅读次数:442
TI C66x DSP硬件信号量 - 3(Direct Semaphore)
Direct request is the simplest method used to request a semaphore. The request behaves as an atomic read and set operation. The result of a request is either to grant the semaphore to the requesting...
分类:其他好文   时间:2014-05-22 17:21:38    阅读次数:517
Asp.Net页面生命周期--转发(学海无涯)
一.什么是Asp.Net页面生命周期当我们在浏览器地址栏中输入网址,回车查看页面时,这时会向服务器端(IIS)发送一个request请求,服务器就会判断发送过来的请求页面, 完全识别 HTTP 页面处理程序类后,ASP.NET 运行时将调用处理程序的 ProcessRequest 方法来处理请求,来...
分类:Web程序   时间:2014-05-22 15:30:10    阅读次数:347
uip1.0 ping不通解决方案
最近移植uip1.0到stm32上,能udp收发数据,但是ping不通。感觉到很奇怪。以前移植的0.9都能ping通。 由于通过抓包分析。发现icmp echo reply返回的校验值为incorrect。如下图: ping request   ping reply: 较uip 1.0和uip 0.9移植比较。在uip-conf.h里...
分类:其他好文   时间:2014-05-21 14:45:33    阅读次数:658
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!