Hi
I have a procedure that uses two libraries. Each of the Libraries contains a single JScript.Net file. One is for accessing custom configuration values and the other is for looking up Active Directory.
In the procedure I have a JScript.Net file also. Is it possible to call functions in my Configuration and Active Directory script files from the procedure JScript.Net file. I've tried importing the namespaces of my library scripts into the procedure script but it doesn't work. I've also tried fully qualifying the method name. Either way the script will not validate and therefore not publish.
In my situation the two library scripts are used to get the a user's email address and send them an email based on a template in the custom configuration. I know I could retrieve the values I want from the library scripts into custom variables and then pass them into my procedure script functions as parameters it would be easier to just copy and paste the library script functions into my procedure script, which pretty much makes the libraries worthless, except as code repositories.
Thanks