Adding a web service
In adding web services to a site modelled on TBH architecture, had difficulty in adding these services as a web reference on another site.
Problem turned out to be the
cookieless="AutoDetect" in several places within the web.config file or the originating site.
In order to resolve, did the following:
1. <authentication mode="Forms">
<forms cookieless="AutoDetect" [and so on]
2. <sessionState cookieless="true"/>
3. <anonymousIdentification cookieless="UseCookies" enabled="true"/>
Making all of these "UseCookies" also works.
A. Simon Mielniczuk
ITScooperative
Toronto CANADA
|