1<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
2 <beans>
3 <bean id="accountInsert"
4 class="com.salesforce.dataloader.process.ProcessRunner"
5 scope="prototype">
6 <description>accountInsert job gets the account record from the CSV file
7 and inserts it into Salesforce.</description>
8 <property name="name" value="accountInsert"/>
9 <property name="configOverrideMap">
10 <map>
11 <entry key="sfdc.debugMessages" value="false"/>
12 <entry key="sfdc.debugMessagesFile"
13 value="C:\DLTest\Log\accountInsertSoapTrace.log"/>
14 <entry key="sfdc.endpoint" value="https://servername.salesforce.com"/>
15 <entry key="sfdc.username" value="admin@Org.org"/>
16
17 therefore, it will not work without the key setting:
18 process.encryptionKeyFile.
19 The password is not a valid encrypted value,
20 please generate the real value using the encrypt.bat utility -->
21 <entry key="sfdc.password" value="e8a68b73992a7a54"/>
22 <entry key="process.encryptionKeyFile"
23 value="c:\Users\{user}\.dataloader\dataLoader.key"/>
24 <entry key="sfdc.timeoutSecs" value="600"/>
25 <entry key="sfdc.loadBatchSize" value="200"/>
26 <entry key="sfdc.entity" value="Account"/>
27 <entry key="process.operation" value="insert"/>
28 <entry key="process.mappingFile"
29 value="C:\DLTest\Command Line\Config\accountInsertMap.sdl"/>
30 <entry key="dataAccess.name"
31 value="C:\DLTest\In\insertAccounts.csv"/>
32 <entry key="process.outputSuccess"
33 value="c:\DLTest\Log\accountInsert_success.csv"/>
34 <entry key="process.outputError"
35 value="c:\DLTest\Log\accountInsert_error.csv"/>
36 <entry key="dataAccess.type" value="csvRead"/>
37 <entry key="process.initialLastRunDate"
38 value="2005-12-01T00:00:00.000-0800"/>
39 </map>
40 </property>
41 </bean>
42 </beans>