Skip to main content
Participant
October 3, 2019
Question

Action Wizard cannot connect to SharePoint

  • October 3, 2019
  • 2 replies
  • 2260 views

I have an Action Wizard that password protects files and I want to be able to add a SharePoint library as the source. When I select "choose an online account" and enter my SharePoint URL the continue button is grayed out. Any idea what's causing this and is this even possible? See attached screenshot.

Thanks!

 
 
    This topic has been closed for replies.

    2 replies

    ls_rbls
    Community Expert
    Community Expert
    October 6, 2019

    I forgot to add this: 

     

    See the example scripts below taken from the Adobe Acrobat Software Developer Kit :https://help.adobe.com/en_US/acrobat/acrobat_dc_sdk/2015/HTMLHelp/#t=Acro12_MasterBook%2FJS_API_AcroJS%2Futil_methods.htm%23TOC_printfbc-4&rhtocid=_6_1_8_78_0_3

    "This method throws a parameter error if the parameter is missing, the URL is not well-formed, or the URL scheme is not file, http, or https.

    Example 1
    The following code

    util.crackURL("http://example.org/myPath?name0=value0&name1=value1#frag");

    would return

    {

    cScheme: "http",

    cHost: "example.org",

    nPort: 80,

    cPath: "/myPath",

    cQuery: "name0=value0&name1=value1",

    cFragment: "frag"

    }

    Example 2 (Version 9.0)
    Version 9.0 can break a URL into its components when the URL uses version 6 Internet Protocol.

    var a = util.crackURL("http://[2001:1890:110b:15ce:250:56ff:febb:6111]/Ex");

    if ( a.nURLType == 1 )

    console.println("host = [" + a.cHost + "]");

    else

    console.println("host = " + a.cHost);"

     

    In case you want to add a an additional script to a what you already have this one offers a  breakdown the URL by components

    ls_rbls
    Community Expert
    Community Expert
    October 6, 2019

    This URL does not seem to be complete https://sp.ucop.edu.

     

    This other URL https://spsts.ucop.edu/Picker.aspx?ReturnUrl=%2fdefault.aspx%3fwa%3dwsignin1.0%26wtrealm%3dhttps%253a%252f%252fsp.ucop.edu%252f_trust%252f%26wctx%3dhttps%253a%252f%252fsp.ucop.edu%252f_layouts%252f15%252fAuthenticate.aspx%253fSource%253d%25252F%26wreply%3dhttps%253a%252f%252fsp.ucop.edu%252f_trust%252fdefault.aspx&wa=wsignin1.0&wtrealm=https%3a%2f%2fsp.ucop.edu%2f_trust%2f&wctx=https%3a%2f%2fsp.ucop.edu%2f_layouts%2f15%2fAuthenticate.aspx%3fSource%3d%252F&wreply=https%3a%2f%2fsp.ucop.edu%2f_trust%2fdefault.aspx

    which is the next step to pick your login provider from another drop down list, brings the user to have to specify if you are a University of California employee or a non UC external user . It also only allows for a temporary access of  up to 30 days.

     

    Last, this URL https://spsts.ucop.edu/form/Login.aspx looks more like it;  you still have to provide email address and password to have access to the provider's portal that should've been selected from the link above before you get to this part of the authentication steps.

     

    So , have you checked with both Microsoft TechNet forum and the UC he university IT department what is the actual URL for individuals with a need to do what you are trying to accomplish?