加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

webService第一个SimpleService调用getGreeting出现“你好 null

发布时间:2020-12-16 23:54:52 所属栏目:安全 来源:网络整理
导读:在网上看到一个以axis2为框架webservice文章http://wenku.baidu.com/view/212d1eebe009581b6bd9eb69.html 我把axis2.war文件复制到tomcat上webapp下,然后启动tomcat后,通过http://localhost:8080/axis2表明web服务引擎发布成功了, Java code ? 1 2 3 4 5 6
在网上看到一个以axis2为框架webservice文章http://wenku.baidu.com/view/212d1eebe009581b6bd9eb69.html
我把axis2.war文件复制到tomcat上webapp下,然后启动tomcat后,通过http://localhost:8080/axis2表明web服务引擎发布成功了,
Java code
?
1
2
3
4
5
6
7
8
9
10
11
12
public? class? SimpleService
{
??? public? String?getGreeting(String?name)
??? {
???????? System.out.println( "-----" +name+ "------" );
???????? return? "您好," +name;
??? }
???? public? int? getPrice()
???? {
??????? return? new? java.util.Random().nextInt( 1000 );
???? }
}

javac?SimpleService.java后产生.class文件,然后复制到F:apache-tomcat-7.0.25apache-tomcat-7.0.25webappsaxis2WEB-INFpojo下,无参数方法返回正常,但我访问带参数的方法时候
http://localhost:8080/axis2/services/SimpleService/getGreeting?name=bill,信息如下:
XML/HTML code
?
1
2
3
-?< ns:getGreetingResponse? xmlns:ns = "http://ws.apache.org/axis2" >
?? < return >您好,null</ return >?
?? </ ns:getGreetingResponse >

按照此情况只能解释为name=bill这个参数值没有传过去,后来我又试用java客户端调了一下,成功了
Java code
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import? javax.xml.namespace.QName;
?
import? org.apache.axis2.AxisFault;
import? org.apache.axis2.addressing.EndpointReference;
import? org.apache.axis2.client.Options;
import? org.apache.axis2.rpc.client.RPCServiceClient;
?
import? com.sun.tools.jxc.gen.config.Classes;
?
public? class? RPCClinnt?{
?
???? public? static? void? main(String[]?args)? throws? Exception?{
?????????
???????? //使用RPC方式调用WebService
???????? RPCServiceClient?serviceClient= new? RPCServiceClient();
???????? Options?options=serviceClient.getOptions();
???????? //指定调用WebService的URL
???????? EndpointReference?targetERP= new? EndpointReference( "http://localhost:8080/axis2/services/SimpleService" );
???????? options.setTo(targetERP);
???????? //指定getGreeting方法的参数值
???????? Object[]?opAddEntryArgs= new? Object[]{ "超人" };
???????? //指定getGreeting方法返回值的数据类型的Class对象
???????? Class[]?classes= new? Class[]?{String. class };
???????? //指定要调用的getGreeting方法及WSDL文件的命名空间
???????? QName?opAddEntry= new? QName( "http://ws.apache.org/axis2" ,? "getGreeting" );
???????? //调用getGreeting方法并输出该方法的返回值
???????? System.out.println(serviceClient.invokeBlocking(opAddEntry,?opAddEntryArgs,classes)[ 0 ]);
???? }
?
}








成功打印出----您好,超人
为什么在网页上直接传参数暴露的方法不能接受呢,请高手指点一下,谢谢

http://localhost:8080/axis2/services/SimpleService/getGreeting?name=bill这里的参数不一定是name,比如

<xs:element?name="sayHello"><xs:complexType><xs:sequence><xs:element?minOccurs="0"?name="args0"?nillable="true"?type="xs:string"/></xs:sequence></xs:complexType></xs:element>这里就用args0

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读