WebService
文章平均质量分 51
bits00
有的时候,我好想哭,但是我不知的怎么流泪。
如果一个从不会流泪的人,却并不代表他有多么坚强,那么这是一种悲哀。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
axis2 发布 webservice 和 java调用webservice
1.下载与安装axis2:apache-tomcat-6.0.35.zipaxis2-1.6.1-war.zip解压,然后将axis2.war复制到tomcat的webapp目录中,安装完毕!启动tomcat测试axis2是否安装成功:http://localhost:8080/axis22.首先简单介绍一下webapp/axis2/的目录结构如下:axis2 |-- axi原创 2011-12-20 00:16:23 · 6901 阅读 · 0 评论 -
java对象转换成 OMElement
public static OMElement obj2ome(Object o, String namespace){ String sA = o.getClass().getName(); int iA = sA.lastIndexOf(".")+1; int iB = sA.length(); String name = sA.原创 2012-09-17 15:10:57 · 2443 阅读 · 0 评论 -
OMElement 更改
public void addNameSpace(OMElement ome, OMNamespace omn) { Iterator i = ome.getChildElements(); while (i.hasNext()) { OMElement e = (OMElement) i.next();原创 2012-09-17 17:31:32 · 1153 阅读 · 0 评论
分享