• Bluetee
  • NEWBIE
  • 0 Points
  • Member since 2007

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 14
    Questions
  • 9
    Replies
The maximum lengh for a number type defined in salesforce platform is 18 digits. But in Java, it will round number more than 16 digits. Thus, if I define a number in salesforce which is 17 or 18 digits, say 12345678901234567 for example. It will be rounded to 1.2345678901234568E16 in Java.
 
Does it mean the value will be changed if it is processed by a Java program?
 
The double type in Java is defined follow the IEEE 754 standard. I would like to know why Salesforce.com allows a number maximum to 18 digits. And how could I deal with such a big number using Java code.
I looked up documents but failed to find instructions of how to use DebuggingHeader. Would any one please provide any help!
 
Thanks
We noticed that, there is a header 'QueryOption' in retrive. But it seems that it is different to the one in query/queryMore.
 
We tried to retireve more than 800 sObjects and set the batchSize to 600, but nothing happened, all the 800+ sObjects were returned.
 
We also looked up the apex_api document, but gained nothing useful.
 
So why there is a 'QueryOption' header for retrieve, and how does it took effect?
 
Thanks
Hello,
 
It is really strange. The same project can be run successfully 2 days ago got a HttpCommunicationException today when doing the query. The login has been successfully perfermed, I can got the session and the new url. But when doing the query, it returned a HttpCommunicationException exception.
 
the error message saids: The selected encryption strength may not match your policy file. Please check your policy file and upgrade, if necessary.. Fatal SSL handshake error: java.lang.RuntimeException: Unable to create cipher AES/CBC/NoPadding: java.security.InvalidKeyException: Illegal key size .
 
It is something wrong with my network connection? or Salseforce has updated any ssl related configuration recently?
 
Thanks in advance!
for Create/Update/Upsert/Delete operations there is a limitation. In Apex_API document, it saids:
 
-------------------------
Maximum Number of Objects Created
Your client application can add up to 200 individual objects in a single create call. If a create request exceeds 200 objects, then the entire operation fails.
-------------------------
 
I would like to know if this 'Maximum Number' could be changed to other than 200? and How?
 
Thanks!