首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web Service >

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

2012-12-29 
xfire webservice 能否通过浏览器地址栏输入url的方式来访问利用xfire框架写了一个webservice 发布到Tomca

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

热点排行