Вы находитесь на странице: 1из 1

<!

DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"


"http://www.springframework.org/dtd/spring-beans.dtd">
02 <beans>
03����<bean�id="accountInsert"
04��������class="com.salesforce.dataloader.process.ProcessRunner"
05��������singleton="false">
06��������<description>accountInsert job gets the account record from the CSV file�
07������������and inserts it into Salesforce.</description>
08��������<property�name="name"�value="accountInsert"/>
09��������<property�name="configOverrideMap">
10������������<map>
11����������������<entry�key="sfdc.debugMessages"�value="true"/>
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����������������<!--Password below has been encrypted using key file,�
17��������������������therefore, it will not work without the key setting:�
18��������������������process.encryptionKeyFile.
19��������������������The password is not a valid encrypted value,�
2 0��������������������please generate the real value using the encrypt.bat utility
-->
2 1����������������<entry�key="sfdc.password"�value="e8a68b73992 a7a54"/>
2 2 ����������������<entry�key="process.encryptionKeyFile"
2 3��������������������value="c:\Users\{user}\.dataloader\dataLoader.key"/>
2 4����������������<entry�key="sfdc.timeoutSecs"�value="600"/>
2 5����������������<entry�key="sfdc.loadBatchSize"�value="2 00"/>
2 6����������������<entry�key="sfdc.entity"�value="Account"/>
2 7����������������<entry�key="process.operation"�value="insert"/>
2 8����������������<entry�key="process.mappingFile"
2 9��������������������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="2 005-12 -01T00:00:00.000-0800"/>
39������������</map>
40��������</property>
41����</bean>
42 </beans>

Вам также может понравиться