ABeautifulLife
New Member
I'm developing a Web Service in VB.NET which receives six intger, so my Webmethod will be something like this:\[code\] <WebMethod()> _ Public Function CheckUpdate(ByVal param1 As Integer, ByVal param2 As Integer,ByVal param3 As Integer,ByVal param4 As Integer,ByVal param5 As Integer,ByVal param6 As Integer) As myObj ...\[/code\]if I use a class like:\[code\] Public Class myClass Public param1 As Integer Public param2 As Integer Public param3 As Integer Public param4 As Integer Public param5 As Integer Public param6 As Integer End Class\[/code\]and I modify my webMethod with:\[code\]<WebMethod()> _ Public Function CheckUpdate(Alldata As myClass) As myObj ....\[/code\]my xml \[code\] <param1>123</param1> <param2>53</param2> <param3>23</param3> <param4>112</param4> <param5>233231</param5> <param6>778231</param6>\[/code\]will be recognized?