services.xml文件中的配置代码如下:
<!-- 第2步:添加scope属性,并设置属性值为application -->
< service name ="loginService" scope ="application" >
< description >
登录服务
</ description >
< parameter name ="ServiceClass" >
service.LoginService
</ parameter >
< messageReceivers >
< messageReceiver mep ="http://www.w3.org/2004/08/wsdl/in-out"
class ="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />
</ messageReceivers >
</ service >
<!-- 第2步:添加scope属性,并设置属性值为application -->
< service name ="searchService" scope ="application" >
< description >
搜索服务
</ description >
< parameter name ="ServiceClass" >
service.SearchService
</ parameter >
< messageReceivers >
< messageReceiver mep ="http://www.w3.org/2004/08/wsdl/in-out"
class ="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />
</ messageReceivers >
</ service >
</ serviceGroup >
第
3步与
《WebService大讲堂之Axis2(5):会话(Session)管理 》
一文中介绍的方法类似。
<!--
/* Font Definitions */
@font-face
{font-family:宋体;
panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
{font-family:""@宋体";
panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-parent:"";
margin:0cm;
margin-bottom:.0001pt;
text-align:justify;
text-justify:inter-ideograph;
font-size:10.5pt;
font-family:"Times New Roman";}
/* Page Definitions */
@page
{}
@page Section1
{size:612.0pt 792.0pt;
margin:72.0pt 90.0pt 72.0pt 90.0pt;}
div.Section1
{page:Section1;}
-->
下面是使用两个
stub类的对象实例访问上面实现的两个
WebService的客户端代码:
LoginServiceStub.Login login = new LoginServiceStub.Login();
login.setUsername( " bill " );
login.setPassword( " 1234 " );
if (stub.login(login).local_return)
{
System.out.println(stub.getLoginMsg().local_return);
SearchServiceStub searchStub = new SearchServiceStub();
SearchServiceStub.FindByName fbn = new SearchServiceStub.FindByName();
fbn.setName( " abc " );
System.out.println(searchStub.findByName(fbn).local_return);
}
<!-- /* Font Definitions */ @font-face {font-family:宋体; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@宋体"; panose-1:2 1 6 0 3 1 1 1 1 1;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; font-size:10.5pt; font-family:"Times New Roman";} /* Page Definitions */ @page {} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} -->
在执行上面的代码后,将输出如下的信息:
找到的数据 < abc >
读者可以将scope属性值改成transportsession,看看会输出什么!
实际上,Axis2的会话管理也是通过Cookie实现的,与Web应用中的Session管理类似。如果读者使用C#访问支持会话(在同一个服务中的会话管理)的WebService,需要指定一个CookieContainer对象,代码如下:
System.Net.CookieContainer cc = new System.Net.CookieContainer();
ls.CookieContainer = cc;
bool r, rs;
ls.login( " bill " , " 1234 " , out @r, out rs);
if (r)
{
MessageBox.Show(ls.getLoginMsg().@return);
}
<!--
/* Font Definitions */
@font-face
{font-family:宋体;
panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
{font-family:""@宋体";
panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{mso-style-parent:"";
margin:0cm;
margin-bottom:.0001pt;
text-align:justify;
text-justify:inter-ideograph;
font-size:10.5pt;
font-family:"Times New Roman";}
/* Page Definitions */
@page
{}
@page Section1
{size:612.0pt 792.0pt;
margin:72.0pt 90.0pt 72.0pt 90.0pt;}
div.Section1
{page:Section1;}
-->
如果是访问跨服务的支持会话的
WebService,则不需要指定
CookieContainer对象,代码如下:
bool r, rs;
ls.login( " bill " , " 1234 " , out @r, out rs);
if (r)
{
service1.searchService ss = new service1.searchService();
MessageBox.Show(ss.findByName( " abc " ));
}
<!-- /* Font Definitions */ @font-face {font-family:宋体; panose-1:2 1 6 0 3 1 1 1 1 1;} @font-face {font-family:""@宋体"; panose-1:2 1 6 0 3 1 1 1 1 1;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:justify; text-justify:inter-ideograph; font-size:10.5pt; font-family:"Times New Roman";} /* Page Definitions */ @page {} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt;} div.Section1 {page:Section1;} -->
如果读者使用
delphi(本文使用的是
delphi2009,其他的
delphi版本请读者自行测试)调用支持会话的
WebService时有一些差别。经笔者测试,使用
delphi调用
WebService,将
scope属性值设为
transportsession和
application都可以实现跨服务的会话管理,这一点和
Java与
C#不同,
Java和
C#必须将
scope属性值设为
application才支持跨服务会话管理。在
delphi中不需要象
C#指定一个
CookieContainer或其他类似的对象,而只需要象访问普通的
WebService一样访问支持会话的
WebService即可。
相关推荐
【WebService大讲堂之Axis2系列教程】是一个深入讲解 Axis2 这个流行WebService引擎的教程,适合初学者。Axis2作为一个强大的工具,它在多种场景下被广泛应用,包括发布服务端Java类的方法以供不同客户端调用,促进...
### WebService大讲堂之Axis2.pdf 知识点概览 #### 1. Axis2 概述 - **定义**: Axis2 (Apache eXtensible Interaction System 的缩写) 是一个开源的 WebService 运行引擎,由 Apache 开发维护。 - **特点**: - ...
6. **会话管理**:“WebService大讲堂之Axis2(5):会话(Session)管理.doc”和“WebService大讲堂之Axis2(6):跨服务会话(Session)管理 .doc”可能提供了关于在Axis2中管理HTTP会话的策略和技术。 7. **二进制文件...
5. **WebService大讲堂之Axis2(6):跨服务会话(Session)管理** 这里讲解了如何在Web服务之间管理和共享会话状态,这对于构建需要保持用户状态的应用程序,如电子商务网站,非常重要。 6. **WebService大讲堂之Axis...
Java WebService大讲堂是一个全面深入讲解Web服务技术的系列教程,涵盖了从基础概念到实际应用的各个环节。这个完整版包括了1-10集的内容,旨在帮助开发者全面理解和掌握Java WebService的开发与实现。 首先,让...
文档1 pojo实现0配置 文档2 符合数据类型 文档3 使用services.xml发布...文档6 跨越session管理 文档7 spring的bean发布为webservice 文档8 异步调用webservice 文档9 编写axis模块 文档10 使用moniter监视器