I am trying to get started with the Trac Connector. I downloaded the .zip file and unpacked it. I opened TracProject?.mpp. After lowering my macro security level, I see the Import button. I created a new project file and clicked Import. In the "Import from Trac" dialog I copied the URL of my Trac instance into the URL field, the project name (directory under trac of my project's Trac instance), and entered the user name. We have no password set. When I click the "Validation" button I get a message:
Run-time error '-2147220991 (80040201)':
Error:Not Found(404)
Clicking "Debug" leads to:
Private Function hasMilestone() As Boolean
hasMilestone = False
Dim trac As TracXMLRPC
Set trac = Nothing
If m_aTrac Is Nothing Then Exit Function
Set trac = m_aTrac.item(1)
If Not trac.milestone Is Nothing Then
On Error GoTo err1
If trac.milestone.count <> 0 Then
hasMilestone = True
End If
End If
err1: 'itemŽæ“¾Žž‚ÉŽ¸”s‚µ‚½ê‡‚Ífalse
End Function
with If Not trac.milestone Is Nothing Then highlighted.
I need help diagnosing this.