如何创建肥皂客户端?
我需要创建一个 SOAP 客户端。 SOAP 客户端应该访问服务 使用 SOAP 消息公开。它执行动态绑定并在远程执行方法 网络服务。 Soap 方法有:
- getTodoList(acronym) -> TodoData() 列表
- getTodoOneDay(acronym, date) -> TodoData() 列表
- createTodo(首字母缩略词、时间、注释、优先级) -> String
- updateTodo(id, 缩写词, 时间, 注释, 优先级) -> String
- deleteTodo(acronym, id) ->; String
http://lol.comlab.bth.se:8090。 请帮助我提供 php、java、python 或任何其他语言的代码。
I need to create a SOAP client. The SOAP client should access services
exposed using SOAP messages. It performs dynamic bindings and executes methods at remote
web services. Soap methods are:
- getTodoList(acronym) -> List of TodoData()
- getTodoOneDay(acronym, date) -> List of TodoData()
- createTodo(acronym, time, note, priority) -> String
- updateTodo(id, acronym, time, note, priority) -> String
- deleteTodo(acronym, id) -> String
There is a soap server running on http://lol.comlab.bth.se:8090.
Please help me by giving code in either php, java, python or any other language.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在WSDL 模式中使用PHP SOAP Extension调用方法
getTodoList(acronym)
:或者在非 WSDL 模式中:
此外,这些教程可能会有所帮助:
You could invoke method
getTodoList(acronym)
using PHP SOAP Extension in WSDL Mode:Or in non-WSDL Mode:
Also, these tutorials could be helpful:
只需安装 python-zsi 库或任何其他源代码生成器,然后执行:
wsdl2py http://lol.comlab.bth.se:8090/wsdl
你就完成了
Just install the python-zsi library, or any other source code generator, and execute:
wsdl2py http://lol.comlab.bth.se:8090/wsdl
your done
我认为你要求某人写整个客户,而不仅仅是帮忙。您可以尝试另一个网站来为此聘请编码员。
I think you're asking someone to write the whole client, and not just help out with it. You might try another site to hire a coder for this.