Java Code Examples for org.apache.cxf.staxutils.W3CDOMStreamWriter#writeCharacters()
The following examples show how to use
org.apache.cxf.staxutils.W3CDOMStreamWriter#writeCharacters() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SpnegoContextTokenInInterceptor.java From steady with Apache License 2.0 | 6 votes |
private void writeProofToken( W3CDOMStreamWriter writer, String prefix, String namespace, byte[] key ) throws Exception { // RequestedProofToken writer.writeStartElement(prefix, "RequestedProofToken", namespace); // EncryptedKey writer.writeStartElement(WSConstants.ENC_PREFIX, "EncryptedKey", WSConstants.ENC_NS); writer.writeStartElement(WSConstants.ENC_PREFIX, "EncryptionMethod", WSConstants.ENC_NS); writer.writeAttribute("Algorithm", namespace + "/spnego#GSS_Wrap"); writer.writeEndElement(); writer.writeStartElement(WSConstants.ENC_PREFIX, "CipherData", WSConstants.ENC_NS); writer.writeStartElement(WSConstants.ENC_PREFIX, "CipherValue", WSConstants.ENC_NS); writer.writeCharacters(Base64.encode(key)); writer.writeEndElement(); writer.writeEndElement(); writer.writeEndElement(); writer.writeEndElement(); }
Example 2
Source File: AbstractSTSClient.java From steady with Apache License 2.0 | 6 votes |
protected String writeKeyType(W3CDOMStreamWriter writer, String keyTypeToWrite) throws XMLStreamException { if (isSecureConv) { if (keyTypeToWrite == null) { writer.writeStartElement("wst", "TokenType", namespace); writer.writeCharacters(STSUtils.getTokenTypeSCT(namespace)); writer.writeEndElement(); keyTypeToWrite = namespace + "/SymmetricKey"; } } else if (keyTypeToWrite == null && sendKeyType) { writer.writeStartElement("wst", "KeyType", namespace); writer.writeCharacters(namespace + "/SymmetricKey"); writer.writeEndElement(); keyTypeToWrite = namespace + "/SymmetricKey"; } else if (keyTypeToWrite != null) { writer.writeStartElement("wst", "KeyType", namespace); writer.writeCharacters(keyTypeToWrite); writer.writeEndElement(); } return keyTypeToWrite; }
Example 3
Source File: SecurityTokenTest.java From cxf with Apache License 2.0 | 6 votes |
@org.junit.Test public void testParseLifetimeElement() throws Exception { String key = "key"; Element tokenElement = DOMUtils.createDocument().createElement("token"); // Create Lifetime W3CDOMStreamWriter writer = new W3CDOMStreamWriter(); Instant created = Instant.now().truncatedTo(ChronoUnit.MILLIS); Instant expires = created.plusSeconds(20L); writer.writeStartElement("wst", "Lifetime", WST_NS_05_12); writer.writeStartElement("wsu", "Created", WSU_NS); writer.writeCharacters(created.atZone(ZoneOffset.UTC).format(DateUtil.getDateTimeFormatter(true))); writer.writeEndElement(); writer.writeStartElement("wsu", "Expires", WSU_NS); writer.writeCharacters(expires.atZone(ZoneOffset.UTC).format(DateUtil.getDateTimeFormatter(true))); writer.writeEndElement(); writer.writeEndElement(); SecurityToken token = new SecurityToken(key, tokenElement, writer.getDocument().getDocumentElement()); assertEquals(key, token.getId()); assertEquals(created, token.getCreated()); assertEquals(expires, token.getExpires()); }
Example 4
Source File: STSInvoker.java From steady with Apache License 2.0 | 6 votes |
void writeLifetime( W3CDOMStreamWriter writer, Date created, Date expires, String prefix, String namespace ) throws Exception { XmlSchemaDateFormat fmt = new XmlSchemaDateFormat(); writer.writeStartElement(prefix, "Lifetime", namespace); writer.writeNamespace("wsu", WSConstants.WSU_NS); writer.writeStartElement("wsu", "Created", WSConstants.WSU_NS); writer.writeCharacters(fmt.format(created.getTime())); writer.writeEndElement(); writer.writeStartElement("wsu", "Expires", WSConstants.WSU_NS); writer.writeCharacters(fmt.format(expires.getTime())); writer.writeEndElement(); writer.writeEndElement(); }
Example 5
Source File: SecurityTokenTest.java From cxf with Apache License 2.0 | 6 votes |
@org.junit.Test public void testLifetimeNoCreated() throws Exception { String key = "key"; Element tokenElement = DOMUtils.createDocument().createElement("token"); // Create Lifetime W3CDOMStreamWriter writer = new W3CDOMStreamWriter(); Instant created = Instant.now().truncatedTo(ChronoUnit.MILLIS); Instant expires = created.plusSeconds(20L); writer.writeStartElement("wst", "Lifetime", WST_NS_05_12); writer.writeStartElement("wsu", "Expires", WSU_NS); writer.writeCharacters(expires.atZone(ZoneOffset.UTC).format(DateUtil.getDateTimeFormatter(true))); writer.writeEndElement(); writer.writeEndElement(); SecurityToken token = new SecurityToken(key, tokenElement, writer.getDocument().getDocumentElement()); assertEquals(key, token.getId()); // It should default to the current time assertNotNull(token.getCreated()); assertEquals(expires, token.getExpires()); }
Example 6
Source File: STSInvoker.java From steady with Apache License 2.0 | 6 votes |
void writeLifetime( W3CDOMStreamWriter writer, Date created, Date expires, String prefix, String namespace ) throws Exception { XmlSchemaDateFormat fmt = new XmlSchemaDateFormat(); writer.writeStartElement(prefix, "Lifetime", namespace); writer.writeNamespace("wsu", WSConstants.WSU_NS); writer.writeStartElement("wsu", "Created", WSConstants.WSU_NS); writer.writeCharacters(fmt.format(created.getTime())); writer.writeEndElement(); writer.writeStartElement("wsu", "Expires", WSConstants.WSU_NS); writer.writeCharacters(fmt.format(expires.getTime())); writer.writeEndElement(); writer.writeEndElement(); }
Example 7
Source File: AbstractSTSClient.java From steady with Apache License 2.0 | 5 votes |
protected byte[] writeElementsForRSTSymmetricKey(W3CDOMStreamWriter writer, boolean wroteKeySize) throws Exception { byte[] requestorEntropy = null; if (!wroteKeySize && (!isSecureConv || keySize != 256)) { addKeySize(keySize, writer); } if (requiresEntropy) { writer.writeStartElement("wst", "Entropy", namespace); writer.writeStartElement("wst", "BinarySecret", namespace); writer.writeAttribute("Type", namespace + "/Nonce"); if (algorithmSuite == null) { requestorEntropy = WSSecurityUtil.generateNonce(keySize / 8); } else { requestorEntropy = WSSecurityUtil .generateNonce(algorithmSuite.getMaximumSymmetricKeyLength() / 8); } writer.writeCharacters(Base64.encode(requestorEntropy)); writer.writeEndElement(); writer.writeEndElement(); writer.writeStartElement("wst", "ComputedKeyAlgorithm", namespace); writer.writeCharacters(namespace + "/CK/PSHA1"); writer.writeEndElement(); } return requestorEntropy; }
Example 8
Source File: AbstractSTSClient.java From steady with Apache License 2.0 | 5 votes |
protected byte[] writeElementsForRSTSymmetricKey(W3CDOMStreamWriter writer, boolean wroteKeySize) throws Exception { byte[] requestorEntropy = null; if (!wroteKeySize && (!isSecureConv || keySize != 256)) { addKeySize(keySize, writer); } if (requiresEntropy) { writer.writeStartElement("wst", "Entropy", namespace); writer.writeStartElement("wst", "BinarySecret", namespace); writer.writeAttribute("Type", namespace + "/Nonce"); if (algorithmSuite == null) { requestorEntropy = WSSecurityUtil.generateNonce(keySize / 8); } else { requestorEntropy = WSSecurityUtil .generateNonce(algorithmSuite.getMaximumSymmetricKeyLength() / 8); } writer.writeCharacters(Base64.encode(requestorEntropy)); writer.writeEndElement(); writer.writeEndElement(); writer.writeStartElement("wst", "ComputedKeyAlgorithm", namespace); writer.writeCharacters(namespace + "/CK/PSHA1"); writer.writeEndElement(); } return requestorEntropy; }
Example 9
Source File: SimpleBatchSTSClient.java From cxf with Apache License 2.0 | 5 votes |
protected void addBinaryExchange( String binaryExchange, W3CDOMStreamWriter writer ) throws XMLStreamException { writer.writeStartElement("wst", "BinaryExchange", namespace); writer.writeAttribute("EncodingType", WSS4JConstants.BASE64_ENCODING); writer.writeAttribute("ValueType", namespace + "/spnego"); writer.writeCharacters(binaryExchange); writer.writeEndElement(); }
Example 10
Source File: AbstractSTSClient.java From steady with Apache License 2.0 | 5 votes |
protected byte[] writeElementsForRSTSymmetricKey(W3CDOMStreamWriter writer, boolean wroteKeySize) throws Exception { byte[] requestorEntropy = null; if (!wroteKeySize && (!isSecureConv || keySize != 256)) { addKeySize(keySize, writer); } if (requiresEntropy) { writer.writeStartElement("wst", "Entropy", namespace); writer.writeStartElement("wst", "BinarySecret", namespace); writer.writeAttribute("Type", namespace + "/Nonce"); if (algorithmSuite == null) { requestorEntropy = WSSecurityUtil.generateNonce(keySize / 8); } else { requestorEntropy = WSSecurityUtil .generateNonce(algorithmSuite.getMaximumSymmetricKeyLength() / 8); } writer.writeCharacters(Base64.encode(requestorEntropy)); writer.writeEndElement(); writer.writeEndElement(); writer.writeStartElement("wst", "ComputedKeyAlgorithm", namespace); writer.writeCharacters(namespace + "/CK/PSHA1"); writer.writeEndElement(); } return requestorEntropy; }
Example 11
Source File: AbstractSTSClient.java From steady with Apache License 2.0 | 4 votes |
/** * Make an "Validate" invocation and return the response as a STSResponse Object */ protected STSResponse validate(SecurityToken tok, String tokentype) throws Exception { createClient(); if (tokentype == null) { tokentype = tokenType; } if (tokentype == null) { tokentype = namespace + "/RSTR/Status"; } if (addressingNamespace == null) { addressingNamespace = "http://www.w3.org/2005/08/addressing"; } Policy validatePolicy = new Policy(); ExactlyOne one = new ExactlyOne(); validatePolicy.addPolicyComponent(one); All all = new All(); one.addPolicyComponent(all); all.addAssertion(getAddressingAssertion()); client.getRequestContext().clear(); client.getRequestContext().putAll(ctx); client.getRequestContext().put(SecurityConstants.TOKEN, tok); BindingOperationInfo boi = findOperation("/RST/Validate"); if (boi == null) { boi = findOperation("/RST/Issue"); client.getRequestContext().put(PolicyConstants.POLICY_OVERRIDE, validatePolicy); } client.getRequestContext().put(SoapBindingConstants.SOAP_ACTION, namespace + "/RST/Validate"); W3CDOMStreamWriter writer = new W3CDOMStreamWriter(); writer.writeStartElement("wst", "RequestSecurityToken", namespace); writer.writeNamespace("wst", namespace); writer.writeStartElement("wst", "RequestType", namespace); writer.writeCharacters(namespace + "/Validate"); writer.writeEndElement(); writer.writeStartElement("wst", "TokenType", namespace); writer.writeCharacters(tokentype); writer.writeEndElement(); writer.writeStartElement("wst", "ValidateTarget", namespace); Element el = tok.getToken(); StaxUtils.copy(el, writer); writer.writeEndElement(); writer.writeEndElement(); Object o[] = client.invoke(boi, new DOMSource(writer.getDocument().getDocumentElement())); return new STSResponse((DOMSource)o[0], null); }
Example 12
Source File: AbstractSTSClient.java From steady with Apache License 2.0 | 4 votes |
protected void addKeySize(int keysize, W3CDOMStreamWriter writer) throws XMLStreamException { writer.writeStartElement("wst", "KeySize", namespace); writer.writeCharacters(Integer.toString(keysize)); writer.writeEndElement(); }
Example 13
Source File: AbstractSTSClient.java From steady with Apache License 2.0 | 4 votes |
/** * Make an "Cancel" invocation and return the response as a STSResponse Object */ protected STSResponse cancel(SecurityToken token) throws Exception { createClient(); if (addressingNamespace == null) { addressingNamespace = "http://www.w3.org/2005/08/addressing"; } client.getRequestContext().clear(); client.getRequestContext().putAll(ctx); client.getRequestContext().put(SecurityConstants.TOKEN, token); BindingOperationInfo boi = findOperation("/RST/Cancel"); boolean attachTokenDirectly = true; if (boi == null) { attachTokenDirectly = false; boi = findOperation("/RST/Issue"); Policy cancelPolicy = new Policy(); ExactlyOne one = new ExactlyOne(); cancelPolicy.addPolicyComponent(one); All all = new All(); one.addPolicyComponent(all); all.addAssertion(getAddressingAssertion()); PolicyBuilder pbuilder = bus.getExtension(PolicyBuilder.class); SymmetricBinding binding = new SymmetricBinding(pbuilder); all.addAssertion(binding); all.addAssertion(getAddressingAssertion()); ProtectionToken ptoken = new ProtectionToken(pbuilder); binding.setProtectionToken(ptoken); binding.setIncludeTimestamp(true); binding.setEntireHeadersAndBodySignatures(true); binding.setTokenProtection(false); AlgorithmSuite suite = new AlgorithmSuite(); binding.setAlgorithmSuite(suite); SecureConversationToken sct = new SecureConversationToken(); sct.setOptional(true); ptoken.setToken(sct); SignedEncryptedParts parts = new SignedEncryptedParts(true); parts.setOptional(true); parts.setBody(true); parts.addHeader(new Header("To", addressingNamespace)); parts.addHeader(new Header("From", addressingNamespace)); parts.addHeader(new Header("FaultTo", addressingNamespace)); parts.addHeader(new Header("ReplyTo", addressingNamespace)); parts.addHeader(new Header("Action", addressingNamespace)); parts.addHeader(new Header("MessageID", addressingNamespace)); parts.addHeader(new Header("RelatesTo", addressingNamespace)); all.addPolicyComponent(parts); client.getRequestContext().put(PolicyConstants.POLICY_OVERRIDE, cancelPolicy); } if (isSecureConv) { client.getRequestContext().put(SoapBindingConstants.SOAP_ACTION, namespace + "/RST/SCT/Cancel"); } else { client.getRequestContext().put(SoapBindingConstants.SOAP_ACTION, namespace + "/RST/Cancel"); } W3CDOMStreamWriter writer = new W3CDOMStreamWriter(); writer.writeStartElement("wst", "RequestSecurityToken", namespace); writer.writeNamespace("wst", namespace); writer.writeStartElement("wst", "RequestType", namespace); writer.writeCharacters(namespace + "/Cancel"); writer.writeEndElement(); writer.writeStartElement("wst", "CancelTarget", namespace); Element el = null; if (attachTokenDirectly) { el = token.getToken(); } else { el = token.getUnattachedReference(); if (el == null) { el = token.getAttachedReference(); } } StaxUtils.copy(el, writer); writer.writeEndElement(); writer.writeEndElement(); Object[] obj = client.invoke(boi, new DOMSource(writer.getDocument().getDocumentElement())); return new STSResponse((DOMSource)obj[0], null); }
Example 14
Source File: AbstractSTSClient.java From steady with Apache License 2.0 | 4 votes |
protected void addRequestType(String requestType, W3CDOMStreamWriter writer) throws XMLStreamException { writer.writeStartElement("wst", "RequestType", namespace); writer.writeCharacters(namespace + requestType); writer.writeEndElement(); }
Example 15
Source File: AbstractSTSClient.java From steady with Apache License 2.0 | 4 votes |
protected void addKeySize(int keysize, W3CDOMStreamWriter writer) throws XMLStreamException { writer.writeStartElement("wst", "KeySize", namespace); writer.writeCharacters(Integer.toString(keysize)); writer.writeEndElement(); }
Example 16
Source File: SimpleBatchSTSClient.java From cxf with Apache License 2.0 | 4 votes |
protected void addKeySize(int keysize, W3CDOMStreamWriter writer) throws XMLStreamException { writer.writeStartElement("wst", "KeySize", namespace); writer.writeCharacters(Integer.toString(keysize)); writer.writeEndElement(); }
Example 17
Source File: AbstractSTSClient.java From steady with Apache License 2.0 | 4 votes |
protected void addRequestType(String requestType, W3CDOMStreamWriter writer) throws XMLStreamException { writer.writeStartElement("wst", "RequestType", namespace); writer.writeCharacters(namespace + requestType); writer.writeEndElement(); }
Example 18
Source File: AbstractSTSClient.java From steady with Apache License 2.0 | 4 votes |
protected void addRequestType(String requestType, W3CDOMStreamWriter writer) throws XMLStreamException { writer.writeStartElement("wst", "RequestType", namespace); writer.writeCharacters(namespace + requestType); writer.writeEndElement(); }
Example 19
Source File: STSRESTTest.java From cxf with Apache License 2.0 | 4 votes |
@org.junit.Test public void testValidateJWTAndIssueSAML() throws Exception { WebClient client = webClient() .path("jwt") .accept(MediaType.TEXT_PLAIN); // 1. Get a token via GET String token = client.get(String.class); assertNotNull(token); // 2. Now validate it in the STS using POST client = webClient() .query("action", "validate") .type(MediaType.APPLICATION_XML) .accept(MediaType.APPLICATION_XML); // Create RequestSecurityToken W3CDOMStreamWriter writer = new W3CDOMStreamWriter(); writer.writeStartElement("wst", "RequestSecurityToken", WST_NS_05_12); writer.writeStartElement("wst", "RequestType", WST_NS_05_12); writer.writeCharacters(WST_NS_05_12 + "/Validate"); writer.writeEndElement(); writer.writeStartElement("wst", "TokenType", WST_NS_05_12); writer.writeCharacters(SAML2_TOKEN_TYPE); writer.writeEndElement(); writer.writeStartElement("wst", "ValidateTarget", WST_NS_05_12); writer.writeStartElement("TokenWrapper"); writer.writeCharacters(token); writer.writeEndElement(); writer.writeEndElement(); writer.writeEndElement(); RequestSecurityTokenResponseType securityResponse = client.post( new DOMSource(writer.getDocument().getDocumentElement()), RequestSecurityTokenResponseType.class); assertTrue(getValidationStatus(securityResponse)); // Check the token validateSAMLSecurityTokenResponse(securityResponse, true); }
Example 20
Source File: CustomParameterTest.java From cxf with Apache License 2.0 | 4 votes |
@org.junit.Test public void testCustomParameterToRESTInterface() throws Exception { SpringBusFactory bf = new SpringBusFactory(); URL busFile = CustomParameterTest.class.getResource("cxf-client.xml"); Bus bus = bf.createBus(busFile.toString()); BusFactory.setDefaultBus(bus); BusFactory.setThreadDefaultBus(bus); String address = "https://localhost:" + STSPORT + "/SecurityTokenServiceREST/token"; WebClient client = WebClient.create(address, busFile.toString()); client.type("application/xml").accept("application/xml"); // Create RequestSecurityToken W3CDOMStreamWriter writer = new W3CDOMStreamWriter(); String namespace = STSUtils.WST_NS_05_12; writer.writeStartElement("wst", "RequestSecurityToken", namespace); writer.writeNamespace("wst", namespace); writer.writeStartElement("wst", "RequestType", namespace); writer.writeCharacters(namespace + "/Issue"); writer.writeEndElement(); writer.writeStartElement("wst", "TokenType", namespace); writer.writeCharacters(SAML2_TOKEN_TYPE); writer.writeEndElement(); writer.writeStartElement("wst", "Claims", namespace); writer.writeAttribute("Dialect", "http://schemas.xmlsoap.org/ws/2005/05/identity"); writer.writeStartElement("ic", "ClaimType", "http://schemas.xmlsoap.org/ws/2005/05/identity"); writer.writeAttribute("Uri", "http://schemas.xmlsoap.org/ws/2005/05/identity/claims/role"); writer.writeEndElement(); writer.writeEndElement(); // Add custom content to the RST writer.writeStartElement("", "realm", "http://cxf.apache.org/custom"); writer.writeCharacters("custom-realm"); writer.writeEndElement(); writer.writeEndElement(); Response response = client.post(new DOMSource(writer.getDocument().getDocumentElement())); RequestSecurityTokenResponseType securityResponse = response.readEntity(RequestSecurityTokenResponseType.class); Element assertion = validateSAMLSecurityTokenResponse(securityResponse, true); assertTrue(DOM2Writer.nodeToString(assertion).contains("admin-user")); bus.shutdown(true); }