We have found our self needing to connect Sitecore Rocks to Sitecore 9 instance.
When we try to connect to Sitecore 9 instance in Sitecore Rocks in the first time we can not connect.
In order to make it work we have to tweak web.config with following entry to system.web xml node.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <location path="sitecore/shell/WebService"> | |
| <system.web> | |
| <authorization> | |
| <allow users="?,*" /> | |
| </authorization> | |
| </system.web> | |
| </location> |
🙂