How to call overloaded SOAP method with PHP SoapClient?
Confluence soap api defines two methods with the same name but different parameters: Page getPage(String token, long pageId) - returns a single Page (according to the documentation the second parameter is String, but in WSDL it is long) Page getPage(String token, String spaceKey, String pageTitle) - returns a single Page I would need to call the method with two parameters using PHP SoapClient. In WSDL mode SoapClient insists on using the three-parameter one. In non-WSDL mode I managed to make a call with two parameters, but I cannot make the type of the second parameter to be long. How can I