The way you seem to declare WCF services is to create an interface in C# or VB, and then tag it with ServiceContractAttribute and it's methods with OperationContractAttribute.
The issue is, I'd like to try creating one from IronRuby or IronPython, which (to my knowledge) don't support attributes.
Is this possible?