Author: darran.lofthouse(a)jboss.com
Date: 2008-11-18 13:21:01 -0500 (Tue, 18 Nov 2008)
New Revision: 8759
Modified:
stack/native/branches/dlofthouse/JBPAPP-1349/src/main/java/org/jboss/ws/metadata/wsse/WSSecurityOMFactory.java
Log:
Further modification to correct timestamp configuration for outbound messages.
Modified:
stack/native/branches/dlofthouse/JBPAPP-1349/src/main/java/org/jboss/ws/metadata/wsse/WSSecurityOMFactory.java
===================================================================
---
stack/native/branches/dlofthouse/JBPAPP-1349/src/main/java/org/jboss/ws/metadata/wsse/WSSecurityOMFactory.java 2008-11-18
17:33:33 UTC (rev 8758)
+++
stack/native/branches/dlofthouse/JBPAPP-1349/src/main/java/org/jboss/ws/metadata/wsse/WSSecurityOMFactory.java 2008-11-18
18:21:01 UTC (rev 8759)
@@ -264,7 +264,7 @@
Boolean include = new Boolean(true);
String timestamp = attrs.getValue("", "includeTimestamp");
if (timestamp != null)
- include = (Boolean)SimpleTypeBindings.unmarshal(timestamp,
SimpleTypeBindings.XS_BOOLEAN_NAME, null);
+ include =
(Boolean)SimpleTypeBindings.unmarshal(SimpleTypeBindings.XS_BOOLEAN_NAME, timestamp,
null);
return new Sign(attrs.getValue("", "type"),
attrs.getValue("", "alias"), include.booleanValue());
}
Show replies by date