当前位置: 代码迷 >> Web Service >> xfire webservice 可否通过浏览器地址栏输入url的方式来访问
  详细解决方案

xfire webservice 可否通过浏览器地址栏输入url的方式来访问

热度:761   发布时间:2012-12-29 10:28:09.0
xfire webservice 能否通过浏览器地址栏输入url的方式来访问
利用xfire框架写了一个webservice 发布到Tomcat上 ! 
建立另一个java 类 ,已经可以实现通过

Client client = new Client(new URL("http://localhost:8080/Hello/services/sayHello?wsdl"));
Object[] results = client.invoke("example", new Object[] {"hello"});

这样的方式来访问webservice的example方法

请问能否在浏览器的地址栏里输入webservice的url来访问呢?就像用axis2一样(注意,这里我不是想在浏览器里看到webservice的接口说明,而是想调用webservice提供的方法)。
例如:http://localhost:8080/Hello/services/sayHello/example=hello
------解决方案--------------------
可以的
http://localhost:8080/Hello/services/sayHello?method=example&value=hello
  相关解决方案