提供Web服务的网址
1. webservices.seekda/:这是一个提供Web服务搜索的网站,非常好,还提供了每个Web服务每个操作的很长时间内的针对响应时间的测试数据。我已经发信询问是否可以使用其数据及数据的获取方法了。
2. hods:这是一个很常用的Web服务发布网站,一个UDDI
3.
Web服务的Location
www.webxml:这是一个国内的提供Web服务的网站,很有意思基于HTTP GET的Web服务调用方法
webservice.webxml/WebServices/IpAddressSearchWebService.asmx/getCountryCityByIp?theIpAddress=202.118.8.4
参数
操作名称
webservice.webxml/WebServices/ChinaZipSearchWebService.asmx/getAddressByZipCode?theZipCode=110005&userID=
参数为空的输入方法
getDatabaseInfo
获得国内手机号码归属地数据库信息
输入参数:无;返回数据:一维字符串数组(省份 城市 记录数量)。
SOAP 1.1
以下是 SOAP 1.2 请求和响应示例。所显示的占位符需替换为实际值。
POST /WebServices/MobileCodeWS.asmx HTTP/1.1
Host: webservice.webxml
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "WebXml/getDatabaseInfo"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="/2001/XMLSchema-instance" xmlns:xsd="/2001/XMLSchema" xmlns:soap="/soap/envelope/">
<soap:Body>
<getDatabaseInfo xmlns="WebXml/" />
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="/2001/XMLSchema-instance" xmlns:xsd="/2001/XMLSchema" xmlns:soap="/soap/envelope/">
<soap:Body>
<getDatabaseInfoResponse xmlns="WebXml/">
<getDatabaseInfoResult>
<string>string</string>
<string>string</string>
</getDatabaseInfoResult>
</getDatabaseInfoResponse>
</soap:Body>
</soap:Envelope>
SOAP 1.2
以下是 SOAP 1.2 请求和响应示例。所显示的占位符需替换为实际值。
POST /WebServices/MobileCodeWS.asmx HTTP/1.1
提供web服务的是什么Host: webservice.webxml
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="/2001/XMLSchema-instance" xmlns:xsd="/2001/XMLSchema" xmlns:soap12="/2003/05/soap-envelope">
<soap12:Body>
<getDatabaseInfo xmlns="WebXml/" />
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="/2001/XMLSchema-instance" xmlns:xsd="/2001/XMLSchema" xmlns:soap12="/2003/05/soap-envelope">
<soap12:Body>
<getDatabaseInfoResponse xmlns="WebXml/">
<getDatabaseInfoResult>
<string>string</string>
<string>string</string>
</getDatabaseInfoResult>
</getDatabaseInfoResponse>
</soap12:Body>
</soap12:Envelope>
HTTP GET
以下是 HTTP GET 请求和响应示例。所显示的占位符需替换为实际值。
GET /WebServices/MobileCodeWS.asmx/getDatabaseInfo? HTTP/1.1
Host: webservice.webxml
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfString xmlns="WebXml/">
<string>string</string>
<string>string</string>
</ArrayOfString>
HTTP POST
以下是 HTTP POST 请求和响应示例。所显示的占位符需替换为实际值。
POST /WebServices/MobileCodeWS.asmx/getDatabaseInfo HTTP/1.1
Host: webservice.webxml
Content-Type: application/x-www-form-urlencoded
Content-Length: length
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<ArrayOfString xmlns="WebXml/">
<string>string</string>
<string>string</string>
</ArrayOfString>
其他
1.Eclipse的BPEL编辑工具:在Eclipse3.4版本中有
www.ibm/developerworks/cn/opensource/os-eclipse-bpel2.0/
www.javaeye/wiki/problem/4391
2.开源的ESB以及JBOSS相关
www.javaeye/wiki/topic/453625
cxlh.javaeye/blog/645473
www.javaeye/news/11079-esb-opensource
yuexiangcheng007-sina-com.javaeye/blog/453625
3.Eclipse下载
/downloads/
4.ODE相关
kungstriving.javaeye/blog/612796
www.javaeye/wiki/topic/612796
JUDDI的
1. blog.csdn/flyingbox/archive/2006/05/02/705702.aspx
2. wenku.baidu/view/0d38461810a6f524ccbf85d7.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论