Ken Brubaker

The ClavèCoder

<January 2009>
SuMoTuWeThFrSa
28293031123
45678910
11121314151617
18192021222324
25262728293031
1234567


Navigation

Subscriptions

News

Kenneth Brubaker
Senior Application Architect

Locations of visitors to this page

Post Categories



Thursday, August 12, 2004 - Posts

WSE2: Why WSE2 does not support SAML (I think I know!)

Hunting for the OASIS WSS specifications, I found the WSS: SAML Token Profile Working Draft 15 dated July 19, 2004. Version 15 makes them busy and not finished.

It appears WSE2 does not support SAML because they decided to wait until the spec settled. So now I understand Steve Maine's comment that we are not there yet with SAML.

Now, what about Liberty?

posted Thursday, August 12, 2004 6:29 AM by kenbrubaker with 1 Comments

Unit Testing: NMock: Pearly Whitebox Testing

Benjamin Mitchell kindly shares a Unit Test helper tool, NMock. NMock tests side-effects on external objects acted on by the tested class instance. While I don't see this very useful for testing concrete classes, it is useful for interfaces; especially since you can build them dynamically.

A customer focused example would be:

DynamicMock aBill = new DynamicMock(typeof(IBill));
aBill.Expect("Pay");
aCustomer.PayBill(aBill);
aBill.Verify();

Very nice.

posted Thursday, August 12, 2004 5:46 AM by kenbrubaker with 0 Comments




Powered by Dot Net Junkies, by Telligent Systems