Searched defs:sendError (Results 1 - 22 of 22) sorted by relevance

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/servlet/
H A DIDPSingleSignOnServiceSOAP.java65 sendError(resp, e.getFaultCode(), e.getMessageCode(), e.getDetail());
77 sendError(resp, e.getFaultCode(), e.getMessageCode(), e.getDetail());
81 private void sendError(HttpServletResponse response, String faultCode, String rbKey, String detail) method in class:IDPSingleSignOnServiceSOAP
104 SAML2Utils.debug.error("IDPSingleSignOnServiceSOAP.sendError:" , ex);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/servlet/
H A DIDPSingleSignOnServiceSOAP.java65 sendError(resp, e.getFaultCode(), e.getMessageCode(), e.getDetail());
77 sendError(resp, e.getFaultCode(), e.getMessageCode(), e.getDetail());
81 private void sendError(HttpServletResponse response, String faultCode, String rbKey, String detail) method in class:IDPSingleSignOnServiceSOAP
104 SAML2Utils.debug.error("IDPSingleSignOnServiceSOAP.sendError:" , ex);
/forgerock/openam-v13/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/servlet/
H A DAuditableHttpServletResponse.java72 public void sendError(int sc) throws IOException { method in class:AuditableHttpServletResponse
73 super.sendError(sc);
78 public void sendError(int sc, String msg) throws IOException { method in class:AuditableHttpServletResponse
79 super.sendError(sc, msg);
/forgerock/openam/openam-audit/openam-audit-core/src/main/java/org/forgerock/openam/audit/servlet/
H A DAuditableHttpServletResponse.java72 public void sendError(int sc) throws IOException { method in class:AuditableHttpServletResponse
73 super.sendError(sc);
78 public void sendError(int sc, String msg) throws IOException { method in class:AuditableHttpServletResponse
79 super.sendError(sc, msg);
/forgerock/openam/openam-notifications-websocket/src/main/java/org/forgerock/openam/notifications/websocket/
H A DNotificationsWebSocket.java158 sendError(session, null, "\"id\" must be a string");
165 sendError(session, id, "missing required field \"action\"");
169 sendError(session, id, "\"action\" must be a string");
176 sendError(session, id, "unknown action \"" + action + "\"");
180 sendError(session, id, "missing required field \"topic\"");
184 sendError(session, id, "\"topic\" must be a string");
213 sendError(session, null, error.getMessage());
235 private void sendError(Session session, String id, String message) { method in class:NotificationsWebSocket
/forgerock/openam-v13/openam-federation/openam-idpdiscovery/src/main/java/com/sun/identity/saml2/idpdiscovery/
H A DCookieUtils.java335 public static void sendError(HttpServletRequest request, method in class:CookieUtils
339 // no error processing URL set, use sendError
341 response.sendError(httpStatusCode, errorMsg);
344 debug.error("CookieUtils.sendError", ioe);
357 debug.message("CookieUtils.sendError: final redirectionURL="
366 debug.error("CookieUtils.sendError: Exception "
377 debug.error("CookieUtils.sendError: Exception "
381 debug.error("CookieUtils.sendError: Exception "
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/login/
H A DFSPreLogin.java373 private void sendError(HttpServletRequest request, method in class:FSPreLogin
379 FSUtils.debug.error("FSPreLogin:: sendError "
717 sendError(request, response);
721 sendError(request, response);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/login/
H A DFSPreLogin.java373 private void sendError(HttpServletRequest request, method in class:FSPreLogin
379 FSUtils.debug.error("FSPreLogin:: sendError "
717 sendError(request, response);
721 sendError(request, response);
/forgerock/openam/openam-federation/openam-idpdiscovery/src/main/java/com/sun/identity/saml2/idpdiscovery/
H A DCookieUtils.java335 public static void sendError(HttpServletRequest request, method in class:CookieUtils
339 // no error processing URL set, use sendError
341 response.sendError(httpStatusCode, errorMsg);
344 debug.error("CookieUtils.sendError", ioe);
357 debug.message("CookieUtils.sendError: final redirectionURL="
366 debug.error("CookieUtils.sendError: Exception "
377 debug.error("CookieUtils.sendError: Exception "
381 debug.error("CookieUtils.sendError: Exception "
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/authentication/service/protocol/
H A DRemoteHttpServletResponse.java156 * The default behavior of this method is to call sendError(int sc, String msg)
163 public void sendError(int sc, String msg) throws IOException { method in class:RemoteHttpServletResponse
165 this._getHttpServletResponse().sendError(sc, msg);
170 * The default behavior of this method is to call sendError(int sc)
176 public void sendError(int sc) throws IOException { method in class:RemoteHttpServletResponse
178 this._getHttpServletResponse().sendError(sc);
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/session/
H A DUnsupportedResponse.java66 public void sendError(int sc, String msg) throws IOException { method in class:UnsupportedResponse
71 public void sendError(int sc) throws IOException { method in class:UnsupportedResponse
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/authentication/service/protocol/
H A DRemoteHttpServletResponse.java156 * The default behavior of this method is to call sendError(int sc, String msg)
163 public void sendError(int sc, String msg) throws IOException { method in class:RemoteHttpServletResponse
165 this._getHttpServletResponse().sendError(sc, msg);
170 * The default behavior of this method is to call sendError(int sc)
176 public void sendError(int sc) throws IOException { method in class:RemoteHttpServletResponse
178 this._getHttpServletResponse().sendError(sc);
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/session/action/
H A DUnsupportedResponse.java66 public void sendError(int sc, String msg) throws IOException { method in class:UnsupportedResponse
71 public void sendError(int sc) throws IOException { method in class:UnsupportedResponse
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/common/
H A DSAMLUtils.java1742 public static void sendError(HttpServletRequest request, method in class:SAMLUtils
1749 debug.message("SAMLUtils.sendError: error page" + errorUrl);
1830 debug.error("SAMLUtils.sendError: Exception occurred while trying to forward to resource: " + url, exception);
1833 response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, exception.getMessage());
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/common/
H A DSAMLUtils.java1745 public static void sendError(HttpServletRequest request, method in class:SAMLUtils
1752 debug.message("SAMLUtils.sendError: error page" + errorUrl);
1833 debug.error("SAMLUtils.sendError: Exception occurred while trying to forward to resource: " + url, exception);
1836 response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, exception.getMessage());
/forgerock/opendj2/resource/dsml/lib/
H A Dj2ee.jarMETA-INF/MANIFEST.MF javax/servlet/jsp/resources/jspxml.dtd javax/servlet/jsp/resources/web- ...
/forgerock/opendj-b2.6/resource/dsml/lib/
H A Dj2ee.jarMETA-INF/MANIFEST.MF javax/servlet/jsp/resources/jspxml.dtd javax/servlet/jsp/resources/web- ...
/forgerock/opendj2.6.2/resource/dsml/lib/
H A Dj2ee.jarMETA-INF/MANIFEST.MF javax/servlet/jsp/resources/jspxml.dtd javax/servlet/jsp/resources/web- ...
/forgerock/opendj2-hg/resource/dsml/lib/
H A Dj2ee.jarMETA-INF/MANIFEST.MF javax/servlet/jsp/resources/jspxml.dtd javax/servlet/jsp/resources/web- ...
/forgerock/opendj2-jel-hg/resource/dsml/lib/
H A Dj2ee.jarMETA-INF/MANIFEST.MF javax/servlet/jsp/resources/jspxml.dtd javax/servlet/jsp/resources/web- ...
/forgerock/openam-v13/openam-oauth/samples/StockClient/lib/
H A Djavaee.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/jsp/ javax/servlet/jsp/jstl/ ...
/forgerock/openam-v13/openam-oauth/samples/StockService/lib/
H A Djavaee.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/jsp/ javax/servlet/jsp/jstl/ ...

Completed in 307 milliseconds