We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95fd44a commit cf0bd6aCopy full SHA for cf0bd6a
Readme.md
@@ -852,7 +852,7 @@ Construct a WSDL instance from either the WSDL content or the URL to the WSDL.
852
853
#### Parameters
854
855
-- wsdl: A string wSDL or an URL to the WSDL
+- wsdl: a WSDL string or an URL to the WSDL
856
- baseURL: base URL for the SOAP API
857
- options: options (see source for details), use `{}` as default.
858
@@ -895,7 +895,7 @@ import { IProspectType } from './types';
895
const WSDL_CONTENT = "...";
896
897
const httpClient: AxiosInstance = /* ... instantiate ... */;
898
-const url = 'http://example.org/SoapService.svc';
+const baseURL = 'http://example.org/SoapService.svc';
899
900
const wsdl = new WSDL(WSDL_CONTENT, baseURL, {});
901
0 commit comments