-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Id not specified in an update call #11
Comments
+1 |
@ddeboer I'm hitting the same issue mentioned here. Due to the bug could be done as every object has "Id" is always add that into the getSoapTypes array it builds for each type of object. What do you think about doing that? Not the prettiest way but I don't see any other way to do it? |
We run into the same problem using the update call |
I ran into the same problem. Made a small (dirty) workaround for the time being. Made a pull request for the changes. |
+1 |
See #19 |
Should be fixed with #19. |
Applying the fix in #9 exposed a bug in the PHP SOAP library where
SoapClient::__getTypes()
does not support extensions in the XMLSchema when used in WSDL mode.https://bugs.php.net/bug.php?id=45404
Since every object in the WSDL extends
sObject
, which is where theId
is declared, any record update will fail with "Id not specified in an update call".The text was updated successfully, but these errors were encountered: