Report does not keep a reference to its executions for a new report
-------------------------------------------------------------------

                 Key: SYNCOPE-43
                 URL: https://issues.apache.org/jira/browse/SYNCOPE-43
             Project: Syncope
          Issue Type: Bug
          Components: core
    Affects Versions: 1.0.0-incubating
            Reporter: Dino Anzellotti


Using console:

- Create a new report
- Execute the report
- The execution succeeded
- Open the report, the list of executions is empty.

Access Syncope via Restful API:

there is a report execution id=100 for report id=100

http://...../syncope/rest/report/execution/list.xml

<list>
     ....
     ....
    <org.syncope.client.to.ReportExecTO>
       <id>100</id>
       <status>SUCCESS</status>
       <message/>
       <startDate>2012-03-17 07:49:37.491 UTC</startDate>
       <endDate>2012-03-17 07:49:39.56 UTC</endDate>
       <report>100</report>
    </org.syncope.client.to.ReportExecTO>
</list>

but report details for report id=100 has executions tag empty!!

http://...../syncope/rest/report/list.xml

<list>
    ....
    ....
    <org.syncope.client.to.ReportTO>
        <id>100</id>
        <name>test2</name>
        <reportletConfs>
            <org.syncope.client.report.UserReportletConf>
                <name>testUser</name>
                <attrs>
                    <string>userId</string>
                    <string>email</string>
                </attrs>
                <derAttrs/>
                <virAttrs/>
                <features>
                    
<org.syncope.client.report.UserReportletConf_-Feature>id</org.syncope.client.report.UserReportletConf_-Feature>
                    
<org.syncope.client.report.UserReportletConf_-Feature>username</org.syncope.client.report.UserReportletConf_-Feature>
                </features>
            </org.syncope.client.report.UserReportletConf>
        </reportletConfs>
        <executions/>  <!--EMPTY-->
        <latestExecStatus>SUCCESS</latestExecStatus>
     </org.syncope.client.to.ReportTO>
 </list>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to