We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Having difficulties authorizing php SoapClient with MS Dynamic Great Plains. I can connect through SoapUI.
The token length is shorter than what is sent using SoapUI.
$wsdlUrl = 'http://example.org:48620/Metadata/Legacy/Full/DynamicsGP.wsdl'; $options = [ 'ntlm_username' => 'Domain\username', 'ntlm_password' => 'password' ]; $soapClient = new \NTLMSoap\Client($wsdlUrl, $options); $params = array( criteria => array( 'ModifiedDate' => array( 'GreaterThan' => '2016-04-18', 'LessThan' => '2016-04-19' ) ),> 'context' => array( 'OrganizationKey' => array( 'type' => 'CompanyKey', 'Id' = ) ) ); $soapClient->__setLocation('http://example.org:48620/DynamicsGPWebServices/DynamicsGPService.asmx'); $response = $soapClient->GetPurchaseOrderList(array($params));
I had to set use ___setLocation() because client was being forwarded to http://localmachine:48620/DynamicsGPWebServices/DynamicsGPService.asmx
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Having difficulties authorizing php SoapClient with MS Dynamic Great Plains. I can connect through SoapUI.
The token length is shorter than what is sent using SoapUI.
I had to set use ___setLocation() because client was being forwarded to http://localmachine:48620/DynamicsGPWebServices/DynamicsGPService.asmx
The text was updated successfully, but these errors were encountered: