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.