You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For grins, I am doing some SOAP stuff in ql.io (don't ask! :-))
I am trying to pull in the WSDL file and do some manipulation on it. When I try to set up the table and query it:
create table wsdl on select get from "my-host/myPath?wsdl"
select * from wsdl;
The URL resolves to "my-host/myPath?wsdl=". That additional "=" causes the request to fail. I tried a monkey patch, but it appears mutable-uri keeps adding the additional =.
Is there anyway to suppress the "="?
The text was updated successfully, but these errors were encountered:
For grins, I am doing some SOAP stuff in ql.io (don't ask! :-))
I am trying to pull in the WSDL file and do some manipulation on it. When I try to set up the table and query it:
create table wsdl on select get from "my-host/myPath?wsdl"
select * from wsdl;
The URL resolves to "my-host/myPath?wsdl=". That additional "=" causes the request to fail. I tried a monkey patch, but it appears mutable-uri keeps adding the additional =.
Is there anyway to suppress the "="?
The text was updated successfully, but these errors were encountered: