This issue was raised in a beta client thread but has raised its head in the GA version of 8.0.2 which I just upgraded to about 2 weeks ago.
From time to time, I will get these kinds of errors in popups:
Notes error: file does not exist (CalendarProfile)"
“Field: ‘dLogo’: File does not exist”
“The server with this database is no longer responding. Switch to another replica?”
(credit to Lee Salzman as I copied them from his thread)
What is the resolution for this please? It’s quite annoying. Or can someone point me to doc’s on how to go to Outlook client pointing to a Domino server?
We created a button to send to users when they get that error:
Sub Click(Source As Button)
Dim s As New notessession
Dim db As notesdatabase
Dim doc As notesdocument
Set db=s.currentdatabase '
Set doc = db.GetProfileDocument("calendarprofile")
Call doc.Remove(True)
End Sub
In our case it has to do with how a client connects from home that can cause the issue. If they first connect via a VPN connection but than stop the VPN connection Notes is setup to connect directly. If they have their Mail file open at the time the VPN connection “switches” it can cause the corruption.