您的位置:首页 > 其它

xfire客户端对返回list很挑剔,所以需要使用泛型。

2009-03-21 06:37 295 查看
cas+ldap异常分析 | xfire+webservice(服务器配置篇)

2008-12-31

xfire+webservice(客户端调用篇)

服务接口,就是用来调用的,所以客户端显得尤为重要,xfire客户端对返回list很挑剔,所以需要使用泛型。

如何建立webservice client

步骤1,建立webservice project



下一步



下一步,默认



选择xfire包



finish, 这样,webservice项目就完成了

接下来是如何进行客户端开发.

在项目中右键,new webservice client



接着,选择你服务文件,wsdl



完成。

这样在你的项目中,会根据wsdl服务文件,生成客户端所需要的内容。

自动生成文件,下去就细细体会,给出一个测试代码

Java代码



package com.seavision.huayi2.service;

import java.net.MalformedURLException;

import java.util.Collection;

import java.util.HashMap;

import java.util.List;

import javax.xml.bind.JAXBElement;

import javax.xml.namespace.QName;

import org.codehaus.xfire.XFireRuntimeException;

import org.codehaus.xfire.aegis.AegisBindingProvider;

import org.codehaus.xfire.annotations.AnnotationServiceFactory;

import org.codehaus.xfire.annotations.jsr181.Jsr181WebAnnotations;

import org.codehaus.xfire.client.XFireProxyFactory;

import org.codehaus.xfire.jaxb2.JaxbTypeRegistry;

import org.codehaus.xfire.service.Endpoint;

import org.codehaus.xfire.service.Service;

import org.codehaus.xfire.soap.AbstractSoapBinding;

import org.codehaus.xfire.transport.TransportManager;

import com.seavision.huayi2.domain.ArrayOfTBusinsessLog;

import com.seavision.huayi2.domain.TBusinsessLog;

import com.seavision.huayi2.domain.TStationMonthReport;

public class IWebserviceClient {

private static XFireProxyFactory proxyFactory = new XFireProxyFactory();

private HashMap endpoints = new HashMap();

private Service service0;

public IWebserviceClient() {

create0();

Endpoint IWebservicePortTypeLocalEndpointEP = service0 .addEndpoint(new QName("http://service.huayi2.seavision.com", "IWebservicePortTypeLocalEndpoint"), new QName("http://service.huayi2.seavision.com", "IWebservicePortTypeLocalBinding"), "xfire.local://IWebservice");

endpoints.put(new QName("http://service.huayi2.seavision.com", "IWebservicePortTypeLocalEndpoint"), IWebservicePortTypeLocalEndpointEP);

Endpoint IWebserviceHttpPortEP = service0 .addEndpoint(new QName("http://service.huayi2.seavision.com", "IWebserviceHttpPort"), new QName("http://service.huayi2.seavision.com", "IWebserviceHttpBinding"), "http://localhost:8080/seavision/services/IWebservice");

endpoints.put(new QName("http://service.huayi2.seavision.com", "IWebserviceHttpPort"), IWebserviceHttpPortEP);

}

public Object getEndpoint(Endpoint endpoint) {

try {

return proxyFactory.create((endpoint).getBinding(), (endpoint).getUrl());

} catch (MalformedURLException e) {

throw new XFireRuntimeException("Invalid URL", e);

}

}

public Object getEndpoint(QName name) {

Endpoint endpoint = ((Endpoint) endpoints.get((name)));

if ((endpoint) == null) {

throw new IllegalStateException("No such endpoint!");

}

return getEndpoint((endpoint));

}

public Collection getEndpoints() {

return endpoints.values();

}

private void create0() {

TransportManager tm = (org.codehaus.xfire.XFireFactory.newInstance().getXFire().getTransportManager());

HashMap props = new HashMap();

props.put("annotations.allow.interface", true);

AnnotationServiceFactory asf = new AnnotationServiceFactory(new Jsr181WebAnnotations(), tm, new AegisBindingProvider(new JaxbTypeRegistry()));

asf.setBindingCreationEnabled(false);

service0 = asf.create((com.seavision.huayi2.service.IWebservicePortType.class), props);

{

AbstractSoapBinding soapBinding = asf.createSoap11Binding(service0, new QName("http://service.huayi2.seavision.com", "IWebservicePortTypeLocalBinding"), "urn:xfire:transport:local");

}

{

AbstractSoapBinding soapBinding = asf.createSoap11Binding(service0, new QName("http://service.huayi2.seavision.com", "IWebserviceHttpBinding"), "http://schemas.xmlsoap.org/soap/http");

}

}

public IWebservicePortType getIWebservicePortTypeLocalEndpoint() {

return ((IWebservicePortType)(this).getEndpoint(new QName("http://service.huayi2.seavision.com", "IWebservicePortTypeLocalEndpoint")));

}

public IWebservicePortType getIWebservicePortTypeLocalEndpoint(String url) {

IWebservicePortType var = getIWebservicePortTypeLocalEndpoint();

org.codehaus.xfire.client.Client.getInstance(var).setUrl(url);

return var;

}

public IWebservicePortType getIWebserviceHttpPort() {

return ((IWebservicePortType)(this).getEndpoint(new QName("http://service.huayi2.seavision.com", "IWebserviceHttpPort")));

}

public IWebservicePortType getIWebserviceHttpPort(String url) {

IWebservicePortType var = getIWebserviceHttpPort();

org.codehaus.xfire.client.Client.getInstance(var).setUrl(url);

return var;

}

public static void main(String[] args) {

IWebserviceClient client = new IWebserviceClient();

//create a default service endpoint

IWebservicePortType service = client.getIWebserviceHttpPort();

/**

* 使用ObjectFactory插入

* */

com.seavision.huayi2.domain.ObjectFactory cfactory=new com.seavision.huayi2.domain.ObjectFactory();

com.seavision.huayi2.domain.TStationMonthReport newTStationMonthReport = cfactory.createTStationMonthReport();

newTStationMonthReport.setStationMonthReportId(cfactory.createTStationMonthReportStationMonthReportId("123465464864"));

//

/**

* 使用JAXBElement插入

* */

// JAXBElement<String> id = new JAXBElement<String>(new

// QName("http://domain.huayi2.seavision.com", "stationMonthReportId"),String.class,"gefa");

// newTStationMonthReport.setStationMonthReportId(id);

service.insertYueJiHua(newTStationMonthReport);

/**

* 测试返回list结果

* */

ArrayOfTBusinsessLog aot = service.getYeWuList();

List list = aot.getTBusinsessLog();

System.out.println(list.size());

for(int i=0;i<list.size();i++){

TBusinsessLog tlog = (TBusinsessLog) list.get(i);

System.out.println(i+"++++++"+tlog.getLogContent().getValue());

}

//TODO: Add custom client code here

//

//service.yourServiceOperationHere();

System.out.println("test client completed");

System.exit(0);

}

}

package com.seavision.huayi2.service;

import java.net.MalformedURLException;
import java.util.Collection;
import java.util.HashMap;
import java.util.List;

import javax.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
import org.codehaus.xfire.XFireRuntimeException;
import org.codehaus.xfire.aegis.AegisBindingProvider;
import org.codehaus.xfire.annotations.AnnotationServiceFactory;
import org.codehaus.xfire.annotations.jsr181.Jsr181WebAnnotations;
import org.codehaus.xfire.client.XFireProxyFactory;
import org.codehaus.xfire.jaxb2.JaxbTypeRegistry;
import org.codehaus.xfire.service.Endpoint;
import org.codehaus.xfire.service.Service;
import org.codehaus.xfire.soap.AbstractSoapBinding;
import org.codehaus.xfire.transport.TransportManager;

import com.seavision.huayi2.domain.ArrayOfTBusinsessLog;
import com.seavision.huayi2.domain.TBusinsessLog;
import com.seavision.huayi2.domain.TStationMonthReport;

public class IWebserviceClient {

private static XFireProxyFactory proxyFactory = new XFireProxyFactory();
private HashMap endpoints = new HashMap();
private Service service0;

public IWebserviceClient() {
create0();
Endpoint IWebservicePortTypeLocalEndpointEP = service0 .addEndpoint(new QName("http://service.huayi2.seavision.com", "IWebservicePortTypeLocalEndpoint"), new QName("http://service.huayi2.seavision.com", "IWebservicePortTypeLocalBinding"), "xfire.local://IWebservice");
endpoints.put(new QName("http://service.huayi2.seavision.com", "IWebservicePortTypeLocalEndpoint"), IWebservicePortTypeLocalEndpointEP);
Endpoint IWebserviceHttpPortEP = service0 .addEndpoint(new QName("http://service.huayi2.seavision.com", "IWebserviceHttpPort"), new QName("http://service.huayi2.seavision.com", "IWebserviceHttpBinding"), "http://localhost:8080/seavision/services/IWebservice");
endpoints.put(new QName("http://service.huayi2.seavision.com", "IWebserviceHttpPort"), IWebserviceHttpPortEP);
}

public Object getEndpoint(Endpoint endpoint) {
try {
return proxyFactory.create((endpoint).getBinding(), (endpoint).getUrl());
} catch (MalformedURLException e) {
throw new XFireRuntimeException("Invalid URL", e);
}
}

public Object getEndpoint(QName name) {
Endpoint endpoint = ((Endpoint) endpoints.get((name)));
if ((endpoint) == null) {
throw new IllegalStateException("No such endpoint!");
}
return getEndpoint((endpoint));
}

public Collection getEndpoints() {
return endpoints.values();
}

private void create0() {
TransportManager tm = (org.codehaus.xfire.XFireFactory.newInstance().getXFire().getTransportManager());
HashMap props = new HashMap();
props.put("annotations.allow.interface", true);
AnnotationServiceFactory asf = new AnnotationServiceFactory(new Jsr181WebAnnotations(), tm, new AegisBindingProvider(new JaxbTypeRegistry()));
asf.setBindingCreationEnabled(false);
service0 = asf.create((com.seavision.huayi2.service.IWebservicePortType.class), props);
{
AbstractSoapBinding soapBinding = asf.createSoap11Binding(service0, new QName("http://service.huayi2.seavision.com", "IWebservicePortTypeLocalBinding"), "urn:xfire:transport:local");
}
{
AbstractSoapBinding soapBinding = asf.createSoap11Binding(service0, new QName("http://service.huayi2.seavision.com", "IWebserviceHttpBinding"), "http://schemas.xmlsoap.org/soap/http");
}
}

public IWebservicePortType getIWebservicePortTypeLocalEndpoint() {
return ((IWebservicePortType)(this).getEndpoint(new QName("http://service.huayi2.seavision.com", "IWebservicePortTypeLocalEndpoint")));
}

public IWebservicePortType getIWebservicePortTypeLocalEndpoint(String url) {
IWebservicePortType var = getIWebservicePortTypeLocalEndpoint();
org.codehaus.xfire.client.Client.getInstance(var).setUrl(url);
return var;
}

public IWebservicePortType getIWebserviceHttpPort() {
return ((IWebservicePortType)(this).getEndpoint(new QName("http://service.huayi2.seavision.com", "IWebserviceHttpPort")));
}

public IWebservicePortType getIWebserviceHttpPort(String url) {
IWebservicePortType var = getIWebserviceHttpPort();
org.codehaus.xfire.client.Client.getInstance(var).setUrl(url);
return var;
}

public static void main(String[] args) {

IWebserviceClient client = new IWebserviceClient();

//create a default service endpoint
IWebservicePortType service = client.getIWebserviceHttpPort();

/**
* 使用ObjectFactory插入
* */
com.seavision.huayi2.domain.ObjectFactory cfactory=new com.seavision.huayi2.domain.ObjectFactory();
com.seavision.huayi2.domain.TStationMonthReport  newTStationMonthReport = cfactory.createTStationMonthReport();
newTStationMonthReport.setStationMonthReportId(cfactory.createTStationMonthReportStationMonthReportId("123465464864"));
//
/**
* 使用JAXBElement插入
* */

//            JAXBElement<String> id = new JAXBElement<String>(new
//                    QName("http://domain.huayi2.seavision.com", "stationMonthReportId"),String.class,"gefa");
//            newTStationMonthReport.setStationMonthReportId(id);

service.insertYueJiHua(newTStationMonthReport);
/**
* 测试返回list结果
* */
ArrayOfTBusinsessLog aot = service.getYeWuList();
List list = aot.getTBusinsessLog();
System.out.println(list.size());
for(int i=0;i<list.size();i++){
TBusinsessLog tlog = (TBusinsessLog) list.get(i);
System.out.println(i+"++++++"+tlog.getLogContent().getValue());
}
//TODO: Add custom client code here
//
//service.yourServiceOperationHere();

System.out.println("test client completed");
System.exit(0);
}

}

注意以下内容,1:返回list内容,先存放入Arrayof**对象当中,再进行list遍历。

2: 对象属性取值,getValue();

3:对象属性封装,通过JAXBElement进行封装后,放入对象。

16:25

浏览 (168)

论坛浏览 (373)

评论 (1)

收藏

相关推荐
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐