diff options
| author | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2014-02-25 09:20:42 +0100 | 
|---|---|---|
| committer | Florian Reimair <florian.reimair@iaik.tugraz.at> | 2014-02-25 09:20:59 +0100 | 
| commit | 3640475187ba8f2bfd4b72b2e6b7fa105432f889 (patch) | |
| tree | 7dd9b9c38b8e020cda02249e5e3ad882fca3fdf2 /id/server/idserverlib/src | |
| parent | 5ae5bb1ca7ffda1d4c3f864625c569e6b4b8d6de (diff) | |
| download | moa-id-spss-3640475187ba8f2bfd4b72b2e6b7fa105432f889.tar.gz moa-id-spss-3640475187ba8f2bfd4b72b2e6b7fa105432f889.tar.bz2 moa-id-spss-3640475187ba8f2bfd4b72b2e6b7fa105432f889.zip | |
reentry url is set
Diffstat (limited to 'id/server/idserverlib/src')
| -rw-r--r-- | id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java | 7 | 
1 files changed, 1 insertions, 6 deletions
| diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java index c1a61904d..937f6da74 100644 --- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java +++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/protocols/stork2/AttributeCollector.java @@ -36,11 +36,6 @@ public class AttributeCollector implements IAction {  	/** The Constant ARTIFACT_ID. */  	private static final String ARTIFACT_ID = "artifactId"; -	/** The return url. */ -	// TODO find correct return URL -	// HTTPUtils.getBaseURL(req); -	private String returnUrl = "findCorrectReturnURL"; -      /* (non-Javadoc)       * @see at.gv.egovernment.moa.id.moduls.IAction#processRequest(at.gv.egovernment.moa.id.moduls.IRequest, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, at.gv.egovernment.moa.id.auth.data.AuthenticationSession)       */ @@ -134,7 +129,7 @@ public class AttributeCollector implements IAction {  				AssertionStorage.getInstance().put(newArtifactId, container);  				// add container-key to redirect embedded within the return URL -				e.getAp().performRedirect(returnUrl + "?" + ARTIFACT_ID + "=" + newArtifactId, container.getRequest().getCitizenCountryCode(), request, response, oaParam); +				e.getAp().performRedirect(AuthConfigurationProvider.getInstance().getPublicURLPrefix() + "?" + ARTIFACT_ID + "=" + newArtifactId, container.getRequest().getCitizenCountryCode(), request, response, oaParam);  			} catch (Exception e1) {  				// TODO should we return the response as is to the PEPS?  				Logger.error("Error putting incomplete Stork response into temporary storage", e); | 
