Rally Software

  • 1.  Agile Central data Extraction Problem

    Posted Aug 11, 2017 10:46 AM

    "Not able to parse the Artifact Type: security/authorize/slm/webservice/v2.0/workspace" while debugging

    for the below query.

     

    No response is generated for this code.

     

    My code:

     

    RallyRestApi  restApi = new RallyRestApi(

                                new URI(rallyURL),

                                userName,

                                userPassword);

    restApi.setProxy(new URI(URL), username , password);

                           

     

    QueryRequest workspaceRequest = new QueryRequest("Workspace");

    workspaceRequest.setFetch(new Fetch("Name", "Owner", "Projects"));

    workspaceRequest.setQueryFilter(new QueryFilter("Name","=","Workspacename"));

     

    QueryResponse response = restApi.query(workspaceRequest);



  • 2.  Re: Agile Central data Extraction Problem

    Posted Aug 14, 2017 02:41 PM

    Hi Avinash,

     

    Can you please post the value for the rallyURL variable? From the error it seems like you might have the wrong connection endpoint.

    RallyRestApi  restApi = new RallyRestApi(

                                new URI("https://rally1.rallydev.com"),

                                userName,

                                userPassword);

     

     

    Sean Davis