Hello @ArmandoGarcia3 , " but it will not display the prompt for Account and Password" The dialog that prompts you for your credentials is the AuthenticationView from our toolkit. This needs to be declared inside your .qml file and the AuthenticationView.authenticationManager property needs to be set as well. Depending on your project this can be done in two different ways which is explained in the toolkit API reference. Once this is done the authentication dialog should display when a challenge is issued. Are you using one of our samples, E.g. Generate offline map? If so, the samples have the necessary authentication view set up but in order for it to display you need to uncomment the AuthenticationView in the GenerateOfflineMap.qml file towards the bottom. It will look similar to the following: /* Uncomment this section when running as standalone application
AuthenticationView {
anchors.fill: parent
authenticationManager: offlineMapSample.authenticationManager // set the authenticationManager property (this needs to be registered)
}
*/ I hope this helps, Jared
... View more