Opened 15 years ago
Closed 15 years ago
#6920 closed defect (invalid)
Trying to import into MS Project gives 404 error
Reported by: | Owned by: | Yuji OKAZAKI | |
---|---|---|---|
Priority: | high | Component: | VisualBasicTracConnectorIntegration |
Severity: | major | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
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.
Attachments (0)
Change History (3)
comment:1 Changed 15 years ago by
Status: | new → assigned |
---|
comment:2 Changed 15 years ago by
comment:3 Changed 15 years ago by
Resolution: | → invalid |
---|---|
Status: | assigned → closed |
The documentation could be clearer but this is essentially user error. I can connect to my Trac project now.
This may be my misunderstanding about what belongs in the fields. At least once, If I put
http://myhostname
in the URL andtrac
in the projects field, I was able to get past the 404 and on to another error.