anyone used R api with SSL?

LabKey Support Forum (Inactive)
anyone used R api with SSL? Ben Bimber  2010-08-28 10:53
Status: Closed
 
is it possible that my .netrc file somehow isnt configured properly? i have a .netrc located in /Users/labkey, which has an entry for both localhost and xnight.primate.wisc.edu. can i test this somehow?


at brian's suggestion i tried to replicate this directly in R through the terminal. i ran this:

library(Rlabkey)
getURI('https://xnight.primate.wisc.edu:8443/labkey/project/home/begin.view')

this loads some HTML and does not throw errors. however the follow code gives the same 'cannot connect' error that I observe in labkey:

labkey.selectRows(
    baseUrl='https://xnight.primate.wisc.edu/labkey',
    folderPath="/WNPRC/EHR",
    schemaName="study",
    queryName="Inbreeding",
    colSelect=c('lsid', 'Id', 'InbreedingCoefficient'),
    showHidden = FALSE
)

are there other commands I should try from the terminal?