This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal


Aug 19, 2016, 6:34 AM
1 Posts

Unable to fetch

  • Category: Application Development
  • Platform: Windows
  • Release: 9.0
  • Role: Developer
  • Tags: LotusScript
  • Replies: 1

I'm trying to get the value of the line JavaUserClassesExt in the notes.ini. I'm using Notes 6.5.3, but post it also in this forum since it's more active.

I've already tried the following combinations. None of them work. Retrieving another variable from the notes.ini works without any problem.

    javaUserClasses=s.Getenvironmentvalue("JavaUserClassesExt", True)
    Print "javaUserClasses TRUE= " + javaUserClasses
    javaUserClasses=s.Getenvironmentvalue("JavaUserClassesExt", False)
    Print "javaUserClasses FALSE= " + javaUserClasses

 

Both return an empty string

Aug 21, 2016, 6:25 PM
82 Posts
GetEnvi ...ronmentString
Dim s As New notessession
javaUserClasses=s.GetEnvironmentString("JavaUserClassesExt", True)
Print "javaUserClasses TRUE= " + javaUserClasses

This forum is closed to new posts and responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:

HCL Software Customer Support Portal for U.S. Federal Government clients
HCL Software Customer Support Portal