-
Notifications
You must be signed in to change notification settings - Fork 162
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crash in genGoOpStruct due to invalid function name #132
Comments
Same problem here, I just reverted the latest commit. |
@denysvitali @fiorix Any ideas? This issue appears to have been introduced in #131. My WSDL is here.. |
I'll try to see whether I can find a fix that works for both your wsdl and the one posted in my issue. Sorry |
It's okay, thanks for replying so fast! |
Open
gpedro
added a commit
to gpedro/wsdl2go
that referenced
this issue
Aug 13, 2020
Co-authored-by: Denys Vitali <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I had an issue with this package when converting my WSDL.
Here's the traceback:
I've added logging in case function is nil to debug this:
Where the panic occurs:
wsdl2go/wsdlgo/encoder.go
Line 1372 in 5100b2d
To fix the issue with my WSDL I've added the next lines:
ge.funcs
does not contain function with namegoSymbol(bo.Name)
which is ChangeOwnPassword.But it does contain function with name
bo.Name
which is changeOwnPassword.Convertion is successful after the fix.
Here's the WSDL - https://pastebin.com/raw/91Dt2ERp
The text was updated successfully, but these errors were encountered: