I’m trying to establish a connection to Workday using the Workday Application Scope activity.
I’ve configured the username, password, tenant , and tenant url directly on the object.
I’ve also created variables for Password, Username, Tenant, and Tenant Url and stored it in the Properties. Output and Use Existing connection is blank.
I keep getting compiler error(s)… "Value of type ‘String’ cannot be converted to ‘System.Security.SecureString’ errors for my password variable. My password is stored “” in the variable.
Hi Tim,
You need convert ‘System.Security.SecureString’ to ‘String’ ?
You can use assign:
YourSecurityString = new System.Net.NetworkCredential(string.Empty, YourString).SecurePassword
If you need convert ‘String’ to ‘System.Security.SecureString’ ?
You can use assign:
YourString = new System.Net.NetworkCredential(string.Empty, YourSecurityString).Password