风为裳

导航

2012年11月15日

SubSonic

摘要: http://blog.csdn.net/yuzifen/article/details/6774672 阅读全文

posted @ 2012-11-15 11:38 风为裳 阅读(128) 评论(0) 推荐(0) 编辑

2012年11月14日

wcf

摘要: http://www.cnblogs.com/artech/archive/2007/02/26/656901.html 阅读全文

posted @ 2012-11-14 16:22 风为裳 阅读(102) 评论(0) 推荐(0) 编辑

NHibernate

摘要: http://www.cnblogs.com/lyj/archive/2008/10/30/1323099.html 阅读全文

posted @ 2012-11-14 16:21 风为裳 阅读(111) 评论(0) 推荐(0) 编辑

2012年11月12日

使用@导入sql文件中的所有记录

摘要: 很简单,使用@就可以导入所有的sql文件中的数据了。 阅读全文

posted @ 2012-11-12 15:39 风为裳 阅读(111) 评论(0) 推荐(0) 编辑

2012年8月16日

gSoap VS2008 客户端 中文乱码的解决方案

摘要: 1,设置GSOAP的编码模式soap_set_mode(soap, SOAP_C_UTFSTRING);2,将传输回来的字符流进行字符转换(代码摘要)//soap_call___ns1__sendFile 本人实现的接口函数std::wstring str;std::string str1;int result = soap_call___ns1__sendFile(soap1, NULL, NULL, &ns1_sendFile,&ns1__sendFileResponse);std::string stt = *ns1__sendFileResponse.out;bool 阅读全文

posted @ 2012-08-16 11:38 风为裳 阅读(522) 评论(0) 推荐(0) 编辑

2012年7月4日

HTTP 协议及其POST与GET操作差异 & C#中如何使用POST、GET等(转http://www.cnblogs.com/goody9807/archive/2010/05/20/1739763.html)

摘要: HTTP协议我想任何IT人士都耳熟能详了,大家都能说出个所以然来。但是如果我问你 HTTP协议的请求方法有哪些?POST与GET的差异?GET或POST传送数据量的大小有限制吗?HTTP响应的状态有哪些?以及在C#中你如何使 用?如果你不能清楚地回答其中的大部分问题,那么这篇文章就是为你准备的!大纲如下:1、HTTP概述1.1、HTTP协议的客户端与服务器的交互1.2、HTTP消息1.3、HTTP请求的方法1.4、HTTP响应的代码2、抓包分析3、POST与GET的差异4、 以一个实例说明C#中如何使用POST、GET等操作4.1、HttpWebRequest4.2、 HttpWebRespo 阅读全文

posted @ 2012-07-04 09:27 风为裳 阅读(307) 评论(0) 推荐(0) 编辑

2012年6月19日

gSoap转换WebServices(转自http://blog.book41.net/?p=135)

摘要: Posted on 星期五, 七月 1st, 2011 at 下午 12:31在linux下,利用gSoap开发Web Service C/C++客户端一.开发环境准备1. 从gSoap官方网站http://gsoap2.sourceforge.net 下载gSoap工具包。本例下载的是2.7.15的版本。2. 根据说明文档(README)配置安装gSoap工具包。 说明: 一般下载的gSoap工具包中已经包含了生成Web Service客户端需要用到的两个工具(可执行文件):wsdl2h和soapcpp2,一般在gsoap/bin/linux386下。只是默认情况下,wsdl2h并不支持SS 阅读全文

posted @ 2012-06-19 16:50 风为裳 阅读(339) 评论(0) 推荐(0) 编辑

2012年5月14日

把DataTable 转为 List(转)

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Data;using System.Reflection;namespace KnowlegeSyn.CommonTools{ /// <summary> /// 实体转换辅助类 /// </summary> public class ModelConvertHelper<T> where T : new() { public static IList<T> C 阅读全文

posted @ 2012-05-14 21:32 风为裳 阅读(230) 评论(0) 推荐(0) 编辑

2012年5月5日

jvm虚拟机探究

摘要: http://www.pusuo.net/2010/jvmresearch/ 阅读全文

posted @ 2012-05-05 15:36 风为裳 阅读(115) 评论(0) 推荐(0) 编辑

2012年5月3日

List的效率比较

摘要: http://blog.csdn.net/inkfish/article/details/5185320 阅读全文

posted @ 2012-05-03 01:07 风为裳 阅读(148) 评论(0) 推荐(0) 编辑