问题描述
各位大大 小弟刚刚接触web service 想给个服务器端连接数据库查出结果集送给客户端,客户端接收后能打印出来的例子。用JAVA写 谢谢~~~~ 问题补充:我用的是cxf-dosgi来弄的 现在搞定了 原来要依赖数据库驱动的jar包 谢谢大家了
解决方案
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"> <!-- 引入XFire预配置信息 --> <import resource="classpath:org/codehaus/xfire/spring/xfire.xml"/> <!-- 定义访问的url--> <bean class ="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping"> <property name="urlMap"> <map> <entry key="/HelloWorldService.ws"> <ref bean="HelloWorldService"/> </entry> </map> </property> </bean> <!-- 使用XFire导出器 --> <bean id ="baseWebService" class="org.codehaus.xfire.spring.remoting.XFireExporter" lazy-init="false" abstract="true"> <!-- 引用xfire.xml中定义的工厂 --> <property name="serviceFactory" ref="xfire.serviceFactory"/> <!-- 引用xfire.xml中的xfire实例 --> <property name="xfire" ref="xfire"/> </bean> <bean id ="HelloWorldService" parent="baseWebService"> <!-- 业务服务bean --> <property name="serviceBean" ref="webService"/> <!-- 业务服务bean的窄接口类 --> <property name ="serviceClass" value="byd.service.IBaseService"/> </bean> </beans><!-- begin XFire 配置 --> <servlet> <servlet-name>xfire</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> </servlet > <servlet-mapping> <servlet-name>xfire</servlet-name> <url-pattern>*.ws</url-pattern> </servlet-mapping> <servlet> <!-- 配合Spring容器中XFire一起工作的Servlet --> <servlet-name>xfireServlet</servlet-name> <servlet-class>org.codehaus.xfire.spring.XFireSpringServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>xfireServlet</servlet-name> <!-- 在这个URI下开放Web Service服务 --> <url-pattern>/service/*</url-pattern> </servlet-mapping> <!-- end XFire 配置 -->
解决方案二:
用jdk6原生态的webservice吧,什么都不需要导入 你看看我的博文http://duyunfei.iteye.com/blog/1110560
解决方案三:
网上不是大把多吗,