The following is a simple configuration file which will connect to JIRA and CA Agile Central, thus providing proof the client has:
<!-- **********************************************************************
FILE: JIRArest-config-TestConnection.pxml
PURPOSE: A simple configuration file which will connect to JIRA and Rally,
thus providing proof the client has:
- Ruby is installed and accessible,
- all Ruby gems are in place,
- there is connectivity to both systems,
- the config file syntax is correct,
- pathnames to files are correct,
- etc.
USAGE: Replace all the "Your-..." strings below with values which are
appropriate for your environment.
*********************************************************************** -->
<Config>
<RallyConnection>
<Url>rally1.rallydev.com</Url>
<WorkspaceName>Your-Rally-Workspace</WorkspaceName>
<Projects>
<Project>Your-Rally-Project</Project>
</Projects>
<User>Your-Rally-Username</User>
<Password>Your-Rally-Password</Password>
<ArtifactType>Defect</ArtifactType>
<ExternalIDField>Your-Rally-ExternalID</ExternalIDField>
</RallyConnection>
<JiraRestConnection>
<Url>Your-JIRA-URL:port</Url>
<User>Your-JIRA-Username</User>
<Password>Your-JIRA-Password</Password>
<ArtifactType>Bug</ArtifactType>
<ExternalIDField>Your-JIRA-ExternalID</ExternalIDField>
<Project>Your-JIRA-Project</Project>
</JiraRestConnection>
<Connector>
<FieldMapping>
</FieldMapping>
</Connector>
<ConnectorRunner>
<Preview>True</Preview>
<Services>UPDATE_RALLY_TO_JIRA</Services>
</ConnectorRunner>
</Config>