//这个得看你的系统集成的是 appche 的 cxf 客户端还是 axis2
//我用 cxf 比较多
//下面就说说 cxf 下如何生成 wsdl 对应的客户端吧
//在 cxf 安装目录下有个 bin 目录
//该目录下有个 wsdl2java 命令可供我们生成 webservices 客户端代码
//具体用法如下:
// wsdl2java -p org.bruceleeforever.ws.project007 -d src --compile -c bin -client yourWsdlURL
// -p: package name
// -d: source file directory
// --compile: compile source code
// -c: compiled class file saved directory
// -client: get main class for test
// yourWsdlURL: your wsdl url