hooklift / gowsdl

WSDL2Go code generation as well as its SOAP proxy
Mozilla Public License 2.0
1.16k stars 392 forks source link

Missing namespace #206

Open fi0 opened 3 years ago

fi0 commented 3 years ago

in the wsdl, there's <import namespace="exampleNamespace"/>

current generated go code

Field1 string `xml:"field1,omitempty" json:"field1,omitempty"`

expected generated go code

Field1 string `xml:"exampleNamespace field1,omitempty" json:"field1,omitempty"`