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
Aslam_Kamal_86Aslam_Kamal_86 

Bulk API Jar file available for Java 1.4?

We have a requirement where we have lots of data coming into a database, which I have to load into Salesforce overnight. Till now we have been using SOAP API for this, in batches of 200, but it takes a lot of time, as the number of records is sometimes very huge.

We thought of implementing this using bulk API, however we could NOT find Jar files (wsc-xx.jar,partner-library.jar) which was compatible with Java 1.4 present in our database. Only jar files for 1.5 and higher were available.

 

Does anyone know if the bulk API can be implemented for Java 1.4? If so where can i get the related jar files for this?

 

Thanks

Aslam

SuperfellSuperfell

WSC requires Java 1.5 or later. If you want to use Java 1.4, you'd have to write your own code to call the HTTP interface directly. (see the bulk API dccs). The jar is just a connivence.