• Kaushik.Ray
  • NEWBIE
  • 0 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies

Hello All I want to upload files to my external system using SOAP APIs. My requirements - 

 

1. upload large files to third party system using SOAP API.

2. File size can be of 250GB.

 

Limitation that can restrict me - 

 

1. maximum file size that can be uploaded - 5MB

2. maximum Heap size - 6MB. even if i want to upload usign  SOAP API i will still need to hold blob value in controller.

3. maximum web service reqquest limit - one of the main issues that i feel is 3MB limit on webservice call out, in this case i can not send SOAP request of more than 3MB.

 

Please help me out on this tricky solution. let me know if any further details required.

 

Thanks,

Ray

Hello,

I want implement Queueable Apex on Sandbox (Winter 15) and I follow the example on this article : https://www.salesforce.com/us/developer/docs/apexcode/Content/apex_queueing_jobs.htm but when i launch test class, i have this error :  "This method is not implemented" 
And, in Debug log, i have : FATAL_ERROR Internal Salesforce.com Error

Code apex : 
public class AsyncExecutionExample implements queueable {
    public void execute(queueablecontext context) {
        system.debug('test');
    }
}

On my Dev Org, this code works.

Someone already encountered this problem? Thank you for your help

Hello All I want to upload files to my external system using SOAP APIs. My requirements - 

 

1. upload large files to third party system using SOAP API.

2. File size can be of 250GB.

 

Limitation that can restrict me - 

 

1. maximum file size that can be uploaded - 5MB

2. maximum Heap size - 6MB. even if i want to upload usign  SOAP API i will still need to hold blob value in controller.

3. maximum web service reqquest limit - one of the main issues that i feel is 3MB limit on webservice call out, in this case i can not send SOAP request of more than 3MB.

 

Please help me out on this tricky solution. let me know if any further details required.

 

Thanks,

Ray