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 Dittmann Werner <we...@siemens.com> on 2004/04/06 08:53:47 UTC

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

Christof,
 
thanks - fixed. Will checkin later today.
 
Regards,
Werner

-----Ursprüngliche Nachricht-----
Von: Christof Soehngen [mailto:Christof.Soehngen@SYRACOM.DE] 
Gesendet: Dienstag, 6. April 2004 08:51
An: fx-dev@ws.apache.org
Betreff: "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