Searched defs:xmlString (Results 101 - 125 of 162) sorted by relevance

1234567

/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DLogoutRequestImpl.java99 * @param xmlString the XML String representation of this object.
102 public LogoutRequestImpl(String xmlString) throws SAML2Exception { argument
104 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
111 signedXMLString = xmlString;
308 StringBuffer xmlString = new StringBuffer(1000);
309 xmlString.append(SAML2Constants.START_TAG);
311 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
313 xmlString.append(SAML2Constants.LOGOUT_REQUEST)
317 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR)
322 xmlString
[all...]
H A DManageNameIDRequestImpl.java87 * @param xmlString XML Representation of
92 public ManageNameIDRequestImpl(String xmlString) throws SAML2Exception { argument
93 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
99 signedXMLString = xmlString;
H A DNameIDMappingRequestImpl.java91 * @param xmlString XML Representation of the
96 public NameIDMappingRequestImpl(String xmlString) throws SAML2Exception { argument
97 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
103 signedXMLString = xmlString;
H A DNameIDPolicyImpl.java76 * @param xmlString XML String Representation of <code>NameIDPolicy</code>
81 public NameIDPolicyImpl(String xmlString) throws SAML2Exception { argument
83 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
195 StringBuffer xmlString = new StringBuffer(150);
196 xmlString.append(SAML2Constants.START_TAG);
198 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
200 xmlString.append(SAML2Constants.NAMEIDPOLICY)
204 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
208 xmlString.append(SAML2Constants.SPACE)
215 xmlString
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/soapbinding/
H A DQueryClient.java168 String xmlString = xacmlQuery.toXMLString(true,true);
171 + xmlString);
185 SAML2SDKUtils.createSOAPMessageString(xmlString);
207 xmlString = reply.toString();
209 debug.message("Response Message:\n"+ xmlString);
212 samlResponse = getSAMLResponse(xmlString);
235 xmlString =samlResponse.toXMLString(true,true);
238 + xmlString);
284 * @param xmlString the String representation of the object.
291 private static Response getSAMLResponse(String xmlString) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/profile/
H A DSAML11RequestedSecurityToken.java76 protected String xmlString = null; field in class:SAML11RequestedSecurityToken
134 xmlString = XMLUtils.print(ae);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSSOAPService.java91 * @param xmlString the request/response xml string to be bound
94 public SOAPMessage bind(String xmlString) { argument
115 sb.append(envBegin).append(xmlString).append(envEnd);
158 String xmlString = output.toString(IFSConstants.DEFAULT_ENCODING);
160 FSUtils.debug.message("SENDING message: \n " + xmlString +
173 xmlString = output.toString(IFSConstants.DEFAULT_ENCODING);
175 FSUtils.debug.message("REPLIED message: \n " + xmlString);
211 String xmlString = output.toString(
213 FSUtils.debug.message("SENDING message: \n " + xmlString);
237 String xmlString
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/common/
H A DDiscoSDKUtils.java293 * @param xmlString String format of an element.
297 public static Element parseXML(String xmlString) throws DiscoveryException { argument
299 debug.message("DiscoUtils.parseXML: xmlString=" + xmlString);
300 Document doc = XMLUtils.toDOMDocument(xmlString, debug);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/services/
H A DFSSOAPService.java91 * @param xmlString the request/response xml string to be bound
94 public SOAPMessage bind(String xmlString) { argument
115 sb.append(envBegin).append(xmlString).append(envEnd);
158 String xmlString = output.toString(IFSConstants.DEFAULT_ENCODING);
160 FSUtils.debug.message("SENDING message: \n " + xmlString +
173 xmlString = output.toString(IFSConstants.DEFAULT_ENCODING);
175 FSUtils.debug.message("REPLIED message: \n " + xmlString);
211 String xmlString = output.toString(
213 FSUtils.debug.message("SENDING message: \n " + xmlString);
237 String xmlString
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/disco/common/
H A DDiscoSDKUtils.java293 * @param xmlString String format of an element.
297 public static Element parseXML(String xmlString) throws DiscoveryException { argument
299 debug.message("DiscoUtils.parseXML: xmlString=" + xmlString);
300 Document doc = XMLUtils.toDOMDocument(xmlString, debug);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/paos/
H A DPAOSRequest.java89 * @param xmlString the XML String representation of this object.
92 public PAOSRequest(String xmlString) throws PAOSException { argument
94 XMLUtils.toDOMDocument(xmlString, PAOSUtils.debug);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/
H A DSAMLClient.java493 * @param xmlString A String representing a string of SOAPMessage
499 private static Response getSAMLResponse(String xmlString) argument
501 if (xmlString == null || xmlString.length() == 0) {
505 Document doc = XMLUtils.toDOMDocument(xmlString, SAMLUtils.debug);
769 String xmlString = createSOAPMessage(req);
773 SAMLUtils.debug.message("SENDING message: \n " + xmlString);
777 "sendingSAMLRequest"), xmlString};
785 InputStream inbuf = client.call(xmlString, null, null);
808 xmlString
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DResponse.java77 protected String xmlString = null; field in class:Response
94 xmlString, RESPONSE_ID_ATTRIBUTE, issuer);
145 xmlString = this.toString(true, true);
352 xmlString = XMLUtils.print(root);
631 if (signed && (xmlString != null)) {
632 return xmlString;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DAuthnContextImpl.java298 public AuthnContextImpl(String xmlString) argument
301 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
H A DAuthnStatementImpl.java238 public AuthnStatementImpl(String xmlString) argument
241 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/
H A DSOAPCommunicator.java91 * @param xmlString XML string to be put into <code>SOAPMessage</code> body.
98 public SOAPMessage createSOAPMessage(final String xmlString, argument
101 return createSOAPMessage(null, xmlString, isClientMessage);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/ecp/impl/
H A DECPRequestImpl.java81 * @param xmlString the XML String representation of this object.
84 public ECPRequestImpl(String xmlString) throws SAML2Exception { argument
86 XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/protocol/impl/
H A DIDPEntryImpl.java76 * @param xmlString XML Representation of the <code>IDPEntry<code> object.
80 public IDPEntryImpl(String xmlString) throws SAML2Exception { argument
82 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
195 StringBuffer xmlString = new StringBuffer(100);
196 xmlString.append(SAML2Constants.START_TAG);
198 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
200 xmlString.append(SAML2Constants.IDPENTRY);
203 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
205 xmlString.append(SAML2Constants.SPACE)
213 xmlString
[all...]
H A DLogoutRequestImpl.java99 * @param xmlString the XML String representation of this object.
102 public LogoutRequestImpl(String xmlString) throws SAML2Exception { argument
104 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
111 signedXMLString = xmlString;
308 StringBuffer xmlString = new StringBuffer(1000);
309 xmlString.append(SAML2Constants.START_TAG);
311 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
313 xmlString.append(SAML2Constants.LOGOUT_REQUEST)
317 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR)
322 xmlString
[all...]
H A DManageNameIDRequestImpl.java87 * @param xmlString XML Representation of
92 public ManageNameIDRequestImpl(String xmlString) throws SAML2Exception { argument
93 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
99 signedXMLString = xmlString;
H A DNameIDMappingRequestImpl.java91 * @param xmlString XML Representation of the
96 public NameIDMappingRequestImpl(String xmlString) throws SAML2Exception { argument
97 Document doc = XMLUtils.toDOMDocument(xmlString, SAML2SDKUtils.debug);
103 signedXMLString = xmlString;
H A DNameIDPolicyImpl.java78 * @param xmlString XML String Representation of <code>NameIDPolicy</code>
83 public NameIDPolicyImpl(String xmlString) throws SAML2Exception { argument
85 XMLUtils.toDOMDocument(xmlString,SAML2SDKUtils.debug);
196 StringBuffer xmlString = new StringBuffer(150);
197 xmlString.append(SAML2Constants.START_TAG);
199 xmlString.append(SAML2Constants.PROTOCOL_PREFIX);
201 xmlString.append(SAML2Constants.NAMEIDPOLICY)
205 xmlString.append(SAML2Constants.PROTOCOL_DECLARE_STR);
209 xmlString.append(SAML2Constants.SPACE)
216 xmlString
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/soapbinding/
H A DQueryClient.java171 String xmlString = xacmlQuery.toXMLString(true,true);
174 + xmlString);
188 SAML2SDKUtils.createSOAPMessageString(xmlString);
210 xmlString = reply.toString();
212 debug.message("Response Message:\n"+ xmlString);
215 samlResponse = getSAMLResponse(xmlString);
238 xmlString =samlResponse.toXMLString(true,true);
241 + xmlString);
287 * @param xmlString the String representation of the object.
294 private static Response getSAMLResponse(String xmlString) argument
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/profile/
H A DSAML11RequestedSecurityToken.java80 protected String xmlString = null; field in class:SAML11RequestedSecurityToken
138 xmlString = XMLUtils.print(ae);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/server/
H A DAuthXMLResponse.java373 StringBuffer xmlString = new StringBuffer();
384 xmlString.append(MessageFormat.format(
394 xmlString.append(createXMLErrorString());
397 xmlString.append(createLoginStatusString());
404 xmlString.append(createLoginStatusString());
415 xmlString.append(createLoginStatusString());
421 xmlString.append(AuthXMLTags.GET_REQS_BEGIN);
422 xmlString.append(xmlCallback);
423 xmlString.append(AuthXMLTags.GET_REQS_END);
424 addRemoteRequestResponse(xmlString);
590 addRemoteRequestResponse(StringBuffer xmlString) argument
[all...]

Completed in 74 milliseconds

1234567