• SFDCLondon
  • NEWBIE
  • 0 Points
  • Member since 2012

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

Below is my VF page.   Can somebody help with adding the ability to click on a result and take it to record.  

 

<apex:page controller="CampaignList2Con">
<apex:pageBlock >
<apex:pageBlockTable value="{!Campaigns}" var="c">
<apex:column value="{!c.name}"/>
<apex:column value="{!c.id}"/>
</apex:pageBlockTable>
</apex:pageBlock>
</apex:page>

Hello all,

 

I'm following the guide at: 

http://www.salesforce.com/us/developer/docs/api_asynchpre/api_bulk.pdf

and trying to login to salesforce using Curl on a Win-32 machine.

At first I received errors about missing .dlls , so I placed the openssl .dlls in the "System-32" folder, but now I still can't login.

 

Each time I try to login I use the following command:

 

curl https://login.salesforce.com/services/Soap/u/22.0 -H "Content-Type: text/xml;charset=UTF-8" -H SOAPAction: login" -d @login.txt

 

and get the following error message:

 

"curl: (60) SSL certificate problem, verify that the CA cert is OK.

Details:error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed"

 

What went wrong? Is there something else I should install or am I not loging in correctly?