We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 256caae commit 67e896cCopy full SHA for 67e896c
gowsdl.go
@@ -487,7 +487,7 @@ func (g *GoWSDL) findType(message string) string {
487
// TODO(c4milo): improve runtime complexity if performance turns out to be an issue.
488
func (g *GoWSDL) findSOAPAction(operation, portType string) string {
489
for _, binding := range g.wsdl.Binding {
490
- if stripns(binding.Type) != portType {
+ if strings.ToUpper(stripns(binding.Type)) != strings.ToUpper(portType) {
491
continue
492
}
493
0 commit comments