function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
PrasadBabuPrasadBabu 

Unexpected element {urn:sobject.partner.soap.sforce.com}type during simple type deserialization

    ...



Message Edited by PrasadBabu on 01-22-2008 08:59 PM
Best Answer chosen by Admin (Salesforce Developers) 
SuperfellSuperfell

<Account__c>
<ns3:type>Accounts</ns3:type>
<SAP_CUSTOMER_ID__C>324234</SAP_CUSTOMER_ID__C>
</Account__c>

should probably be
<Account__r xsi:type='Account'>
<SAP_CUSTOMER_ID__C>324234</SAP_CUSTOMER_ID__C>
</Account__r>


Message Edited by SimonF on 01-22-2008 08:40 AM

All Answers

SuperfellSuperfell

<Account__c>
<ns3:type>Accounts</ns3:type>
<SAP_CUSTOMER_ID__C>324234</SAP_CUSTOMER_ID__C>
</Account__c>

should probably be
<Account__r xsi:type='Account'>
<SAP_CUSTOMER_ID__C>324234</SAP_CUSTOMER_ID__C>
</Account__r>


Message Edited by SimonF on 01-22-2008 08:40 AM
This was selected as the best answer
PrasadBabuPrasadBabu

Hi Simon,

Thanks for your reply. Now my interface is working fine.

From your inputs i was able to fix my problem.

Keep replying :)

Thanks and again,
Prasad Babu.