在网上看到一个以axis2为框架webservice文章http://wenku.baidu.com/view/212d1eebe009581b6bd9eb69.html
我把axis2.war文件复制到tomcat上webapp下,然后启动tomcat后,通过http://localhost:8080/axis2表明web服务引擎发布成功了,
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,信息如下:
按照此情况只能解释为name=bill这个参数值没有传过去,后来我又试用java客户端调了一下,成功了
我把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 |
讨论了在使用轴2框架部署Web服务时,通过网页直接传递参数导致方法无法正确接收的问题,并通过Java客户端调用展示了正确的参数传递方式。分析了可能的原因并提供了解决方案。
1438

被折叠的 条评论
为什么被折叠?



