I haven't used the web service yet, but you might be seeing a conflict in the authorization setting in web.config.
Try putting the web service in a different IIS application, and give it an authentication mode of None in web.config. Also give it this in the authorization section:
allow users="*"
A Web service can't use Forms authorization.
Eric
|