Contexturl and windows logon

JaydkJaydk Member Posts: 28
Is it possible to specify in the context url or link from navision, which logon type one would use e.g. windows logon ?

I tried using ntauthentication=1 and that did not work

Comments

  • kinekine Member Posts: 12,562
    No, there is no way, but it will use the last type used when connecting with the same .zup file. It means when you once login with wind. authentication, next time it will automatically log you in...
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
  • Yaroslav_GaponovYaroslav_Gaponov Member Posts: 158
    kine wrote:
    No, there is no way, but it will use the last type used when connecting with the same .zup file. It means when you once login with wind. authentication, next time it will automatically log you in...

    like this solution
    Link(strLink : Text[250])
    WITH RecHyperLink DO
      IF GET(strLink) THEN BEGIN
        CALCFIELD(Zup);
        Zup.EXPORT(ENVIRON('APPDATA') + '\FIN.ZUP');
        HYPERLINK(strLink);
      END;
    
  • kinekine Member Posts: 12,562
    kine wrote:
    No, there is no way, but it will use the last type used when connecting with the same .zup file. It means when you once login with wind. authentication, next time it will automatically log you in...

    like this solution
    Link(strLink : Text[250])
    WITH RecHyperLink DO
      IF GET(strLink) THEN BEGIN
        CALCFIELD(Zup);
        Zup.EXPORT(ENVIRON('APPDATA') + '\FIN.ZUP');
        HYPERLINK(strLink);
      END;
    

    Good workaround... but you will loose the settings... :wink:
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
Sign In or Register to comment.