Marcel Hauf
Marcel Hauf
I understand. I am trying to parse wsdl files like this one: http://www.webservicex.com/CurrencyConvertor.asmx?wsdl And even in that small example the schema structure has an element which is followed by a...
I hope I did syncing dev with v2 correct. Looks funky with git rebase.
That line is wrong. I am sorry, I fixed it.
I run into a problem with mapstructure. You can't customize decoding of structs with methods. It requires hook functions which adds a lot of complexity to turnpike to enable customizing...
I got a prototype wrapper around the current client.Register/Call function working. It needs a lot more work and testing. I will push to the dev branch once I moved the...
I need to add a dependency https://github.com/mitchellh/mapstructure or write my own map[string]interface{} to decoder. What would you prefer?
I got it working with a test-suit and without the mapstructure dependency. I don't know how well it will work with a none Go caller. I need to test it...
The tests work because no serialization happens between the two test clients. This means I need the mapstructure package to convert a map to a struct like I wrote before.
I would like to do something similar to Publish and Subscribe. Add a method to Client: ``` Go func (c *Client) Broadcast(topic string, arguments ...interface{}) error ``` And extend Client.RegisterService...
I implemented the first idea, minus the Client.Broadcast function. It would just be a one line short form of Client.Publish. @jcelliott could you check the code, please. I would like...