微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

webService第一个SimpleService调用getGreeting出现“你好 null”的情况

在网上看到一个以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.25\apache-tomcat-7.0.25\webapps\axis2\WEB-INF\pojo下,无参数方法返回正常,但我访问带参数的方法时候
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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐