tiaguinho / gosoap

🦉SOAP package for Go
MIT License
508 stars 176 forks source link

Alter Params to support nested requests #3

Closed LegendOfGIT closed 6 years ago

LegendOfGIT commented 6 years ago

In my case, i have to consume a soap webservice with a nested request structure:

`

123

`

Since Params is from type map[string]string, it is impossible to model this kind of request. Is there a possibility to change the type of Params to map[string]interface{} ?

mamapi commented 6 years ago

I have the same problem

Fale commented 6 years ago

This is the same of #7 and is implemented in #8

LegendOfGIT commented 6 years ago

Kewl. I will give it a try in the next few weeks. I close the issue for now. In case something's wrong with the implementation, I would open another issue or set up a PR to fix it.

LegendOfGIT commented 6 years ago

@Fale Thanks for your improvement :)