java或者php用wsdl接口实现客户端,并写个执行类,把xml字符串传给服务端

java或者php用wsdl接口实现客户端,并写个执行类,把xml字符串传给服务端,第1张

java编写webservice服务端,php作为客户端调用
1首先我们写一个简单的java类并发布webservice
package comphp;
import javautilMap;
/
@author yangjuqi
@createdate 2009-5-18 下午04:43:09

/
public class WebServiceImpl {
public String sendTransact(Map map) throws Exception {
Systemoutprintln("::: Call testModel1 :::");
if(map!=null){
String bugmanifestid = StringUtilgetValue(mapget("bugmanifestid"));
String editedby = StringUtilgetValue(mapget("editedby"));
String dditeddate = StringUtilgetValue(mapget("dditeddate"));
String fullinfo = StringUtilgetValue(mapget("fullinfo"));
String action = StringUtilgetValue(mapget("action"));
Systemoutprintln("bugmanifestid -$amp;>quot;$ +bugmanifestid);
Systemoutprintln("editedby -$amp;>quot;$ +editedby);
Systemoutprintln("dditeddate  -$amp;>quot;$ +dditeddate);
Systemoutprintln("fullinfo -$amp;>quot;$ +fullinfo);
Systemoutprintln("action  -$amp;>quot;$ +action);
}
return "success";
}
}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/13378741.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-07-24
下一篇 2023-07-24

发表评论

登录后才能评论

评论列表(0条)

保存