• xun
  • NEWBIE
  • 0 Points
  • Member since 2010

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

I got SSL error when app tries to connect Sandobx customer community.

Production env is OK.

 

I was wondering if there is a work around ?  I really don't want to code in Production.

 

Thanks.

  • August 14, 2013
  • Like
  • 0

Hi,

 

I got a weired problem about the api call to session. 

 

We use same username and password to login salesforce to do some operations for different cron job . but about every 2 hours, I got the error message ".UnexpectedErrorFault_Exception: INVALID_SESSION_ID: Invalid Session ID found in SessionHeader: Session timed out".

 

I removed all the logout from my code and did login before do the operations . but still got same problem.

 

I am using WSC 20.0 and partner API,

 

I would be very appreciated if someone can help me 

 

Regards

Tony

 

 

I am trying to create a package and getting the following error

 

"No testMethods found in the selected Apex code for the package "

 

this is all that is in the apex code.

 

 

public with sharing class CaseExtension {
    
    public Case mycase {get; set;}
    public User localUser {get; set;}
    
    
    public CaseExtension(ApexPages.StandardController stdController) {
        this.mycase = (Case)stdController.getRecord();
        localUser = [SELECT Id, Phone, Email, FirstName, LastName, CompanyName from User where Id =: System.UserInfo.getUserId() LIMIT 1];
        this.mycase.OwnerId = localUser.Id;
        
  }
    
}

 

Can someone help me with this as i'm not too sure how to resolve the problem?

 

Thanks!!!

 

Hello>

 

Is there anyway of defining the data loader in code to convert my extracts fields to a number data type

 

right now when I run the data loader to extract a file that has decimals, it chops the trailing 0.

 

For example,

 

345343.5

 

Should be 345343.50

 

Below is an example of the code:

 

 

<bean id="csvInvestmentExtractProcess"
          class="com.salesforce.lexiloader.process.ProcessRunner"
          singleton="false">
  <description>csvAccountExtract job gets investment info from salesforce and saves info into a CSV file."</description>
        <property name="name" value="csvInvestmentExtract"/>
        <property name="configOverrideMap">
            <map>
                <entry key="sfdc.debugMessages" value="false"/>
                <entry key="sfdc.debugMessagesFile" value="S:\SFDC\Process1\status\sfdcSoapTrace.log"/>
                <entry key="sfdc.endpoint" value="https://www.salesforce.com"/>
                <entry key="sfdc.username" value="test@test.org"/>
                <entry key="sfdc.password" value="c22d48685a1a3f532658a86b909fc97f"/>
    <!-- <entry key="process.encryptionKeyFile" value="S:\SFDC\Process1\conf\key.txt"/> -->
                <entry key="sfdc.timeoutSecs" value="600"/>
                <entry key="sfdc.loadBatchSize" value="200"/>
                <entry key="sfdc.entity" value="Investment__c"/>
                <entry key="sfdc.extractionRequestSize" value="500"/>
                <entry key="sfdc.extractionSOQL" value="Select Id, Name, IsDeleted, LastModifiedById, LastModifiedDate, SystemModstamp, CreatedById, CreatedDate, Account_Name__c, Active__c, Balances_as_of__c, Capital_Gains_Distribution__c, Commitment__c, Fund_Type__c, Fund__c, ISN__c, Inception_Date__c, Income_Dividends__c, Initial_Investment__c, Liquidation_Date__c, Market_Value__c, MemberId__c, NAV__c, Notes__c, PoA_Instructions__c, Power_of_Attorney__c, RecordTypeId, SID__c, Share_Balance__c, Sub_Account__c, Transfer_to__c, Statement_Label__c, Month_end_Share_Balance__c, Month_end_Market_Value__c, Month_end_NAV__c, Month_end_Balances_as_of__c, StateStreetId__c from Investment__c"/>
                <entry key="process.operation" value="extract"/>
                <entry key="process.mappingFile" value="S:\SFDC\Process1\maps\investmentExtractMap.sdl"/>
                <entry key="dataAccess.type" value="csvWrite"/>
                <entry key="dataAccess.name" value="S:\SFDC\Process1\data\export\investment.csv"/>
            </map>
        </property>
    </bean>

 

 

Whenever I click "Delete All" to delete all debug logs, I receive the following error:

 

 

The connection to the server was reset while the page was loading.


    * The site could be temporarily unavailable or too busy. Try again in a few
          moments.

    *   If you are unable to load any pages, check your computer's network
          connection.

    *   If your computer or network is protected by a firewall or proxy, make sure
          that Firefox is permitted to access the Web.

 I can delete logs individually with no problem.

 

This is a sandbox account (if that makes any difference).  This has been an issue for a long time.

 

Thanks!
Barb

 




        
        
      


      
     

Hi All,

I've got a problem in my very first trial with Force.com EDI in Eclipse 3.5.2.

Both Eclipse and Force.com EDI plugin are installed ok.

When trying to create a new Force.com Project to "Developer Edition" got an error:

 

Unable to fetch organizationa details for '<my user name>':

Network is unreachable: connect

 

Log file:

 

!ENTRY com.salesforce.ide.core 2 0 2010-05-07 16:40:35.182

!MESSAGE  WARN [2010-05-07 16:40:35,182] (BaseRetryAspect.java:isLoginExceptionRetryable:94) - Login evaluation deemed exception not retry-able: SocketException: Network is unreachable: connect

 

I've tried with and wothout using "Security Token". Connection through Web Interface works fine.

P.S. Connection is from corporate network via proxy.

Any ideas?

 

Regards,

Nick

  • May 07, 2010
  • Like
  • 0