Does anyone know if it's possible to implement a generic type in your
interface? I'm
trying to do by:
[XmlRpcUrl("http://www.devmysite.com/?q=services/xmlrpc")]
public interface IDrupalService : IXmlRpcProxy
{
[XmlRpcMethod("node.get", IntrospectionMethod = true)]
T Get<T>(string sessid, int nid, string[] fields) where T : DrupalNode;
}
When I attempt to connect to my service I receive an error in
"XmlRpcProxyGen.cs" around
line # 112 at "typeBldr.CreateType();":
Method 'Get' in type 'XmlRpcProxyd4d8109a-e779-4239-8fd0-e54b597ee760' from
assembly
'XmlRpcProxyd4d8109a-e779-4239-8fd0-e54b597ee760, Version=1.0.0.0,
Culture=neutral,
PublicKeyToken=null' does not have an implementation.
Any suggestions?
Original issue reported on code.google.com by Aaron.Mo...@gmail.com on 10 Mar 2009 at 2:59
Original issue reported on code.google.com by
Aaron.Mo...@gmail.com
on 10 Mar 2009 at 2:59