What is an issue?
An issue is a term used to cover any concern, query, request for change, suggestion or off-specification raised within a development project of open-source software (OSS) or semantic interoperability assets. Any registered user of the platform can submit an issue, even without being member of the OSS or asset project. Only projects owners and developers can assign an issue to other members. An issue can be modified by developers, project owners as well as members assigned to the issue.
How can I find a particular issue?
The issue list offers two features to search for a particular issue:
- Keyword search: by filing in the “search for” field, users can provide keywords
- Search filters: by setting the right filters in the “Status”, “Priority”, “Category”, “Version”, and “Component” fields.
The global search feature of the platform also allows retrieving issues across multiple projects.
Who can view an issue?
Any registered users can view an issue.
How to view an issue?
To view an issue:
- Click on the project for which you want to see the issue;
- Click on the “Issue” menu item on the left of the page;
- A search tool and a list of issues will be displayed;
- Use the search tool to find the issue you want to see ;or
- Click on the issue name for entering in the issue you want to see;
- Once you have clicked on the issue name, the issue page will be displayed.
What is displayed on this page?
This page lists the following information for an issue:
- Project: Name of the project
- Version: Project version
- Component: The concerned component type
- Category: The category of the issue
- Priority: The priority of the issue
- Assigned: The software member assigned to this issue
- Status: the status of the issue
- Identifier
All comments and status changes to an issue are listed in chronological order of changes.
Edit an issue
Who can edit an issue?
- Any project member can edit his or her own issues. Modifying an issue is done by adding a comment to it.
- Only the project owner can fully edit issues (e.g. change the status or priority) once created by another project member.
- Each member of a project can take up an issue (assign it to himself) if the issue is unassigned.
- Developer or project owner can assign an issue to any other members.
How to edit an issue?
To edit an issue:
- Click on the project for which you want to edit the issue;
- Click on the “Issue” menu item on the left of the page;
- A search tool and a list of issues will be displayed;
- Use the search tool to find the issue you want to edit ;or
- Click on the issue name for entering in the issue you want to edit;
- Click on “edit” at the top of the page;
Remove/Delete an issue
Who can delete an issue?
Only author of an issue, the project owners, or the facilitators have the right to delete an issue.
How to remove an issue?
In the ‘edit’ mode, an issue can be removed by clicking the ‘delete’ button at the bottom of the page.
Comment an issue
Who can comment on an issue?
Any registered user can comment on an issue
How to comment on an issue?
- Navigate to the issue on which you want to comment;
- Enter your comments in the form at the bottom of the page;
- Press “Submit”.


Could you provide more information about what you need? You can store some information on the session object (Map).
Ricardo, with "session object", do you mean attributes parameter of type Map<String, Object>? I suppose these attribues are just a copy of request parameters from URL GET and POST. If I put some object there, would it travel with redirections? Now to the explanation, why I need the HttpServletRequest... In Slovenia we have a couple of identity providers. All are CAs that issue X509 certificates. For Stork we're not going to make any redirections to these IdPs. Instead we are establishing a so called CVS (central validation system), that will handle the authentication on behalf of all the Slovenian IdPs. One part of the system is front end Apache that for the /PEPS/CitizenConsent page requires and checks the SSL client authentication and if the cert is OK, it transfers the client cert data as an http header to PEPS. In our specific PEPS we then extract the eID from cert data and call our attribute provider's web service. We don't need any redirection that PEPS is providing for IdPs and APs, so in specific.properties I put idp.url=https://peps.mju.gov.si/PEPS/SpecificIdPResponse I have not changed the ap.url yet because until last version the redirections didn't go outside PEPS. Probably in this version I would change also the ap.url to return immediately to PEPS. Let me explain where I would need the HttpServletRequest: in authenticateCitizen ---------------------- to get the SSL Certificate that is passed to Tomcat from Apache front end. This is done with request.getHeader("x_ssl_client_cert") to write the eID of the citizen into the *session* attribute. Be careful not to save it as request attribute because it must not be traveling around with redirections that are triggered by the PEPS following the IdPResponse. in getAttributes -------------------- to get the eID from the HTTP session that was put there with the authenticateCitizen above As I understand, the request.setAttribute is not problematic as it can be replaced in the new version with attributes.put, so I can give the error code and text to show in the logs and to the citizen. The other possibility I'm thinking about would be calling the attribute provider immediately from authenticateCitizen and bypass the redirections where PEPS is gathering attributes, so there would be no need to save the userid into session. This would obviate two uses of the HttpServletRequest above. However I'm not sure if it's possible to make a redirection that will take all the attributes successfully to S-PEPS' ColleagueResponse. If this can be done the only question would remain, how to get the x_ssl_client_cert from Apache. Also, such kind of overhauling takes time and that's why I'm not very content with removal of HttpServletRequest from the interface. The schedule is running up. I'm attaching the code of SpecificPEPS.java that I deployed successfully in the previous version of PEPS (from end of December). It's not polished yet, so please refer to it only as a last resource for clarifications. I've not inserted the actual access to our attribute provider's web service yet.
Maks, I will answer your question bellow: > Ricardo, with "session object", do you mean attributes > parameter of type Map<String, Object>? I suppose these > attribues are just a copy of request parameters from URL GET > and POST. The "session" is an object (of type Map<String, Object>) that spring handles like a session. So, whenever you need to write on it, it will be there until the session expires (you can have more info here: http://static.springsource.org/spring/docs/2.5.x/reference/beans.html#be...). >If I put some object there, would it travel with > redirections? I am not sure if I understand you, but e.g. you can put some object there, at CitizenConsentAction class (or any other class invoked by this action) you will be able to get the same object on SpecificIdPResponseAction or SpecificAPResponseAction. >We don't need any redirection that PEPS is providing for IdPs and APs, >so in specific.properties I put >idp.url=https://peps.mju.gov.si/PEPS/SpecificIdPResponse You can change CitizenConsent action on PEPS's struts.xml, in order to redirect to another action.E.g.: <action name="CitizenConsent" class="springManagedConsentTypeAction"> <result name="success" type="redirectAction"> <param name="actionName">SpecificIdPResponse</param> </result> </action> >I have not changed the ap.url yet because until last version > the redirections didn't go outside PEPS. Probably in this version > I would change also the ap.url to return immediately to PEPS. The communication between CPEPS and AP or IdP is a reference, so you can simply modify/remove them. If you wish you can adapt the reference code from last time, and change the struts.xml to include the internal call. >to get the SSL Certificate that is passed to Tomcat from Apache > front end. This is done with > request.getHeader("x_ssl_client_cert") > to write the eID of the citizen into the *session* attribute. > Be careful not to save it as request attribute because it must > not be traveling around with redirections that are triggered > by the PEPS following the IdPResponse. On the CitizenConsentAction, you have the HttpServletRequest and you can put that above request header into session. E.g. session.put("x_ssl_client_cert", request.getHeader("x_ssl_client_cert")); As the session object can only be acessed by CPEPS (on this case), you guarantee the security of this value. > in getAttributes > -------------------- > > to get the eID from the HTTP session that was put there with >the authenticateCitizen above You can get the eID, with the following code: session.get("x_ssl_client_cert") >As I understand, the request.setAttribute is not problematic >as it can be replaced in the new version with attributes.put, >so I can give the error code and text to show in the logs and >to the citizen. The attribute object is similiar to session object, but it as spring's request scope (you can get more info here: http://static.springsource.org/spring/docs/2.5.x/reference/beans.html#be...) >The other possibility I'm thinking about would be calling the >attribute provider immediately from authenticateCitizen and bypass >the redirections where PEPS is gathering attributes, so there >would be no need to save the userid into session. This would >obviate two uses of the HttpServletRequest above. However I'm >not sure if it's possible to make a redirection that will take >all the attributes successfully to S-PEPS' ColleagueResponse. You can redirect the CitizenConsentAction, as I explained above >If this can be done the only question would remain, how to get >the x_ssl_client_cert from Apache. See the above answer.
Thank you, Ricardo, for a detailed answer. I would prefer to wait for the next version. Marc Stern today explained in stork-wp5 mailing list how the new interfaces will look and these interfaces will solve what I want. Your idea about session can't be used to get the eID or x_ssl_client_cert down into the SpecificPEPS class, because there the variable session is not visible. Besides that I would not like touch the code in the Action classes, because then I would have to change them with every new release of common PEPS. It was meant that country specific functionality is put into SpecificPEPS class and nowhere else. You can assume this bug closed or at least suspended until the next release of PEPS.
The CitizenConsent Action is a reference code and it's for specific purposes, so we will not change it. You may change it as you wish. Your changes are SI specific, so you can modify PEPS's applicationContext.xml in order to have the session object. Just modify from <!-- Specific Bean --> <bean id="specificPeps" class="${specific.peps}" /> to: <!-- Specific Bean --> <bean id="specificPeps" class="${specific.peps}" > <property name="session" ref="session"/> </bean and implement setters and getters to the session object (on you specific class) and you be able to have the session. The communication between CPEPS and IdP/AP is just reference code, so you can change as you wish/need.
Hello, Ricardo! I'm returning to your suggestion about using session variable. Before I go studying Spring framework, can you please tell me, is your suggestion OK, regarding that SpecificPEPS is a singleton class. I'm a little sceptic that the Spring or Struts framework can set the session into SpecificPEPS and then wait that my function (authenticateCitizen or getAttributesFromAttributeProviders) returns. There can come another thread of another request in the meantime.
Hello Maks, A new PEPS version will be sent in a short time (today or tomorrow, I think) that solves a lot of problems on the specific development. We have separated the specifc Actions and Specific Class implementation to Stork-Specific Jar, in order to let the specific development becomes pluggable (so my last suggestion it's a kind of obsolete). So, in my opinion, I think that you should wait the new PEP's Release. About the session object, we have tested with JMeter and Spring can handle multiple requests, with diferent sessions.