views:

16

answers:

1

Is there any way of setting up an endpoint that does not require Integrated Authentication or HTTPS - either basic username / password authenticaion or none at all???

+1  A: 

No. You can either have integrated authentication over HTTP, or SQL Server authentication over HTTPS.

If you want anonymous authorisation, you need to write your own web service wrapper for the database calls. This is probably a good idea anyway, since native SOAP endpoints are deprecated in SQL 2008.

Ed Harper