K
kejeiri
As I know, in the Web Services context using VB.net we can serialize
all attributes of any class just including it at a head of the web
method like that:
----------
<WebMethod(Description:=" this is just the beginning of the jocke
"), XmlInclude(GetType(MyClass1)),
XmlInclude(GetType(MyClass2))...., XmlInclude(GetType(MyClassN))> _
Public Function myMethod(ByVal a_myVar As String) As Object
.....
Return myObject
End Function
---------
The include allow the Soap protocol to exchange those customers type,
but
My question is: is there any way to get the methods of MyClass1... and
MyClassN?
Best Regards
all attributes of any class just including it at a head of the web
method like that:
----------
<WebMethod(Description:=" this is just the beginning of the jocke

XmlInclude(GetType(MyClass2))...., XmlInclude(GetType(MyClassN))> _
Public Function myMethod(ByVal a_myVar As String) As Object
.....
Return myObject
End Function
---------
The include allow the Soap protocol to exchange those customers type,
but
My question is: is there any way to get the methods of MyClass1... and
MyClassN?
Best Regards