This isssue may have several aspects so please read through first.
Suppose that you have a stuct with a few small ints that pack well into Int64 and while you want to use your struct as a type in C# you want it to be exposed as In64 via web methods - so that WSDL has it and you retain basic REST ability (simple types make GET invocation possible).
The closest to that I've found so far is SqlDateTime - it auto-morphs into dateTime in WSDL (there's an attrib that seems to govern XSD/WSDL type equivalence plus IXmlSerializable) but that's not enough. The web method still gets recognized as "having complex params" and therefore is rendered unavailable to GET requests.
Update: XSD/WSDL and SOAP invocation respected type equivalency perfectly fine - the problem is with GET invocation - the RESTful URL path doesn't get generated at all.
Looking for info on possible additional attribs, interfaces, hook-up points, of if someone stumbled upon a struct or internal class that managed to do full type equivalence with any "primitive", scalar type (DayTime is not exactly primitive but still gets such treatment). Also if soemone knows a way to establish stronger type equivalence or add/mark a struct to be treated as a simple (scalar) value type - even better.
Please don't post just to say something nasty or preach private ideology. This is serious, gray-zone question for people who know their way in Reflector and read the code. If you think you can ideologize this you don't even have the clue about the issue. If however you can point to actual code that causes/makes the decison about what will be servable via GET request please post even if by doing that you prove the impossibility of extending type equivalence to GET requests.
Oh and CLR is 2.x/3.x.
Thanks to those who help and to those who don't disrupt.
SqlDateTimeand related types are among those that should not be returned from a web service in any case, as they are platform-specific. I wonder how many platforms are unable to process such data? Perhaps as many that cannot processDataSet? – John Saunders Aug 11 '10 at 4:25DataSetis the best example. In general, unless the documentation of the type makes explicit guarantees about serialization format, and guarantees forward and backward compatibility, you are better off not using the type. There have even been compatibility problems between different versions of .NET for theDataSettype. – John Saunders Aug 11 '10 at 19:01DataSet, compatibility failed. To my mind, the reason for the failure was the lack of guarantee (so the developers did not test for compatibility). As a result, I do not expose platform-specific types through web services. – John Saunders Aug 12 '10 at 18:10