liangli9802

2011年12月1日 #

[转] Httpclient相关资料

http://www.blogjava.net/Alpha/archive/2007/01/22/95216.html

posted @ 2011-12-01 21:55 荔枝 阅读(89) | 评论 (0)编辑 收藏

2011年7月21日 #

Ajax相关资源参考

由于工作需要,针对一个小的需求要通过ajax实现,于是尝试裸写了一些javascript代码。并没有考虑使用ajax相关的框架来实现,因为一方面需求小,另外一方面这可能只是一个临时的解决方案。之前对ajax有一定了解,实现起来不算特别陌生,具体可参考一下几篇文章:
  1. http://www.cnblogs.com/xinyu126/articles/1598375.html
  2. http://www.cnblogs.com/csharpsharper/archive/2008/06/30/uploadfilewithiframe.html
  3. http://www.cnblogs.com/fzx888888/archive/2011/05/16/ajax_Read_Xml.html
  4. http://msdn.microsoft.com/zh-tw/scriptjunkie/ff696765.aspx

    ps:javascript的跨浏览器支持还是令人头痛,因为只是解决特定需求,也没有时间深入研究了。

posted @ 2011-07-21 17:35 荔枝 阅读(82) | 评论 (0)编辑 收藏

2011年7月5日 #

Configuring a reverse proxy with apache that handles https connections

转:http://blogs.adobe.com/cguerrero/2010/10/27/configuring-a-reverse-proxy-with-apache-that-handles-https-connections/

posted @ 2011-07-05 14:41 荔枝 阅读(135) | 评论 (0)编辑 收藏

2011年6月29日 #

The way to deploy your Java based web application behind a http server

Java based web application need to be deployed on application server such as Tomcat, WebSphere, etc. But in the real production environment of the customer, the port of these application server will not be exposed normally. So that a http server is needed to be set in front of application servers. Here are some solutions:
1. use Apache as a reverse proxy
2. use Application Request Routing & URL Rewrite components provided in IIS 7.5
3. If the application server is WebSphere 7.0, a plugin called iisWASPlugin will be provided to integrate IIS7.5 with WAS 7.0

 After deploying your web application in this way, all the requests will be sent to port 80 at first, and then they will be for forwarded to backend application servers.


posted @ 2011-06-29 14:48 荔枝 阅读(129) | 评论 (0)编辑 收藏

仅列出标题