This is a migrated thread and some comments may be shown as answers.

AutoCompleteBox and RadODataDataSource asking for password

1 Answer 39 Views
AutoCompleteBox
This is a migrated thread and some comments may be shown as answers.
Silviu
Top achievements
Rank 1
Silviu asked on 07 May 2015, 02:49 PM

I have a RadAutoCompleteBox along with a RadODataDataSource.

Every time I load the page I am prompted for username/password.

The website is on the intranet and so it the odata source.

The Odata source wizard always shows error so it must be set manually.

Once I present credentials it pulls the data.

 How can I make it stop asking for credentials?

1 Answer, 1 is accepted

Sort by
0
Hristo Valyavicharski
Telerik team
answered on 12 May 2015, 07:57 AM
Hi Silviu,

Try to allow the ODATA service for unauthenticated users. For example:
<location path="WcfODataService.svc">  
    <system.web>      
        <authorization>
            <allow users="*" />      
        </authorization>  
    </system.web>
</location>

Same can be done for the page:
<location path="Wizard.aspx">  
    <system.web>      
        <authorization>
            <allow users="*" />      
        </authorization>  
    </system.web>
</location>


Regards,
Hristo Valyavicharski
Telerik
 

See What's Next in App Development. Register for TelerikNEXT.

 
Tags
AutoCompleteBox
Asked by
Silviu
Top achievements
Rank 1
Answers by
Hristo Valyavicharski
Telerik team
Share this question
or