- 浏览: 115507 次
- 性别:
- 来自: 广州
文章分类
最新评论
-
ron.luo:
干货,必须得顶。
JAXB使用经验总结 -
csdn_zuoqiang:
能否看下DWR的配置情况?谢谢
结合webservice实现dwr推送 -
友友水:
。。。。不好意思,无心之失,删不掉前一条评论
JAXB使用经验总结 -
友友水:
[/flash][/flash][/flash][/flash ...
JAXB使用经验总结 -
lihong11:
大哥,加加注释好不?看不懂唉
小玩dwr实现服务器推送
webService 是什么就不解释了,webservice有很多种开发方式,也有很多种调用方式,自己实际中用到的一种现在描述如下:
服务端的开发使用到apache CXF的开发方式,比较效率。
1.新建一个web项目,把apache-cxf-x.x.x\lib下的jar包添加到项目中,(加哪些看具体需要)
2.写好你的接口与实现类。(这里数据绑定方式使用cxf默认的jaxb,你也可以用其它的比如 aegis)
3.写好了之后就是发布服务了,发布方式也有好几种,这里采用的是cxf+spring整合在tomcat下发布的方式.具体的配置如下: applicationContext.xml
配置文件中只列出了跟cxf发布服务有关的,涉及到的接口名虽然原名复制了过来,但看看也没什么关系
当然,你还需要在你的web.xml文件中配置cxf的servlet,具体如下:
这样,发布服务就成了启动tomcat了,查看发布是否成功,看以访问这个链接:http://localhost:8080/xx/xx
客户端的调用
客户端调用有很多种形式,比如常见的可能是要用到AXIS来生成一堆客户端代码放进客户端程序,然后在客户端程序的配置文件中如下配置:xxxx.xml
然后呢,在你的程序里就可以调用webservice的接口了,我写了一个调用接口的工具类:
这样,在你的代码中就可以如下实现调用接口方法了:
发布与调用的方式有很多种,看你的需要了。。。
服务端的开发使用到apache CXF的开发方式,比较效率。
1.新建一个web项目,把apache-cxf-x.x.x\lib下的jar包添加到项目中,(加哪些看具体需要)
2.写好你的接口与实现类。(这里数据绑定方式使用cxf默认的jaxb,你也可以用其它的比如 aegis)
3.写好了之后就是发布服务了,发布方式也有好几种,这里采用的是cxf+spring整合在tomcat下发布的方式.具体的配置如下: applicationContext.xml
<?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" xmlns:jaxws="http://cxf.apache.org/jaxws" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd" default-lazy-init="true"> <import resource="classpath:META-INF/cxf/cxf.xml" /> <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" /> <import resource="classpath:META-INF/cxf/cxf-servlet.xml" /> <jaxws:endpoint id="importDataEndPoint" implementor="#importDataService" address="/ImportDataService" /> <jaxws:endpoint id="dashboardDataEndPoint" implementor="#dashboardDataService" address="/DashboardDataService" /> <jaxws:endpoint id="inventoryEndPoint" implementor="#inventoryService" address="/InventoryService" /> <jaxws:endpoint id="emailEndPoint" implementor="#emailService" address="/EmailService" /> <jaxws:endpoint id="importDataDBPointLoadingEndPoint" implementor="#importDataDBPointLoadingService" address="/ImportDataDBPointLoadingService" /> <jaxws:endpoint id="dashboardDataCalculationEndPoint" implementor="#dashboardDataCalculationService" address="/DashboardDataCalculationService" /> <jaxws:endpoint id="upsModulesEndPoint" implementor="#upsModulesService" address="/UpsModulesService" /> <bean id="SpringContextHolder" lazy-init="false" class="com.accentrix.nttca.dcms.dashboard.util.SpringContextHolder" /> </beans> <!-- END SNIPPET: beans -->
配置文件中只列出了跟cxf发布服务有关的,涉及到的接口名虽然原名复制了过来,但看看也没什么关系
当然,你还需要在你的web.xml文件中配置cxf的servlet,具体如下:
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <web-app> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:META-INF/spring/applicationContext*.xml</param-value> </context-param> <listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener> <servlet> <servlet-name>CXFServlet</servlet-name> <display-name>CXF Servlet</display-name> <servlet-class> org.apache.cxf.transport.servlet.CXFServlet </servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>CXFServlet</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping> </web-app>
这样,发布服务就成了启动tomcat了,查看发布是否成功,看以访问这个链接:http://localhost:8080/xx/xx
客户端的调用
客户端调用有很多种形式,比如常见的可能是要用到AXIS来生成一堆客户端代码放进客户端程序,然后在客户端程序的配置文件中如下配置:xxxx.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:jaxws="http://cxf.apache.org/jaxws" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd"> <jaxws:client id="importDataService" serviceClass="xxxx.dashboard.service.ImportDataService" address="http://xxxx:8080/xxxxx/ImportDataService" /> ....
然后呢,在你的程序里就可以调用webservice的接口了,我写了一个调用接口的工具类:
import org.springframework.context.support.ClassPathXmlApplicationContext; public class CxfUtil { public static <T> T getService(String name, Class<T> requiredType) { return ApplicationContextHolder.context.getBean(name, requiredType); } public static <T> T getService(Class<T> requiredType) { return ApplicationContextHolder.context.getBean(requiredType); } private static class ApplicationContextHolder { private static ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext( new String[] { "META-INF/xxxx.xml" }); } }
这样,在你的代码中就可以如下实现调用接口方法了:
ImportDataService ds = CxfUtil .getService(ImportDataService.class); ds.doxxx(); ....
发布与调用的方式有很多种,看你的需要了。。。
发表评论
-
http简易工具类
2018-09-21 09:20 456http简易工具类, 方便http调用 -
微信JSSDK之添加微信卡券
2016-05-31 09:37 778微信卡券的使用,是在之前的微信jsapi基础上,再加上一次卡券 ... -
hibernate延迟加载 与 web应用 独立缓存架构的冲突
2013-04-26 11:03 1134延迟加载(Lazy Loading)是 ... -
jquery验证框架使用
2013-03-27 16:57 13231.使用jquery的表单验证框架,需要导入jquery的库文 ... -
结合webservice实现dwr推送
2012-08-22 13:26 5323情景: 客户端需要实时提醒服务,比如某个日程已过期的提醒, ... -
copy到粘贴板
2012-05-22 11:39 1183直接上代码,实现了IE和火狐下的copy content ... -
小玩dwr实现服务器推送
2012-01-19 17:01 5607最近项目有需要用到‘推’,就是服务器端自动把消息推给客户端,就 ... -
jquery之事件error小提醒
2011-12-13 15:27 1418今天用到jquery的事件中的error方法,发现当标签img ... -
小想法
2011-10-17 16:48 0刚才有个想法,不知道是由什么联想而来,最近淘宝大战,看了些文章 ... -
原来这个如此容易 ---- 点击弹出确认框
2011-10-12 15:51 1302今天无意识的看到了点击按钮弹出确认框的 javascri ... -
groovy 小应用
2011-09-30 10:25 1184昨天使用groovy脚本生成大量的sql,实在是爽! 现 ... -
JAXB使用经验总结
2011-09-27 11:13 9242使用JAXB首先要知道它是干什么的 当然,切入正题 ... -
Jquery资料链接(供学习)
2011-08-08 17:16 696提供些资料链接,以备查找 http://jquery.com ... -
dwr使用小结
2011-08-05 15:32 1117很久没上来冒泡了 ,把dwr的使用经验搁上来,以后备用。 ... -
实践中filter的配置
2011-04-26 09:23 895配置一个权限filter,拦截一切没有登录却想访问只有登录后才 ... -
JSTL问题解决之-->报找不到C标签
2011-03-30 13:51 3085当jsp页面显示报找不到C:标签时的解决办法 在li ... -
jsp之自定义标签
2011-03-29 11:09 884http://javakeith.iteye.com/blog ... -
jsp之session对象
2011-03-29 11:06 880http://javakeith.iteye.com/blo ... -
jsp内置对象
2011-03-29 11:04 1007感谢兄弟的总结 http://javakeith.iteye. ... -
JSTL自定义标签过程
2011-03-29 10:39 7311要定义自己的标签,首先写个java类,extends TagS ...
相关推荐
本文将对Web服务的使用进行详细总结,涵盖了基础概念、技术栈、实现过程以及常见问题。 一、Web服务基础 1.1 WebService定义:WebService是一种通过XML(可扩展标记语言)进行通信的网络应用,它可以提供和消费API...
delphi开发webservice经验总结
用delphi调用dotnet开发的webservice经验总结,包含汉字乱码,soapheader安全验证的问题。
以下是对这个实例的详细解析和相关知识点的总结: 1. JavaScript调用机制: JavaScript通过XMLHttpRequest对象或者ActiveXObject(在旧版IE浏览器中)来实现对WebService的调用。在示例中,使用了ActiveXObject,这...
WebService学习过程中,知识点的总结,和例子。
**WebService和Ajax总结** 在IT领域,WebService和Ajax是两种重要的技术,它们分别在Web应用程序的交互和用户体验提升上发挥了重要作用。本篇文章将全面探讨这两种技术的原理、应用及其在.NET环境下的实现。 **一...
### Node.js 和 Java 调用 WebService 接口总结 #### 一、Java 实现方式 在 Java 中,调用 WebService 接口通常涉及使用 Apache CXF 或其他类似的库来生成客户端代码并进行调用。以下是具体的步骤: ##### 1. ...
CXF 实现WebService常用注解总结 CXF 实现WebService时,使用注解来指定与WebService相关的元数据,简化WebService的开发。下面总结了CXF实现WebService常用注解。 @WebService注解 @WebService注解标记Java类,...
标题中的“闲着没事Hessian开发WebService的总结(一)”表明这是一篇关于使用Hessian框架开发Web服务的文章,作者可能在其中分享了个人的经验和理解。Hessian是一种轻量级的远程调用协议,它允许Java和.NET之间进行...
eclipse创建Webservice以及调用Webservice总结
4. **C#与WebService**:在C#中,使用`[WebService]`和`[WebMethod]`特性标记类和方法,即可将其公开为WebService。例如,`[WebService(Namespace = "http://example.com")]`定义了命名空间,`[WebMethod]`则标记了...
"Java 使用 XFire 调用 webService 接口" 在本文中,我们将学习如何使用 XFire 框架在 Java 中调用 webService 接口。XFIRE 是一个基于 Java 的开源框架,用于简化 Web 服务的开发和集成。下面,我们将通过一个简单...
本文将对两种主要的Java调用WebService的方法进行总结。 **一、使用JDK Web服务API** 1. **创建WebService端点**: 首先,你需要定义一个@WebService注解的类,包含@WebMethod注解的方法。这个类就是你的服务接口,...
总结,使用JDK发布Web服务涉及的主要知识点包括:JAX-WS API、SEI、WSDL、HTTP服务器以及客户端调用。通过这些知识点,开发者可以在Java环境中方便地创建、部署和测试Web服务,实现不同系统的互联互通。
Axis2开发webservice总结,资源一般,希望对大家有用
总结起来,这个示例展示了如何使用 jQuery 的 AJAX 功能与 WebService 进行通信,无论是无参数还是带参数的调用,以及如何处理返回的数据。理解这些概念对于构建基于 JavaScript 的前端应用程序并与后端服务进行交互...
Java 调用 Webservice 的几种方法总结中,主要介绍了使用 JDK Web 服务 API、Axis 和 XFire 等方法来调用 Webservice。下面将对每种方法进行详细的介绍。 使用 JDK Web 服务 API 使用 JDK Web 服务 API 可以实现...
总结,使用JDK开发WebService涉及的关键点包括:理解SOAP、WSDL和UDDI等协议,使用JAX-WS提供的注解和工具,以及如何在客户端和服务器端交互。通过这个过程,开发者可以构建起跨平台、跨语言的网络通信系统,极大地...