最近在做soap风格的WebService开发,
Mac 可以在命令行通过curl 测试soap 的接口,response是xml格式的
-
没使用libXml2之前:
命令:
curl --header "content-type: text/xml" -d @request.xml http://localhost:8080/ws
-
使用了libXml2之后:
命令:
curl -s --header "content-type: text/xml" -d @request.xml http://localhost:8080/ws | xmllint --format -
在Mac系统下libXmL2的安装
- 官网下载libXmL2,然后进行解压
- 进入libXmL2的目录
- 命令行输入./configure
- 执行 make
- 执行 sudo make install
至此安装完成!