Changes between Version 9 and Version 10 of udg/ecoms/RPackage/authentication
- Timestamp:
- Jul 11, 2014 8:10:49 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
udg/ecoms/RPackage/authentication
v9 v10 9 9 10 10 {{{ 11 #!text/R 11 12 > username <- "myUsername" # This is a character string with the username 12 13 > password <- "myPassword" # This is a character string with the password 13 > loginECOMS_UDG("myUsername", "myPassword") 14 > loginECOMS_UDG(myUsername, myPassword) 15 14 16 }}} 15 17 … … 17 19 18 20 {{{ 21 #!text/R 19 22 > proxyHost <- "proxy.host.com" # Your institution Proxy configuration: host 20 23 > proxyPort <- as.integer(1234) # and port 21 > loginECOMS_UDG("myUsername", "myPassword", proxy.host = proxyHost, proxy.port = proxyPort) 24 > loginECOMS_UDG(myUsername, myPassword, proxy.host = proxyHost, proxy.port = proxyPort) 25 22 26 }}} 23 27