You need to sign in to do that
Don't have an account?
jprosser
Did the Perl SOAP interface change recently?
I can't seem to update records. The code that used to work is not generating this error message:
Missing entity type information. sObject requires a separate 'type' field be sent.
What changed?
ALso, when querying Ids I used to have to do this:
But this doesn't work any more; you've made it not be in an array anymore. Now I have to do this:
What else has changed? How can I get notified in the future?
Thanks,
-Joe
Missing entity type information. sObject requires a separate 'type' field be sent.
What changed?
ALso, when querying Ids I used to have to do this:
Code:
my $result = $sforce->do_query($query); if(defined(@$result)) { $siteId = @$result[0]->{Id}[0]; }
Code:
my $result = $sforce->do_query($query); if(defined(@$result)) { $siteId = @$result[0]->{Id}; }
What else has changed? How can I get notified in the future?
Thanks,
-Joe
I can't seem to update records. The code that used to work is NOW generating this error message:
Sorry,
-Joe