WCF开发工具的应用非常广泛,而且可以跨多平台来进行操作。那么在这里,我们将会为大家介绍其中一种,WSIT连接WCF的相关操作技巧。希望大家可以通过本文介绍的内容获得一些帮助。
wsit是sun的一个项目,要使它每次不需要读取WSDL,我们把WSDL下载来放在本地:
WSIT连接WCF步骤1)用Netbeans生成客户端的WCF引用配置
- META-INF/wsit-client.xml
- META-INF/service.svc.xml
WSIT连接WCF2)保存网络上的WSDL到bin下
- XXXProject/bin/Service.svc.wsdl
WSIT连接WCF3)每次生成service类的时候读取bin下的WSDL,而不是去读http://XXX/Service.svc?wsdl
- baseUrl = org.tempuri.Service.class.getResource("/");
- URL url = new (baseUrl, "Service.svc.wsdl")
WSIT连接WCF4)在运行时修改真正的地址:
- (
- (
- javax.xml.ws.BindingProvider)port).getRequestContext().put
- (
- javax.xml.ws.BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
"NEW_ADDRESS_HERE"- );
【编辑推荐】