• rahul kumar(mumbai)
  • NEWBIE
  • 0 Points
  • Member since 2013

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

I am trying to use the command line interface for Apex Data Loader 15.0.  I am receiving the above error.

 

Here is my process-conf.xml file

 

<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean id="csvAccountExtractProcess"
   class="com.salesforce.lexiloader.process.ProcessRunner"
      singleton="false">
   <description>csvAccountExtract job gets account info from salesforce and saves info into a       CSV file."</description>
      <property name="name" value="csvAccountExtract"/>
      <property name="configOverrideMap">
      <map>
         <entry key="sfdc.debugMessages" value="false"/>
         <entry key="sfdc.endpoint" value="https://www.salesforce.com"/>
         <entry key="sfdc.username" value="dmote@neapco.com"/>
                <!-- password below has been encrypted using key file, therefore it will not work without the key setting: process.encrypt -->
         <entry key="sfdc.password" value="7e2dd57498ca6eca83040dbfedaa7900904863e5500fd6ab3aace7c94944482a97fa41fee9313237"/>
         <entry key="process.encryptionKeyFile" value="C:\key.txt"/>
         <entry key="sfdc.timeoutSecs" value="600"/>
         <entry key="sfdc.loadBatchSize" value="200"/>
         <entry key="sfdc.entity" value="Account"/>
         <entry key="sfdc.extractionRequestSize" value="500"/>
         <entry key="sfdc.extractionSOQL" value="Select Id, Name, ParentId, AccountNumber, AnnualRevenue, CHESS_Id__c, CHESS_PARENT__c FROM Account"/>
         <entry key="process.operation" value="extract"/>
         <entry key="dataAccess.type" value="csvWrite"/>
         <entry key="dataAccess.name" value="C:\extract.csv"/>
            </map>
        </property>
    </bean>
</beans>


 

Am I missing something?

 

If you need more info, let me know.  

 

Thanks,

David

What I want to accomplish is two pageBlocks next to each other that maintain the same size regardless of screen size. Below is the code that is causing issues. It seems that the title attribute of the pageBlock is causeing the pageBlock size to change. If you remove the titles the blocks are perfectly even.

I'm pretty new at this so if there is a better way to have to page blocks next to each other I'm all ears.


Code:
<apex:page>
        <apex:panelGrid columns="2" id="theGrid" width="100%">
                <apex:pageBlock title='Big Long Ugly Title #!$!#'>
                </apex:pageBlock>
                
                <apex:pageBlock title='Small'>
                </apex:pageBlock>
        </apex:panelGrid>
</apex:page>

 

  • January 25, 2008
  • Like
  • 0