You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by Christof Soehngen <Ch...@SYRACOM.DE> on 2004/04/06 08:50:47 UTC

"wsu:Timestamp" in WSSecurityEngine causes "Unknown Element: Timestamp"

Hello everyone,
 
in WSSecurityEngine, the Timestamp is defined as follows:
 
protected static final QName TIMESTAMP = new QName(WSConstants.WSU_NS, "wsu:Timestamp");
 
That leads to the following output in the log4j info log:
 
Unknown Element: Timestamp http://www.docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd <http://www.docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd> 
 
I think that the "wsu:" in the above definition is superfluous. When changed to 
 
protected static final QName TIMESTAMP = new QName(WSConstants.WSU_NS, "Timestamp");
 
the log shows:
 
Found Timestamp list element
 
Bye, Christof