-
Notifications
You must be signed in to change notification settings - Fork 75
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
Error when parsing a WSDL #10
Comments
Bumping this, because of urgency at my end! My apologies! Could this be an |
I think that it is more likely to be caused by a somewhat unusual structure of the WSDL. You could for example try to replace the bit
by the contents (the wsdl:types part) of http://demo-hotelws.touricoholidays.com/HotelFlow.svc?wsdl |
Thanks for your quick reply @willemdj! I have downloaded both WSDLs, modified the main one to include the
I am still looking into this, but posting the update here! |
Same issue here. It looks like the imported types, which are given as remote resources ("http://...") are not downloaded. It appears that soap expects them to be located in the local file system. |
Hi, I don't think that is the problem, it should get remote resources as well. I do recognize that there is a problem with the WSDL that the original issue refers to. This is related to the complex structure of that WSDL. Assuming that you are trying to process a different WSDL, could you let me know what error you are getting, and if possible also provide the files? Thanks, |
The error that I get is that included XSDs appear to be expected in local file system. I'll open another issue. |
Apologies for disappearing! The problem indeed was with the WSDL. It got resolved after I upgraded a later version of the API, with an updated WSDL. Nonetheless, I could make calls using the original WSDL from Python. So, |
When using
soap:wsdl2erlang(...).
on http://demo-hotelws.touricoholidays.com/HotelFlow.svc?wsdl, I get the following.A little investigation shows that
erlsom:scan(...)
is returning a bunch ofundefined
elements for theimport
ed document at http://demo-hotelws.touricoholidays.com/HotelFlow.svc?wsdl=wsdl0.So, it is possible that this is
erlsom
's problem. Or, it could be a problem with themodel
being passed toerlsom:scan
.In any case, could you take a look at this, please? All help is appreciated. Thanks!
The text was updated successfully, but these errors were encountered: