Skip to content

Commit

Permalink
Merge pull request #100 from rahmanme/master
Browse files Browse the repository at this point in the history
Update gowsdl.go
  • Loading branch information
c4milo authored Mar 9, 2018
2 parents 256caae + 67e896c commit f1e9f75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gowsdl.go
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ func (g *GoWSDL) findType(message string) string {
// TODO(c4milo): improve runtime complexity if performance turns out to be an issue.
func (g *GoWSDL) findSOAPAction(operation, portType string) string {
for _, binding := range g.wsdl.Binding {
if stripns(binding.Type) != portType {
if strings.ToUpper(stripns(binding.Type)) != strings.ToUpper(portType) {
continue
}

Expand Down

0 comments on commit f1e9f75

Please sign in to comment.