You need to sign in to do that
Don't have an account?

php toolkit without openssl and sokets
I have a hosting provider and even they have php 5.1.4 installed they don´t have activated openssl and socket extensions. Does the leatest php toolkit can work without them and which are the risk if there are any ?
Thank you
Thank you
There are many hosting providers that provide SSL. Would you be able to switch?
Message Edited by Tran Man on 07-07-2006 09:25 AM
In the SforceBaseClient.php file, modify setEndPoint to replace https with http in the server URL.
Code:
Message Edited by Tran Man on 07-07-2006 09:50 AM
Hi Nick,
Thanks for the quick response. I tried this approach but i keep getting the error "SSL support is not available in this build" during login from login.php script from the samples folder of the toolkit.
Looks like we do not explicitly set the endpoint during login. We just seem to give the wsdl file (partner.wsdl.xml) as input. I even tried changing the soap address in the WSDL file but it still kept showing the same error.
Can you please guide me as what could be going wrong in my implementation?
Regards,
Ram
Code:
Hi Nick,
The error seems to be occuring even before we set the login header. It happens at
$result = $this->sforce->login(array (
'username' => $username,
'password' => $password
));
How does this method work? I guess it makes a SSL call for login? Is there a workaround for this?
Regards,
Ram