摘要:virtual table会发送LVN_GETDISPINFO 消息:The LVN_GETDISPINFO notification message is sent by a list view control to its parent window. It is a request for the parent window to provide information needed to ...
阅读全文
随笔分类 - Java&C#
摘要:virtual table会发送LVN_GETDISPINFO 消息:The LVN_GETDISPINFO notification message is sent by a list view control to its parent window. It is a request for the parent window to provide information needed to ...
阅读全文
摘要:1. LabelProvider:isLableProperty要return true或者就extends jface.viewer的LabelProvider2.在tableViewer上加Cell ModifierCusCellModifier cellModifier = new CusCellModifier(tableViewer); tableViewer.setCel...
阅读全文
摘要:Google Code Host的使用说明 by shootsoft yinjun@shootsoft.net http://www.shootsoft.net 1. Eclipse的Subversion使用说明 开发工具以Eclipse为主,所以Eclipse首先需要安装一个Subversion的插件。参考下面的网址: http://www.ibm.com/developerworks/cn...
阅读全文
摘要:在Eclipse中使用Ant来自动编译J2me程序 开发者在线 Builder.com.cn 更新时间:2007-09-23作者:中国IT实验室 来源:中国IT实验室 本文关键词: Ant 编程 Java 今天是比较郁闷的一天,一不小心把eclipse的一个j2me项目中的verified/classes目录中的东东删除了。之后才发现eclipse是如何惩罚我的:它再也不会在这个目录中生...
阅读全文
摘要:1、支持绑定到非公有方法的委托 关于这一点,与其说是个增强,在我看来这似乎是设计思路上略微的转变。具体地说,在.NET 1.x,像这样的代码:[Serializable] class Person ...{ public event EventHandler Birthday; } static void Main(string[] args) ...{ Person p = new Per...
阅读全文
摘要:SendingAttachmentsWithSOAP.gif(9.9 K) clip_image001.gif(9.2 K) clip_image003.gif(16.2 K) clip_image005.gif(76.4 K) clip_image007.gif(49.1 K) 切换到幻灯片模式Sending Attachments with SOAP ...
阅读全文
摘要:http://java.sun.com/webservices/reference/tutorials/wsit/doc/DataBinding.html Data Contracts This chapter describes guidelines for : Designing a XML schema exposed by a web service starting fro...
阅读全文
摘要:MTOM interoperability between Oracle App Server and Sun WSIT A few months ago I wrote a couple of articles (WCF-ORA, ORA-WCF) about Message Transmission Optimization Mechanism (MTOM) interoperability ...
阅读全文
摘要:作者:清华大学 戴凤军 WS-Addressing协议主要包括三部分内容,一是EndpointReference定义,实际上一个定义了一个服端点的模型。二是MAP属性的定义,即消息寻址需要设定和支持的相关属性,三是协议的绑定方式,即如何将协议绑定到现有的协议实现之上如WSDL和SOAP。主要用来解决以下问题:一是实现与底层传输的隔离,通过将寻址信息放在SOAP头部从而摆脱了对底层协议寻址的依赖...
阅读全文
摘要:分basicHttpBinding和wsHttpBinding两种情况:一、basicHttpBinding比较简单一点,先来看看它所要求的HTTP包:POST /WCFService1/Service.svc HTTP/1.1Content-Type: application/soap+xml; charset=utf-8Host: 127.0.0.1:3673Content-Length: 5...
阅读全文
摘要:wsit是sun的一个项目,要使它每次不需要读取WSDL,我们把WSDL下载来放在本地:1)用Netbeans生成客户端的WCF引用配置META-INF/wsit-client.xmlMETA-INF/service.svc.xml2)保存网络上的WSDL到bin下XXXProject/bin/Service.svc.wsdl3)每次生成service类的时候读取bin下的WSDL,而不是去读ht...
阅读全文
摘要:Ref: http://www.danrigsby.com/blog/index.php/2008/03/07/xmlserializer-vs-datacontractserializer-serialization-in-wcf/ http://www.cnblogs.com/javafun/archive/2008/05/04/1182033.htmlThe XmlSerializ...
阅读全文
摘要:The Authenticator method isn't working for me, using JDK 1.3.1_06 and JSSE 1.0.3_01. I still get the 407 error. My code works just fine under 1.4.1, however. Is there a way to make it work under 1.3....
阅读全文
摘要:WS-ReliableMessaging interoperability between Microsoft WCF and Sun WSIT src:http://weblogs.asp.net/gsusx/archive/2007/07/09/ws-reliablemessaging-interoprability-between-microsoft-wcf-and-sun-wsit...
阅读全文
摘要:Posted on 2004-12-13 21:48 idior 所属分类: Design 、Web Services & SOA --> 本文是篇译文(原文在devx),对于想初步了解webservice的朋友可能有些帮助。Webservice 作为一项新的技术出现在我们面前,它的出世是用于解决在不同的平台下的应用的协同的。目前几乎每家厂商都要去开发Webservice 应用,然...
阅读全文
摘要:Posted on 2007-11-24 18:42 idior 所属分类: .Net 、Web Services & SOA 、Distributed App --> Introduction A key feature that makes WCF successful is its easy-to-use programming model. Service develope...
阅读全文
摘要:原文:http://www.cnblogs.com/jiabao/archive/2007/12/04/982534.html 在.net3.0出现以前我们进行分布式开发式有两个选择一个是webservice,另一个是remoting;在早期的项目中,比较喜欢remoting,因为remoting可控性好,也好部署,不需要依赖其他的宿主环境。 今年的做的项目大部分都是webservice的,因为在...
阅读全文
摘要:在.net 1.1或者.net 2.0中要实现分布式事务,如果不涉及远程调用,如调用remoting或者web service的方法,应该说是一件非常简单的事情,只需要用COM+(1.1/ServiceDomain)或者TransactionScope(2.0),通过msdtc协调即可。但是当事务方法中还需要调用remoting或者web service(不使用ws-at)时,由于remoting...
阅读全文
摘要:今天看到WCF,说是整合了Net remoting,Web service。。。下面列一下概念。一 WCF概括地说,WCF具有如下的优势: 1、统一性 前面已经叙述,WCF是对于ASMX,.Net Remoting,Enterprise Service,WSE,MSMQ等技术的整合。由于WCF完全是由托管代码编写,因此开发WCF的应用程序与开发其它的.Net应用程序没有太大的区别...
阅读全文
|